/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
A string representing the node identifier for the DC1 Reserved Node to be * exchanged.
*/ inline const Aws::String& GetReservedNodeId() const{ return m_reservedNodeId; } /** *A string representing the node identifier for the DC1 Reserved Node to be * exchanged.
*/ inline bool ReservedNodeIdHasBeenSet() const { return m_reservedNodeIdHasBeenSet; } /** *A string representing the node identifier for the DC1 Reserved Node to be * exchanged.
*/ inline void SetReservedNodeId(const Aws::String& value) { m_reservedNodeIdHasBeenSet = true; m_reservedNodeId = value; } /** *A string representing the node identifier for the DC1 Reserved Node to be * exchanged.
*/ inline void SetReservedNodeId(Aws::String&& value) { m_reservedNodeIdHasBeenSet = true; m_reservedNodeId = std::move(value); } /** *A string representing the node identifier for the DC1 Reserved Node to be * exchanged.
*/ inline void SetReservedNodeId(const char* value) { m_reservedNodeIdHasBeenSet = true; m_reservedNodeId.assign(value); } /** *A string representing the node identifier for the DC1 Reserved Node to be * exchanged.
*/ inline GetReservedNodeExchangeOfferingsRequest& WithReservedNodeId(const Aws::String& value) { SetReservedNodeId(value); return *this;} /** *A string representing the node identifier for the DC1 Reserved Node to be * exchanged.
*/ inline GetReservedNodeExchangeOfferingsRequest& WithReservedNodeId(Aws::String&& value) { SetReservedNodeId(std::move(value)); return *this;} /** *A string representing the node identifier for the DC1 Reserved Node to be * exchanged.
*/ inline GetReservedNodeExchangeOfferingsRequest& WithReservedNodeId(const char* value) { SetReservedNodeId(value); return *this;} /** *An integer setting the maximum number of ReservedNodeOfferings to * retrieve.
*/ inline int GetMaxRecords() const{ return m_maxRecords; } /** *An integer setting the maximum number of ReservedNodeOfferings to * retrieve.
*/ inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; } /** *An integer setting the maximum number of ReservedNodeOfferings to * retrieve.
*/ inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; } /** *An integer setting the maximum number of ReservedNodeOfferings to * retrieve.
*/ inline GetReservedNodeExchangeOfferingsRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;} /** *A value that indicates the starting point for the next set of * ReservedNodeOfferings.
*/ inline const Aws::String& GetMarker() const{ return m_marker; } /** *A value that indicates the starting point for the next set of * ReservedNodeOfferings.
*/ inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; } /** *A value that indicates the starting point for the next set of * ReservedNodeOfferings.
*/ inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; } /** *A value that indicates the starting point for the next set of * ReservedNodeOfferings.
*/ inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); } /** *A value that indicates the starting point for the next set of * ReservedNodeOfferings.
*/ inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); } /** *A value that indicates the starting point for the next set of * ReservedNodeOfferings.
*/ inline GetReservedNodeExchangeOfferingsRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;} /** *A value that indicates the starting point for the next set of * ReservedNodeOfferings.
*/ inline GetReservedNodeExchangeOfferingsRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;} /** *A value that indicates the starting point for the next set of * ReservedNodeOfferings.
*/ inline GetReservedNodeExchangeOfferingsRequest& WithMarker(const char* value) { SetMarker(value); return *this;} private: Aws::String m_reservedNodeId; bool m_reservedNodeIdHasBeenSet = false; int m_maxRecords; bool m_maxRecordsHasBeenSet = false; Aws::String m_marker; bool m_markerHasBeenSet = false; }; } // namespace Model } // namespace Redshift } // namespace Aws