127 lines
3.8 KiB
C++
127 lines
3.8 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/ec2/model/DeleteQueuedReservedInstancesError.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 Reserved Instance whose queued purchase was not
|
|
* deleted.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FailedQueuedPurchaseDeletion">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_EC2_API FailedQueuedPurchaseDeletion
|
|
{
|
|
public:
|
|
FailedQueuedPurchaseDeletion();
|
|
FailedQueuedPurchaseDeletion(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
FailedQueuedPurchaseDeletion& 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 error.</p>
|
|
*/
|
|
inline const DeleteQueuedReservedInstancesError& GetError() const{ return m_error; }
|
|
|
|
/**
|
|
* <p>The error.</p>
|
|
*/
|
|
inline bool ErrorHasBeenSet() const { return m_errorHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The error.</p>
|
|
*/
|
|
inline void SetError(const DeleteQueuedReservedInstancesError& value) { m_errorHasBeenSet = true; m_error = value; }
|
|
|
|
/**
|
|
* <p>The error.</p>
|
|
*/
|
|
inline void SetError(DeleteQueuedReservedInstancesError&& value) { m_errorHasBeenSet = true; m_error = std::move(value); }
|
|
|
|
/**
|
|
* <p>The error.</p>
|
|
*/
|
|
inline FailedQueuedPurchaseDeletion& WithError(const DeleteQueuedReservedInstancesError& value) { SetError(value); return *this;}
|
|
|
|
/**
|
|
* <p>The error.</p>
|
|
*/
|
|
inline FailedQueuedPurchaseDeletion& WithError(DeleteQueuedReservedInstancesError&& value) { SetError(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The ID of the Reserved Instance.</p>
|
|
*/
|
|
inline const Aws::String& GetReservedInstancesId() const{ return m_reservedInstancesId; }
|
|
|
|
/**
|
|
* <p>The ID of the Reserved Instance.</p>
|
|
*/
|
|
inline bool ReservedInstancesIdHasBeenSet() const { return m_reservedInstancesIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the Reserved Instance.</p>
|
|
*/
|
|
inline void SetReservedInstancesId(const Aws::String& value) { m_reservedInstancesIdHasBeenSet = true; m_reservedInstancesId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the Reserved Instance.</p>
|
|
*/
|
|
inline void SetReservedInstancesId(Aws::String&& value) { m_reservedInstancesIdHasBeenSet = true; m_reservedInstancesId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the Reserved Instance.</p>
|
|
*/
|
|
inline void SetReservedInstancesId(const char* value) { m_reservedInstancesIdHasBeenSet = true; m_reservedInstancesId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the Reserved Instance.</p>
|
|
*/
|
|
inline FailedQueuedPurchaseDeletion& WithReservedInstancesId(const Aws::String& value) { SetReservedInstancesId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the Reserved Instance.</p>
|
|
*/
|
|
inline FailedQueuedPurchaseDeletion& WithReservedInstancesId(Aws::String&& value) { SetReservedInstancesId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the Reserved Instance.</p>
|
|
*/
|
|
inline FailedQueuedPurchaseDeletion& WithReservedInstancesId(const char* value) { SetReservedInstancesId(value); return *this;}
|
|
|
|
private:
|
|
|
|
DeleteQueuedReservedInstancesError m_error;
|
|
bool m_errorHasBeenSet;
|
|
|
|
Aws::String m_reservedInstancesId;
|
|
bool m_reservedInstancesIdHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|