133 lines
4.5 KiB
C++
133 lines
4.5 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 <aws/ec2/model/UnsuccessfulInstanceCreditSpecificationItemError.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Xml
|
|
{
|
|
class XmlNode;
|
|
} // namespace Xml
|
|
} // namespace Utils
|
|
namespace EC2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Describes the burstable performance instance whose credit option for CPU
|
|
* usage was not modified.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnsuccessfulInstanceCreditSpecificationItem">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_EC2_API UnsuccessfulInstanceCreditSpecificationItem
|
|
{
|
|
public:
|
|
UnsuccessfulInstanceCreditSpecificationItem();
|
|
UnsuccessfulInstanceCreditSpecificationItem(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
UnsuccessfulInstanceCreditSpecificationItem& 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 ID of the instance.</p>
|
|
*/
|
|
inline const Aws::String& GetInstanceId() const{ return m_instanceId; }
|
|
|
|
/**
|
|
* <p>The ID of the instance.</p>
|
|
*/
|
|
inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the instance.</p>
|
|
*/
|
|
inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the instance.</p>
|
|
*/
|
|
inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the instance.</p>
|
|
*/
|
|
inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the instance.</p>
|
|
*/
|
|
inline UnsuccessfulInstanceCreditSpecificationItem& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the instance.</p>
|
|
*/
|
|
inline UnsuccessfulInstanceCreditSpecificationItem& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the instance.</p>
|
|
*/
|
|
inline UnsuccessfulInstanceCreditSpecificationItem& WithInstanceId(const char* value) { SetInstanceId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The applicable error for the burstable performance instance whose credit
|
|
* option for CPU usage was not modified.</p>
|
|
*/
|
|
inline const UnsuccessfulInstanceCreditSpecificationItemError& GetError() const{ return m_error; }
|
|
|
|
/**
|
|
* <p>The applicable error for the burstable performance instance whose credit
|
|
* option for CPU usage was not modified.</p>
|
|
*/
|
|
inline bool ErrorHasBeenSet() const { return m_errorHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The applicable error for the burstable performance instance whose credit
|
|
* option for CPU usage was not modified.</p>
|
|
*/
|
|
inline void SetError(const UnsuccessfulInstanceCreditSpecificationItemError& value) { m_errorHasBeenSet = true; m_error = value; }
|
|
|
|
/**
|
|
* <p>The applicable error for the burstable performance instance whose credit
|
|
* option for CPU usage was not modified.</p>
|
|
*/
|
|
inline void SetError(UnsuccessfulInstanceCreditSpecificationItemError&& value) { m_errorHasBeenSet = true; m_error = std::move(value); }
|
|
|
|
/**
|
|
* <p>The applicable error for the burstable performance instance whose credit
|
|
* option for CPU usage was not modified.</p>
|
|
*/
|
|
inline UnsuccessfulInstanceCreditSpecificationItem& WithError(const UnsuccessfulInstanceCreditSpecificationItemError& value) { SetError(value); return *this;}
|
|
|
|
/**
|
|
* <p>The applicable error for the burstable performance instance whose credit
|
|
* option for CPU usage was not modified.</p>
|
|
*/
|
|
inline UnsuccessfulInstanceCreditSpecificationItem& WithError(UnsuccessfulInstanceCreditSpecificationItemError&& value) { SetError(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_instanceId;
|
|
bool m_instanceIdHasBeenSet;
|
|
|
|
UnsuccessfulInstanceCreditSpecificationItemError m_error;
|
|
bool m_errorHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|