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-service-quotas/include/aws/service-quotas/model/GetAWSDefaultServiceQuotaResult.h

73 lines
1.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/service-quotas/ServiceQuotas_EXPORTS.h>
#include <aws/service-quotas/model/ServiceQuota.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace ServiceQuotas
{
namespace Model
{
class AWS_SERVICEQUOTAS_API GetAWSDefaultServiceQuotaResult
{
public:
GetAWSDefaultServiceQuotaResult();
GetAWSDefaultServiceQuotaResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetAWSDefaultServiceQuotaResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>Returns the <a>ServiceQuota</a> object which contains all values for a
* quota.</p>
*/
inline const ServiceQuota& GetQuota() const{ return m_quota; }
/**
* <p>Returns the <a>ServiceQuota</a> object which contains all values for a
* quota.</p>
*/
inline void SetQuota(const ServiceQuota& value) { m_quota = value; }
/**
* <p>Returns the <a>ServiceQuota</a> object which contains all values for a
* quota.</p>
*/
inline void SetQuota(ServiceQuota&& value) { m_quota = std::move(value); }
/**
* <p>Returns the <a>ServiceQuota</a> object which contains all values for a
* quota.</p>
*/
inline GetAWSDefaultServiceQuotaResult& WithQuota(const ServiceQuota& value) { SetQuota(value); return *this;}
/**
* <p>Returns the <a>ServiceQuota</a> object which contains all values for a
* quota.</p>
*/
inline GetAWSDefaultServiceQuotaResult& WithQuota(ServiceQuota&& value) { SetQuota(std::move(value)); return *this;}
private:
ServiceQuota m_quota;
};
} // namespace Model
} // namespace ServiceQuotas
} // namespace Aws