Files
DedicatedServerCourse/Plugins/GameLiftPlugin/Source/AWSSDK/Include/aws/apigateway/model/GetAccountResult.h

121 lines
5.3 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/apigateway/APIGateway_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/apigateway/model/ThrottleSettings.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace APIGateway
{
namespace Model
{
/**
* <p>Represents an AWS account that is associated with API Gateway.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/apigateway-2015-07-09/Account">AWS
* API Reference</a></p>
*/
class GetAccountResult
{
public:
AWS_APIGATEWAY_API GetAccountResult();
AWS_APIGATEWAY_API GetAccountResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
AWS_APIGATEWAY_API GetAccountResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
///@{
/**
* <p>The ARN of an Amazon CloudWatch role for the current Account. </p>
*/
inline const Aws::String& GetCloudwatchRoleArn() const{ return m_cloudwatchRoleArn; }
inline void SetCloudwatchRoleArn(const Aws::String& value) { m_cloudwatchRoleArn = value; }
inline void SetCloudwatchRoleArn(Aws::String&& value) { m_cloudwatchRoleArn = std::move(value); }
inline void SetCloudwatchRoleArn(const char* value) { m_cloudwatchRoleArn.assign(value); }
inline GetAccountResult& WithCloudwatchRoleArn(const Aws::String& value) { SetCloudwatchRoleArn(value); return *this;}
inline GetAccountResult& WithCloudwatchRoleArn(Aws::String&& value) { SetCloudwatchRoleArn(std::move(value)); return *this;}
inline GetAccountResult& WithCloudwatchRoleArn(const char* value) { SetCloudwatchRoleArn(value); return *this;}
///@}
///@{
/**
* <p>Specifies the API request limits configured for the current Account.</p>
*/
inline const ThrottleSettings& GetThrottleSettings() const{ return m_throttleSettings; }
inline void SetThrottleSettings(const ThrottleSettings& value) { m_throttleSettings = value; }
inline void SetThrottleSettings(ThrottleSettings&& value) { m_throttleSettings = std::move(value); }
inline GetAccountResult& WithThrottleSettings(const ThrottleSettings& value) { SetThrottleSettings(value); return *this;}
inline GetAccountResult& WithThrottleSettings(ThrottleSettings&& value) { SetThrottleSettings(std::move(value)); return *this;}
///@}
///@{
/**
* <p>A list of features supported for the account. When usage plans are enabled,
* the features list will include an entry of <code>"UsagePlans"</code>.</p>
*/
inline const Aws::Vector<Aws::String>& GetFeatures() const{ return m_features; }
inline void SetFeatures(const Aws::Vector<Aws::String>& value) { m_features = value; }
inline void SetFeatures(Aws::Vector<Aws::String>&& value) { m_features = std::move(value); }
inline GetAccountResult& WithFeatures(const Aws::Vector<Aws::String>& value) { SetFeatures(value); return *this;}
inline GetAccountResult& WithFeatures(Aws::Vector<Aws::String>&& value) { SetFeatures(std::move(value)); return *this;}
inline GetAccountResult& AddFeatures(const Aws::String& value) { m_features.push_back(value); return *this; }
inline GetAccountResult& AddFeatures(Aws::String&& value) { m_features.push_back(std::move(value)); return *this; }
inline GetAccountResult& AddFeatures(const char* value) { m_features.push_back(value); return *this; }
///@}
///@{
/**
* <p>The version of the API keys used for the account.</p>
*/
inline const Aws::String& GetApiKeyVersion() const{ return m_apiKeyVersion; }
inline void SetApiKeyVersion(const Aws::String& value) { m_apiKeyVersion = value; }
inline void SetApiKeyVersion(Aws::String&& value) { m_apiKeyVersion = std::move(value); }
inline void SetApiKeyVersion(const char* value) { m_apiKeyVersion.assign(value); }
inline GetAccountResult& WithApiKeyVersion(const Aws::String& value) { SetApiKeyVersion(value); return *this;}
inline GetAccountResult& WithApiKeyVersion(Aws::String&& value) { SetApiKeyVersion(std::move(value)); return *this;}
inline GetAccountResult& WithApiKeyVersion(const char* value) { SetApiKeyVersion(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 GetAccountResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
inline GetAccountResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
inline GetAccountResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
///@}
private:
Aws::String m_cloudwatchRoleArn;
ThrottleSettings m_throttleSettings;
Aws::Vector<Aws::String> m_features;
Aws::String m_apiKeyVersion;
Aws::String m_requestId;
};
} // namespace Model
} // namespace APIGateway
} // namespace Aws