/** * 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 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; /** *

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

Default: false

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

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

Default: false

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

If you set this parameter to true, your 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, your instance is enabled for * hibernation.

Default: false

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