/** * 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 the instance is configured for hibernation. This parameter * is valid only if the instance meets the hibernation * prerequisites.

See Also:

AWS * API Reference

*/ class LaunchTemplateHibernationOptionsRequest { public: AWS_EC2_API LaunchTemplateHibernationOptionsRequest(); AWS_EC2_API LaunchTemplateHibernationOptionsRequest(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API LaunchTemplateHibernationOptionsRequest& 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 you set this parameter to true, the instance is enabled for * hibernation.

Default: false

*/ inline bool GetConfigured() const{ return m_configured; } /** *

If you set this parameter to true, the instance is enabled for * hibernation.

Default: false

*/ inline bool ConfiguredHasBeenSet() const { return m_configuredHasBeenSet; } /** *

If you set this parameter to true, the instance is enabled for * hibernation.

Default: false

*/ inline void SetConfigured(bool value) { m_configuredHasBeenSet = true; m_configured = value; } /** *

If you set this parameter to true, the instance is enabled for * hibernation.

Default: false

*/ inline LaunchTemplateHibernationOptionsRequest& WithConfigured(bool value) { SetConfigured(value); return *this;} private: bool m_configured; bool m_configuredHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws