/**
* 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 an instance is configured for hibernation.
See
* Also:
AWS
* API Reference
*/
class LaunchTemplateHibernationOptions
{
public:
AWS_EC2_API LaunchTemplateHibernationOptions();
AWS_EC2_API LaunchTemplateHibernationOptions(const Aws::Utils::Xml::XmlNode& xmlNode);
AWS_EC2_API LaunchTemplateHibernationOptions& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
/**
* If this parameter is set to true
, the 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
, the 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
, the 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
, the instance is enabled for
* hibernation; otherwise, it is not enabled for hibernation.
*/
inline LaunchTemplateHibernationOptions& WithConfigured(bool value) { SetConfigured(value); return *this;}
private:
bool m_configured;
bool m_configuredHasBeenSet = false;
};
} // namespace Model
} // namespace EC2
} // namespace Aws