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-redshift/include/aws/redshift/model/AcceptReservedNodeExchangeRequest.h

156 lines
6.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/redshift/Redshift_EXPORTS.h>
#include <aws/redshift/RedshiftRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Redshift
{
namespace Model
{
/**
*/
class AWS_REDSHIFT_API AcceptReservedNodeExchangeRequest : public RedshiftRequest
{
public:
AcceptReservedNodeExchangeRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "AcceptReservedNodeExchange"; }
Aws::String SerializePayload() const override;
protected:
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
public:
/**
* <p>A string representing the node identifier of the DC1 Reserved Node to be
* exchanged.</p>
*/
inline const Aws::String& GetReservedNodeId() const{ return m_reservedNodeId; }
/**
* <p>A string representing the node identifier of the DC1 Reserved Node to be
* exchanged.</p>
*/
inline bool ReservedNodeIdHasBeenSet() const { return m_reservedNodeIdHasBeenSet; }
/**
* <p>A string representing the node identifier of the DC1 Reserved Node to be
* exchanged.</p>
*/
inline void SetReservedNodeId(const Aws::String& value) { m_reservedNodeIdHasBeenSet = true; m_reservedNodeId = value; }
/**
* <p>A string representing the node identifier of the DC1 Reserved Node to be
* exchanged.</p>
*/
inline void SetReservedNodeId(Aws::String&& value) { m_reservedNodeIdHasBeenSet = true; m_reservedNodeId = std::move(value); }
/**
* <p>A string representing the node identifier of the DC1 Reserved Node to be
* exchanged.</p>
*/
inline void SetReservedNodeId(const char* value) { m_reservedNodeIdHasBeenSet = true; m_reservedNodeId.assign(value); }
/**
* <p>A string representing the node identifier of the DC1 Reserved Node to be
* exchanged.</p>
*/
inline AcceptReservedNodeExchangeRequest& WithReservedNodeId(const Aws::String& value) { SetReservedNodeId(value); return *this;}
/**
* <p>A string representing the node identifier of the DC1 Reserved Node to be
* exchanged.</p>
*/
inline AcceptReservedNodeExchangeRequest& WithReservedNodeId(Aws::String&& value) { SetReservedNodeId(std::move(value)); return *this;}
/**
* <p>A string representing the node identifier of the DC1 Reserved Node to be
* exchanged.</p>
*/
inline AcceptReservedNodeExchangeRequest& WithReservedNodeId(const char* value) { SetReservedNodeId(value); return *this;}
/**
* <p>The unique identifier of the DC2 Reserved Node offering to be used for the
* exchange. You can obtain the value for the parameter by calling
* <a>GetReservedNodeExchangeOfferings</a> </p>
*/
inline const Aws::String& GetTargetReservedNodeOfferingId() const{ return m_targetReservedNodeOfferingId; }
/**
* <p>The unique identifier of the DC2 Reserved Node offering to be used for the
* exchange. You can obtain the value for the parameter by calling
* <a>GetReservedNodeExchangeOfferings</a> </p>
*/
inline bool TargetReservedNodeOfferingIdHasBeenSet() const { return m_targetReservedNodeOfferingIdHasBeenSet; }
/**
* <p>The unique identifier of the DC2 Reserved Node offering to be used for the
* exchange. You can obtain the value for the parameter by calling
* <a>GetReservedNodeExchangeOfferings</a> </p>
*/
inline void SetTargetReservedNodeOfferingId(const Aws::String& value) { m_targetReservedNodeOfferingIdHasBeenSet = true; m_targetReservedNodeOfferingId = value; }
/**
* <p>The unique identifier of the DC2 Reserved Node offering to be used for the
* exchange. You can obtain the value for the parameter by calling
* <a>GetReservedNodeExchangeOfferings</a> </p>
*/
inline void SetTargetReservedNodeOfferingId(Aws::String&& value) { m_targetReservedNodeOfferingIdHasBeenSet = true; m_targetReservedNodeOfferingId = std::move(value); }
/**
* <p>The unique identifier of the DC2 Reserved Node offering to be used for the
* exchange. You can obtain the value for the parameter by calling
* <a>GetReservedNodeExchangeOfferings</a> </p>
*/
inline void SetTargetReservedNodeOfferingId(const char* value) { m_targetReservedNodeOfferingIdHasBeenSet = true; m_targetReservedNodeOfferingId.assign(value); }
/**
* <p>The unique identifier of the DC2 Reserved Node offering to be used for the
* exchange. You can obtain the value for the parameter by calling
* <a>GetReservedNodeExchangeOfferings</a> </p>
*/
inline AcceptReservedNodeExchangeRequest& WithTargetReservedNodeOfferingId(const Aws::String& value) { SetTargetReservedNodeOfferingId(value); return *this;}
/**
* <p>The unique identifier of the DC2 Reserved Node offering to be used for the
* exchange. You can obtain the value for the parameter by calling
* <a>GetReservedNodeExchangeOfferings</a> </p>
*/
inline AcceptReservedNodeExchangeRequest& WithTargetReservedNodeOfferingId(Aws::String&& value) { SetTargetReservedNodeOfferingId(std::move(value)); return *this;}
/**
* <p>The unique identifier of the DC2 Reserved Node offering to be used for the
* exchange. You can obtain the value for the parameter by calling
* <a>GetReservedNodeExchangeOfferings</a> </p>
*/
inline AcceptReservedNodeExchangeRequest& WithTargetReservedNodeOfferingId(const char* value) { SetTargetReservedNodeOfferingId(value); return *this;}
private:
Aws::String m_reservedNodeId;
bool m_reservedNodeIdHasBeenSet;
Aws::String m_targetReservedNodeOfferingId;
bool m_targetReservedNodeOfferingIdHasBeenSet;
};
} // namespace Model
} // namespace Redshift
} // namespace Aws