/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Updates an ApiMapping.See Also:
AWS
* API Reference
The API identifier.
*/ inline const Aws::String& GetApiId() const{ return m_apiId; } /** *The API identifier.
*/ inline bool ApiIdHasBeenSet() const { return m_apiIdHasBeenSet; } /** *The API identifier.
*/ inline void SetApiId(const Aws::String& value) { m_apiIdHasBeenSet = true; m_apiId = value; } /** *The API identifier.
*/ inline void SetApiId(Aws::String&& value) { m_apiIdHasBeenSet = true; m_apiId = std::move(value); } /** *The API identifier.
*/ inline void SetApiId(const char* value) { m_apiIdHasBeenSet = true; m_apiId.assign(value); } /** *The API identifier.
*/ inline UpdateApiMappingRequest& WithApiId(const Aws::String& value) { SetApiId(value); return *this;} /** *The API identifier.
*/ inline UpdateApiMappingRequest& WithApiId(Aws::String&& value) { SetApiId(std::move(value)); return *this;} /** *The API identifier.
*/ inline UpdateApiMappingRequest& WithApiId(const char* value) { SetApiId(value); return *this;} /** *The API mapping identifier.
*/ inline const Aws::String& GetApiMappingId() const{ return m_apiMappingId; } /** *The API mapping identifier.
*/ inline bool ApiMappingIdHasBeenSet() const { return m_apiMappingIdHasBeenSet; } /** *The API mapping identifier.
*/ inline void SetApiMappingId(const Aws::String& value) { m_apiMappingIdHasBeenSet = true; m_apiMappingId = value; } /** *The API mapping identifier.
*/ inline void SetApiMappingId(Aws::String&& value) { m_apiMappingIdHasBeenSet = true; m_apiMappingId = std::move(value); } /** *The API mapping identifier.
*/ inline void SetApiMappingId(const char* value) { m_apiMappingIdHasBeenSet = true; m_apiMappingId.assign(value); } /** *The API mapping identifier.
*/ inline UpdateApiMappingRequest& WithApiMappingId(const Aws::String& value) { SetApiMappingId(value); return *this;} /** *The API mapping identifier.
*/ inline UpdateApiMappingRequest& WithApiMappingId(Aws::String&& value) { SetApiMappingId(std::move(value)); return *this;} /** *The API mapping identifier.
*/ inline UpdateApiMappingRequest& WithApiMappingId(const char* value) { SetApiMappingId(value); return *this;} /** *The API mapping key.
*/ inline const Aws::String& GetApiMappingKey() const{ return m_apiMappingKey; } /** *The API mapping key.
*/ inline bool ApiMappingKeyHasBeenSet() const { return m_apiMappingKeyHasBeenSet; } /** *The API mapping key.
*/ inline void SetApiMappingKey(const Aws::String& value) { m_apiMappingKeyHasBeenSet = true; m_apiMappingKey = value; } /** *The API mapping key.
*/ inline void SetApiMappingKey(Aws::String&& value) { m_apiMappingKeyHasBeenSet = true; m_apiMappingKey = std::move(value); } /** *The API mapping key.
*/ inline void SetApiMappingKey(const char* value) { m_apiMappingKeyHasBeenSet = true; m_apiMappingKey.assign(value); } /** *The API mapping key.
*/ inline UpdateApiMappingRequest& WithApiMappingKey(const Aws::String& value) { SetApiMappingKey(value); return *this;} /** *The API mapping key.
*/ inline UpdateApiMappingRequest& WithApiMappingKey(Aws::String&& value) { SetApiMappingKey(std::move(value)); return *this;} /** *The API mapping key.
*/ inline UpdateApiMappingRequest& WithApiMappingKey(const char* value) { SetApiMappingKey(value); return *this;} /** *The domain name.
*/ inline const Aws::String& GetDomainName() const{ return m_domainName; } /** *The domain name.
*/ inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; } /** *The domain name.
*/ inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; } /** *The domain name.
*/ inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); } /** *The domain name.
*/ inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); } /** *The domain name.
*/ inline UpdateApiMappingRequest& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;} /** *The domain name.
*/ inline UpdateApiMappingRequest& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;} /** *The domain name.
*/ inline UpdateApiMappingRequest& WithDomainName(const char* value) { SetDomainName(value); return *this;} /** *The API stage.
*/ inline const Aws::String& GetStage() const{ return m_stage; } /** *The API stage.
*/ inline bool StageHasBeenSet() const { return m_stageHasBeenSet; } /** *The API stage.
*/ inline void SetStage(const Aws::String& value) { m_stageHasBeenSet = true; m_stage = value; } /** *The API stage.
*/ inline void SetStage(Aws::String&& value) { m_stageHasBeenSet = true; m_stage = std::move(value); } /** *The API stage.
*/ inline void SetStage(const char* value) { m_stageHasBeenSet = true; m_stage.assign(value); } /** *The API stage.
*/ inline UpdateApiMappingRequest& WithStage(const Aws::String& value) { SetStage(value); return *this;} /** *The API stage.
*/ inline UpdateApiMappingRequest& WithStage(Aws::String&& value) { SetStage(std::move(value)); return *this;} /** *The API stage.
*/ inline UpdateApiMappingRequest& WithStage(const char* value) { SetStage(value); return *this;} private: Aws::String m_apiId; bool m_apiIdHasBeenSet = false; Aws::String m_apiMappingId; bool m_apiMappingIdHasBeenSet = false; Aws::String m_apiMappingKey; bool m_apiMappingKeyHasBeenSet = false; Aws::String m_domainName; bool m_domainNameHasBeenSet = false; Aws::String m_stage; bool m_stageHasBeenSet = false; }; } // namespace Model } // namespace ApiGatewayV2 } // namespace Aws