/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/apigatewayv2/ApiGatewayV2_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ApiGatewayV2 { namespace Model { class CreateApiMappingResult { public: AWS_APIGATEWAYV2_API CreateApiMappingResult(); AWS_APIGATEWAYV2_API CreateApiMappingResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_APIGATEWAYV2_API CreateApiMappingResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>The API identifier.</p> */ inline const Aws::String& GetApiId() const{ return m_apiId; } /** * <p>The API identifier.</p> */ inline void SetApiId(const Aws::String& value) { m_apiId = value; } /** * <p>The API identifier.</p> */ inline void SetApiId(Aws::String&& value) { m_apiId = std::move(value); } /** * <p>The API identifier.</p> */ inline void SetApiId(const char* value) { m_apiId.assign(value); } /** * <p>The API identifier.</p> */ inline CreateApiMappingResult& WithApiId(const Aws::String& value) { SetApiId(value); return *this;} /** * <p>The API identifier.</p> */ inline CreateApiMappingResult& WithApiId(Aws::String&& value) { SetApiId(std::move(value)); return *this;} /** * <p>The API identifier.</p> */ inline CreateApiMappingResult& WithApiId(const char* value) { SetApiId(value); return *this;} /** * <p>The API mapping identifier.</p> */ inline const Aws::String& GetApiMappingId() const{ return m_apiMappingId; } /** * <p>The API mapping identifier.</p> */ inline void SetApiMappingId(const Aws::String& value) { m_apiMappingId = value; } /** * <p>The API mapping identifier.</p> */ inline void SetApiMappingId(Aws::String&& value) { m_apiMappingId = std::move(value); } /** * <p>The API mapping identifier.</p> */ inline void SetApiMappingId(const char* value) { m_apiMappingId.assign(value); } /** * <p>The API mapping identifier.</p> */ inline CreateApiMappingResult& WithApiMappingId(const Aws::String& value) { SetApiMappingId(value); return *this;} /** * <p>The API mapping identifier.</p> */ inline CreateApiMappingResult& WithApiMappingId(Aws::String&& value) { SetApiMappingId(std::move(value)); return *this;} /** * <p>The API mapping identifier.</p> */ inline CreateApiMappingResult& WithApiMappingId(const char* value) { SetApiMappingId(value); return *this;} /** * <p>The API mapping key.</p> */ inline const Aws::String& GetApiMappingKey() const{ return m_apiMappingKey; } /** * <p>The API mapping key.</p> */ inline void SetApiMappingKey(const Aws::String& value) { m_apiMappingKey = value; } /** * <p>The API mapping key.</p> */ inline void SetApiMappingKey(Aws::String&& value) { m_apiMappingKey = std::move(value); } /** * <p>The API mapping key.</p> */ inline void SetApiMappingKey(const char* value) { m_apiMappingKey.assign(value); } /** * <p>The API mapping key.</p> */ inline CreateApiMappingResult& WithApiMappingKey(const Aws::String& value) { SetApiMappingKey(value); return *this;} /** * <p>The API mapping key.</p> */ inline CreateApiMappingResult& WithApiMappingKey(Aws::String&& value) { SetApiMappingKey(std::move(value)); return *this;} /** * <p>The API mapping key.</p> */ inline CreateApiMappingResult& WithApiMappingKey(const char* value) { SetApiMappingKey(value); return *this;} /** * <p>The API stage.</p> */ inline const Aws::String& GetStage() const{ return m_stage; } /** * <p>The API stage.</p> */ inline void SetStage(const Aws::String& value) { m_stage = value; } /** * <p>The API stage.</p> */ inline void SetStage(Aws::String&& value) { m_stage = std::move(value); } /** * <p>The API stage.</p> */ inline void SetStage(const char* value) { m_stage.assign(value); } /** * <p>The API stage.</p> */ inline CreateApiMappingResult& WithStage(const Aws::String& value) { SetStage(value); return *this;} /** * <p>The API stage.</p> */ inline CreateApiMappingResult& WithStage(Aws::String&& value) { SetStage(std::move(value)); return *this;} /** * <p>The API stage.</p> */ inline CreateApiMappingResult& WithStage(const char* value) { SetStage(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 CreateApiMappingResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateApiMappingResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateApiMappingResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_apiId; Aws::String m_apiMappingId; Aws::String m_apiMappingKey; Aws::String m_stage; Aws::String m_requestId; }; } // namespace Model } // namespace ApiGatewayV2 } // namespace Aws