This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-ec2/include/aws/ec2/model/HibernationOptionsRequest.h

79 lines
2.5 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ec2/EC2_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace EC2
{
namespace Model
{
/**
* <p>Indicates whether your instance is configured for hibernation. This parameter
* is valid only if the instance meets the <a
* href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Hibernate.html#hibernating-prerequisites">hibernation
* prerequisites</a>. For more information, see <a
* href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Hibernate.html">Hibernate
* your instance</a> in the <i>Amazon Elastic Compute Cloud User
* Guide</i>.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/HibernationOptionsRequest">AWS
* API Reference</a></p>
*/
class AWS_EC2_API HibernationOptionsRequest
{
public:
HibernationOptionsRequest();
HibernationOptionsRequest(const Aws::Utils::Xml::XmlNode& xmlNode);
HibernationOptionsRequest& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
void OutputToStream(Aws::OStream& oStream, const char* location) const;
/**
* <p>If you set this parameter to <code>true</code>, your instance is enabled for
* hibernation.</p> <p>Default: <code>false</code> </p>
*/
inline bool GetConfigured() const{ return m_configured; }
/**
* <p>If you set this parameter to <code>true</code>, your instance is enabled for
* hibernation.</p> <p>Default: <code>false</code> </p>
*/
inline bool ConfiguredHasBeenSet() const { return m_configuredHasBeenSet; }
/**
* <p>If you set this parameter to <code>true</code>, your instance is enabled for
* hibernation.</p> <p>Default: <code>false</code> </p>
*/
inline void SetConfigured(bool value) { m_configuredHasBeenSet = true; m_configured = value; }
/**
* <p>If you set this parameter to <code>true</code>, your instance is enabled for
* hibernation.</p> <p>Default: <code>false</code> </p>
*/
inline HibernationOptionsRequest& WithConfigured(bool value) { SetConfigured(value); return *this;}
private:
bool m_configured;
bool m_configuredHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws