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/StateReason.h

327 lines
19 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>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace EC2
{
namespace Model
{
/**
* <p>Describes a state change.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StateReason">AWS API
* Reference</a></p>
*/
class AWS_EC2_API StateReason
{
public:
StateReason();
StateReason(const Aws::Utils::Xml::XmlNode& xmlNode);
StateReason& 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>The reason code for the state change.</p>
*/
inline const Aws::String& GetCode() const{ return m_code; }
/**
* <p>The reason code for the state change.</p>
*/
inline bool CodeHasBeenSet() const { return m_codeHasBeenSet; }
/**
* <p>The reason code for the state change.</p>
*/
inline void SetCode(const Aws::String& value) { m_codeHasBeenSet = true; m_code = value; }
/**
* <p>The reason code for the state change.</p>
*/
inline void SetCode(Aws::String&& value) { m_codeHasBeenSet = true; m_code = std::move(value); }
/**
* <p>The reason code for the state change.</p>
*/
inline void SetCode(const char* value) { m_codeHasBeenSet = true; m_code.assign(value); }
/**
* <p>The reason code for the state change.</p>
*/
inline StateReason& WithCode(const Aws::String& value) { SetCode(value); return *this;}
/**
* <p>The reason code for the state change.</p>
*/
inline StateReason& WithCode(Aws::String&& value) { SetCode(std::move(value)); return *this;}
/**
* <p>The reason code for the state change.</p>
*/
inline StateReason& WithCode(const char* value) { SetCode(value); return *this;}
/**
* <p>The message for the state change.</p> <ul> <li> <p>
* <code>Server.InsufficientInstanceCapacity</code>: There was insufficient
* capacity available to satisfy the launch request.</p> </li> <li> <p>
* <code>Server.InternalError</code>: An internal error caused the instance to
* terminate during launch.</p> </li> <li> <p> <code>Server.ScheduledStop</code>:
* The instance was stopped due to a scheduled retirement.</p> </li> <li> <p>
* <code>Server.SpotInstanceShutdown</code>: The instance was stopped because the
* number of Spot requests with a maximum price equal to or higher than the Spot
* price exceeded available capacity or because of an increase in the Spot
* price.</p> </li> <li> <p> <code>Server.SpotInstanceTermination</code>: The
* instance was terminated because the number of Spot requests with a maximum price
* equal to or higher than the Spot price exceeded available capacity or because of
* an increase in the Spot price.</p> </li> <li> <p>
* <code>Client.InstanceInitiatedShutdown</code>: The instance was shut down using
* the <code>shutdown -h</code> command from the instance.</p> </li> <li> <p>
* <code>Client.InstanceTerminated</code>: The instance was terminated or rebooted
* during AMI creation.</p> </li> <li> <p> <code>Client.InternalError</code>: A
* client error caused the instance to terminate during launch.</p> </li> <li> <p>
* <code>Client.InvalidSnapshot.NotFound</code>: The specified snapshot was not
* found.</p> </li> <li> <p> <code>Client.UserInitiatedHibernate</code>:
* Hibernation was initiated on the instance.</p> </li> <li> <p>
* <code>Client.UserInitiatedShutdown</code>: The instance was shut down using the
* Amazon EC2 API.</p> </li> <li> <p> <code>Client.VolumeLimitExceeded</code>: The
* limit on the number of EBS volumes or total storage was exceeded. Decrease usage
* or request an increase in your account limits.</p> </li> </ul>
*/
inline const Aws::String& GetMessage() const{ return m_message; }
/**
* <p>The message for the state change.</p> <ul> <li> <p>
* <code>Server.InsufficientInstanceCapacity</code>: There was insufficient
* capacity available to satisfy the launch request.</p> </li> <li> <p>
* <code>Server.InternalError</code>: An internal error caused the instance to
* terminate during launch.</p> </li> <li> <p> <code>Server.ScheduledStop</code>:
* The instance was stopped due to a scheduled retirement.</p> </li> <li> <p>
* <code>Server.SpotInstanceShutdown</code>: The instance was stopped because the
* number of Spot requests with a maximum price equal to or higher than the Spot
* price exceeded available capacity or because of an increase in the Spot
* price.</p> </li> <li> <p> <code>Server.SpotInstanceTermination</code>: The
* instance was terminated because the number of Spot requests with a maximum price
* equal to or higher than the Spot price exceeded available capacity or because of
* an increase in the Spot price.</p> </li> <li> <p>
* <code>Client.InstanceInitiatedShutdown</code>: The instance was shut down using
* the <code>shutdown -h</code> command from the instance.</p> </li> <li> <p>
* <code>Client.InstanceTerminated</code>: The instance was terminated or rebooted
* during AMI creation.</p> </li> <li> <p> <code>Client.InternalError</code>: A
* client error caused the instance to terminate during launch.</p> </li> <li> <p>
* <code>Client.InvalidSnapshot.NotFound</code>: The specified snapshot was not
* found.</p> </li> <li> <p> <code>Client.UserInitiatedHibernate</code>:
* Hibernation was initiated on the instance.</p> </li> <li> <p>
* <code>Client.UserInitiatedShutdown</code>: The instance was shut down using the
* Amazon EC2 API.</p> </li> <li> <p> <code>Client.VolumeLimitExceeded</code>: The
* limit on the number of EBS volumes or total storage was exceeded. Decrease usage
* or request an increase in your account limits.</p> </li> </ul>
*/
inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
/**
* <p>The message for the state change.</p> <ul> <li> <p>
* <code>Server.InsufficientInstanceCapacity</code>: There was insufficient
* capacity available to satisfy the launch request.</p> </li> <li> <p>
* <code>Server.InternalError</code>: An internal error caused the instance to
* terminate during launch.</p> </li> <li> <p> <code>Server.ScheduledStop</code>:
* The instance was stopped due to a scheduled retirement.</p> </li> <li> <p>
* <code>Server.SpotInstanceShutdown</code>: The instance was stopped because the
* number of Spot requests with a maximum price equal to or higher than the Spot
* price exceeded available capacity or because of an increase in the Spot
* price.</p> </li> <li> <p> <code>Server.SpotInstanceTermination</code>: The
* instance was terminated because the number of Spot requests with a maximum price
* equal to or higher than the Spot price exceeded available capacity or because of
* an increase in the Spot price.</p> </li> <li> <p>
* <code>Client.InstanceInitiatedShutdown</code>: The instance was shut down using
* the <code>shutdown -h</code> command from the instance.</p> </li> <li> <p>
* <code>Client.InstanceTerminated</code>: The instance was terminated or rebooted
* during AMI creation.</p> </li> <li> <p> <code>Client.InternalError</code>: A
* client error caused the instance to terminate during launch.</p> </li> <li> <p>
* <code>Client.InvalidSnapshot.NotFound</code>: The specified snapshot was not
* found.</p> </li> <li> <p> <code>Client.UserInitiatedHibernate</code>:
* Hibernation was initiated on the instance.</p> </li> <li> <p>
* <code>Client.UserInitiatedShutdown</code>: The instance was shut down using the
* Amazon EC2 API.</p> </li> <li> <p> <code>Client.VolumeLimitExceeded</code>: The
* limit on the number of EBS volumes or total storage was exceeded. Decrease usage
* or request an increase in your account limits.</p> </li> </ul>
*/
inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
/**
* <p>The message for the state change.</p> <ul> <li> <p>
* <code>Server.InsufficientInstanceCapacity</code>: There was insufficient
* capacity available to satisfy the launch request.</p> </li> <li> <p>
* <code>Server.InternalError</code>: An internal error caused the instance to
* terminate during launch.</p> </li> <li> <p> <code>Server.ScheduledStop</code>:
* The instance was stopped due to a scheduled retirement.</p> </li> <li> <p>
* <code>Server.SpotInstanceShutdown</code>: The instance was stopped because the
* number of Spot requests with a maximum price equal to or higher than the Spot
* price exceeded available capacity or because of an increase in the Spot
* price.</p> </li> <li> <p> <code>Server.SpotInstanceTermination</code>: The
* instance was terminated because the number of Spot requests with a maximum price
* equal to or higher than the Spot price exceeded available capacity or because of
* an increase in the Spot price.</p> </li> <li> <p>
* <code>Client.InstanceInitiatedShutdown</code>: The instance was shut down using
* the <code>shutdown -h</code> command from the instance.</p> </li> <li> <p>
* <code>Client.InstanceTerminated</code>: The instance was terminated or rebooted
* during AMI creation.</p> </li> <li> <p> <code>Client.InternalError</code>: A
* client error caused the instance to terminate during launch.</p> </li> <li> <p>
* <code>Client.InvalidSnapshot.NotFound</code>: The specified snapshot was not
* found.</p> </li> <li> <p> <code>Client.UserInitiatedHibernate</code>:
* Hibernation was initiated on the instance.</p> </li> <li> <p>
* <code>Client.UserInitiatedShutdown</code>: The instance was shut down using the
* Amazon EC2 API.</p> </li> <li> <p> <code>Client.VolumeLimitExceeded</code>: The
* limit on the number of EBS volumes or total storage was exceeded. Decrease usage
* or request an increase in your account limits.</p> </li> </ul>
*/
inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
/**
* <p>The message for the state change.</p> <ul> <li> <p>
* <code>Server.InsufficientInstanceCapacity</code>: There was insufficient
* capacity available to satisfy the launch request.</p> </li> <li> <p>
* <code>Server.InternalError</code>: An internal error caused the instance to
* terminate during launch.</p> </li> <li> <p> <code>Server.ScheduledStop</code>:
* The instance was stopped due to a scheduled retirement.</p> </li> <li> <p>
* <code>Server.SpotInstanceShutdown</code>: The instance was stopped because the
* number of Spot requests with a maximum price equal to or higher than the Spot
* price exceeded available capacity or because of an increase in the Spot
* price.</p> </li> <li> <p> <code>Server.SpotInstanceTermination</code>: The
* instance was terminated because the number of Spot requests with a maximum price
* equal to or higher than the Spot price exceeded available capacity or because of
* an increase in the Spot price.</p> </li> <li> <p>
* <code>Client.InstanceInitiatedShutdown</code>: The instance was shut down using
* the <code>shutdown -h</code> command from the instance.</p> </li> <li> <p>
* <code>Client.InstanceTerminated</code>: The instance was terminated or rebooted
* during AMI creation.</p> </li> <li> <p> <code>Client.InternalError</code>: A
* client error caused the instance to terminate during launch.</p> </li> <li> <p>
* <code>Client.InvalidSnapshot.NotFound</code>: The specified snapshot was not
* found.</p> </li> <li> <p> <code>Client.UserInitiatedHibernate</code>:
* Hibernation was initiated on the instance.</p> </li> <li> <p>
* <code>Client.UserInitiatedShutdown</code>: The instance was shut down using the
* Amazon EC2 API.</p> </li> <li> <p> <code>Client.VolumeLimitExceeded</code>: The
* limit on the number of EBS volumes or total storage was exceeded. Decrease usage
* or request an increase in your account limits.</p> </li> </ul>
*/
inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
/**
* <p>The message for the state change.</p> <ul> <li> <p>
* <code>Server.InsufficientInstanceCapacity</code>: There was insufficient
* capacity available to satisfy the launch request.</p> </li> <li> <p>
* <code>Server.InternalError</code>: An internal error caused the instance to
* terminate during launch.</p> </li> <li> <p> <code>Server.ScheduledStop</code>:
* The instance was stopped due to a scheduled retirement.</p> </li> <li> <p>
* <code>Server.SpotInstanceShutdown</code>: The instance was stopped because the
* number of Spot requests with a maximum price equal to or higher than the Spot
* price exceeded available capacity or because of an increase in the Spot
* price.</p> </li> <li> <p> <code>Server.SpotInstanceTermination</code>: The
* instance was terminated because the number of Spot requests with a maximum price
* equal to or higher than the Spot price exceeded available capacity or because of
* an increase in the Spot price.</p> </li> <li> <p>
* <code>Client.InstanceInitiatedShutdown</code>: The instance was shut down using
* the <code>shutdown -h</code> command from the instance.</p> </li> <li> <p>
* <code>Client.InstanceTerminated</code>: The instance was terminated or rebooted
* during AMI creation.</p> </li> <li> <p> <code>Client.InternalError</code>: A
* client error caused the instance to terminate during launch.</p> </li> <li> <p>
* <code>Client.InvalidSnapshot.NotFound</code>: The specified snapshot was not
* found.</p> </li> <li> <p> <code>Client.UserInitiatedHibernate</code>:
* Hibernation was initiated on the instance.</p> </li> <li> <p>
* <code>Client.UserInitiatedShutdown</code>: The instance was shut down using the
* Amazon EC2 API.</p> </li> <li> <p> <code>Client.VolumeLimitExceeded</code>: The
* limit on the number of EBS volumes or total storage was exceeded. Decrease usage
* or request an increase in your account limits.</p> </li> </ul>
*/
inline StateReason& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
/**
* <p>The message for the state change.</p> <ul> <li> <p>
* <code>Server.InsufficientInstanceCapacity</code>: There was insufficient
* capacity available to satisfy the launch request.</p> </li> <li> <p>
* <code>Server.InternalError</code>: An internal error caused the instance to
* terminate during launch.</p> </li> <li> <p> <code>Server.ScheduledStop</code>:
* The instance was stopped due to a scheduled retirement.</p> </li> <li> <p>
* <code>Server.SpotInstanceShutdown</code>: The instance was stopped because the
* number of Spot requests with a maximum price equal to or higher than the Spot
* price exceeded available capacity or because of an increase in the Spot
* price.</p> </li> <li> <p> <code>Server.SpotInstanceTermination</code>: The
* instance was terminated because the number of Spot requests with a maximum price
* equal to or higher than the Spot price exceeded available capacity or because of
* an increase in the Spot price.</p> </li> <li> <p>
* <code>Client.InstanceInitiatedShutdown</code>: The instance was shut down using
* the <code>shutdown -h</code> command from the instance.</p> </li> <li> <p>
* <code>Client.InstanceTerminated</code>: The instance was terminated or rebooted
* during AMI creation.</p> </li> <li> <p> <code>Client.InternalError</code>: A
* client error caused the instance to terminate during launch.</p> </li> <li> <p>
* <code>Client.InvalidSnapshot.NotFound</code>: The specified snapshot was not
* found.</p> </li> <li> <p> <code>Client.UserInitiatedHibernate</code>:
* Hibernation was initiated on the instance.</p> </li> <li> <p>
* <code>Client.UserInitiatedShutdown</code>: The instance was shut down using the
* Amazon EC2 API.</p> </li> <li> <p> <code>Client.VolumeLimitExceeded</code>: The
* limit on the number of EBS volumes or total storage was exceeded. Decrease usage
* or request an increase in your account limits.</p> </li> </ul>
*/
inline StateReason& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
/**
* <p>The message for the state change.</p> <ul> <li> <p>
* <code>Server.InsufficientInstanceCapacity</code>: There was insufficient
* capacity available to satisfy the launch request.</p> </li> <li> <p>
* <code>Server.InternalError</code>: An internal error caused the instance to
* terminate during launch.</p> </li> <li> <p> <code>Server.ScheduledStop</code>:
* The instance was stopped due to a scheduled retirement.</p> </li> <li> <p>
* <code>Server.SpotInstanceShutdown</code>: The instance was stopped because the
* number of Spot requests with a maximum price equal to or higher than the Spot
* price exceeded available capacity or because of an increase in the Spot
* price.</p> </li> <li> <p> <code>Server.SpotInstanceTermination</code>: The
* instance was terminated because the number of Spot requests with a maximum price
* equal to or higher than the Spot price exceeded available capacity or because of
* an increase in the Spot price.</p> </li> <li> <p>
* <code>Client.InstanceInitiatedShutdown</code>: The instance was shut down using
* the <code>shutdown -h</code> command from the instance.</p> </li> <li> <p>
* <code>Client.InstanceTerminated</code>: The instance was terminated or rebooted
* during AMI creation.</p> </li> <li> <p> <code>Client.InternalError</code>: A
* client error caused the instance to terminate during launch.</p> </li> <li> <p>
* <code>Client.InvalidSnapshot.NotFound</code>: The specified snapshot was not
* found.</p> </li> <li> <p> <code>Client.UserInitiatedHibernate</code>:
* Hibernation was initiated on the instance.</p> </li> <li> <p>
* <code>Client.UserInitiatedShutdown</code>: The instance was shut down using the
* Amazon EC2 API.</p> </li> <li> <p> <code>Client.VolumeLimitExceeded</code>: The
* limit on the number of EBS volumes or total storage was exceeded. Decrease usage
* or request an increase in your account limits.</p> </li> </ul>
*/
inline StateReason& WithMessage(const char* value) { SetMessage(value); return *this;}
private:
Aws::String m_code;
bool m_codeHasBeenSet;
Aws::String m_message;
bool m_messageHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws