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

Returns the RequestedServiceQuotaChange object for the specific * increase request.

*/ inline const RequestedServiceQuotaChange& GetRequestedQuota() const{ return m_requestedQuota; } /** *

Returns the RequestedServiceQuotaChange object for the specific * increase request.

*/ inline void SetRequestedQuota(const RequestedServiceQuotaChange& value) { m_requestedQuota = value; } /** *

Returns the RequestedServiceQuotaChange object for the specific * increase request.

*/ inline void SetRequestedQuota(RequestedServiceQuotaChange&& value) { m_requestedQuota = std::move(value); } /** *

Returns the RequestedServiceQuotaChange object for the specific * increase request.

*/ inline GetRequestedServiceQuotaChangeResult& WithRequestedQuota(const RequestedServiceQuotaChange& value) { SetRequestedQuota(value); return *this;} /** *

Returns the RequestedServiceQuotaChange object for the specific * increase request.

*/ inline GetRequestedServiceQuotaChangeResult& WithRequestedQuota(RequestedServiceQuotaChange&& value) { SetRequestedQuota(std::move(value)); return *this;} private: RequestedServiceQuotaChange m_requestedQuota; }; } // namespace Model } // namespace ServiceQuotas } // namespace Aws