/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Athena { namespace Model { class ListCapacityReservationsResult { public: AWS_ATHENA_API ListCapacityReservationsResult(); AWS_ATHENA_API ListCapacityReservationsResult(const Aws::AmazonWebServiceResult& result); AWS_ATHENA_API ListCapacityReservationsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A token generated by the Athena service that specifies where to continue * pagination if a previous request was truncated. To obtain the next set of pages, * pass in the NextToken from the response object of the previous page call.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

A token generated by the Athena service that specifies where to continue * pagination if a previous request was truncated. To obtain the next set of pages, * pass in the NextToken from the response object of the previous page call.

*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *

A token generated by the Athena service that specifies where to continue * pagination if a previous request was truncated. To obtain the next set of pages, * pass in the NextToken from the response object of the previous page call.

*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *

A token generated by the Athena service that specifies where to continue * pagination if a previous request was truncated. To obtain the next set of pages, * pass in the NextToken from the response object of the previous page call.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

A token generated by the Athena service that specifies where to continue * pagination if a previous request was truncated. To obtain the next set of pages, * pass in the NextToken from the response object of the previous page call.

*/ inline ListCapacityReservationsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

A token generated by the Athena service that specifies where to continue * pagination if a previous request was truncated. To obtain the next set of pages, * pass in the NextToken from the response object of the previous page call.

*/ inline ListCapacityReservationsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

A token generated by the Athena service that specifies where to continue * pagination if a previous request was truncated. To obtain the next set of pages, * pass in the NextToken from the response object of the previous page call.

*/ inline ListCapacityReservationsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

The capacity reservations for the current account.

*/ inline const Aws::Vector& GetCapacityReservations() const{ return m_capacityReservations; } /** *

The capacity reservations for the current account.

*/ inline void SetCapacityReservations(const Aws::Vector& value) { m_capacityReservations = value; } /** *

The capacity reservations for the current account.

*/ inline void SetCapacityReservations(Aws::Vector&& value) { m_capacityReservations = std::move(value); } /** *

The capacity reservations for the current account.

*/ inline ListCapacityReservationsResult& WithCapacityReservations(const Aws::Vector& value) { SetCapacityReservations(value); return *this;} /** *

The capacity reservations for the current account.

*/ inline ListCapacityReservationsResult& WithCapacityReservations(Aws::Vector&& value) { SetCapacityReservations(std::move(value)); return *this;} /** *

The capacity reservations for the current account.

*/ inline ListCapacityReservationsResult& AddCapacityReservations(const CapacityReservation& value) { m_capacityReservations.push_back(value); return *this; } /** *

The capacity reservations for the current account.

*/ inline ListCapacityReservationsResult& AddCapacityReservations(CapacityReservation&& value) { m_capacityReservations.push_back(std::move(value)); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline ListCapacityReservationsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListCapacityReservationsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListCapacityReservationsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_nextToken; Aws::Vector m_capacityReservations; Aws::String m_requestId; }; } // namespace Model } // namespace Athena } // namespace Aws