/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include
#include
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace EC2
{
namespace Model
{
/**
* Indicates whether your instance is configured for hibernation. This parameter
* is valid only if the instance meets the hibernation
* prerequisites. For more information, see Hibernate
* your instance in the Amazon Elastic Compute Cloud User
* Guide.
See Also:
AWS
* API Reference
*/
class AWS_EC2_API HibernationOptions
{
public:
HibernationOptions();
HibernationOptions(const Aws::Utils::Xml::XmlNode& xmlNode);
HibernationOptions& 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;
/**
* If this parameter is set to true, your instance is enabled for
* hibernation; otherwise, it is not enabled for hibernation.
*/
inline bool GetConfigured() const{ return m_configured; }
/**
* If this parameter is set to true, your instance is enabled for
* hibernation; otherwise, it is not enabled for hibernation.
*/
inline bool ConfiguredHasBeenSet() const { return m_configuredHasBeenSet; }
/**
* If this parameter is set to true, your instance is enabled for
* hibernation; otherwise, it is not enabled for hibernation.
*/
inline void SetConfigured(bool value) { m_configuredHasBeenSet = true; m_configured = value; }
/**
* If this parameter is set to true, your instance is enabled for
* hibernation; otherwise, it is not enabled for hibernation.
*/
inline HibernationOptions& WithConfigured(bool value) { SetConfigured(value); return *this;}
private:
bool m_configured;
bool m_configuredHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws