662 lines
24 KiB
C
662 lines
24 KiB
C
|
|
/**
|
|||
|
|
* 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 <aws/apigatewayv2/model/Cors.h>
|
|||
|
|
#include <aws/core/utils/DateTime.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|||
|
|
#include <aws/apigatewayv2/model/ProtocolType.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSMap.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 AWS_APIGATEWAYV2_API CreateApiResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
CreateApiResult();
|
|||
|
|
CreateApiResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
CreateApiResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The URI of the API, of the form {api-id}.execute-api.{region}.amazonaws.com.
|
|||
|
|
* The stage name is typically appended to this URI to form a complete path to a
|
|||
|
|
* deployed API stage.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetApiEndpoint() const{ return m_apiEndpoint; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The URI of the API, of the form {api-id}.execute-api.{region}.amazonaws.com.
|
|||
|
|
* The stage name is typically appended to this URI to form a complete path to a
|
|||
|
|
* deployed API stage.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetApiEndpoint(const Aws::String& value) { m_apiEndpoint = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The URI of the API, of the form {api-id}.execute-api.{region}.amazonaws.com.
|
|||
|
|
* The stage name is typically appended to this URI to form a complete path to a
|
|||
|
|
* deployed API stage.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetApiEndpoint(Aws::String&& value) { m_apiEndpoint = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The URI of the API, of the form {api-id}.execute-api.{region}.amazonaws.com.
|
|||
|
|
* The stage name is typically appended to this URI to form a complete path to a
|
|||
|
|
* deployed API stage.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetApiEndpoint(const char* value) { m_apiEndpoint.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The URI of the API, of the form {api-id}.execute-api.{region}.amazonaws.com.
|
|||
|
|
* The stage name is typically appended to this URI to form a complete path to a
|
|||
|
|
* deployed API stage.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithApiEndpoint(const Aws::String& value) { SetApiEndpoint(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The URI of the API, of the form {api-id}.execute-api.{region}.amazonaws.com.
|
|||
|
|
* The stage name is typically appended to this URI to form a complete path to a
|
|||
|
|
* deployed API stage.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithApiEndpoint(Aws::String&& value) { SetApiEndpoint(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The URI of the API, of the form {api-id}.execute-api.{region}.amazonaws.com.
|
|||
|
|
* The stage name is typically appended to this URI to form a complete path to a
|
|||
|
|
* deployed API stage.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithApiEndpoint(const char* value) { SetApiEndpoint(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Specifies whether an API is managed by API Gateway. You can't update or
|
|||
|
|
* delete a managed API by using API Gateway. A managed API can be deleted only
|
|||
|
|
* through the tooling or service that created it.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool GetApiGatewayManaged() const{ return m_apiGatewayManaged; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Specifies whether an API is managed by API Gateway. You can't update or
|
|||
|
|
* delete a managed API by using API Gateway. A managed API can be deleted only
|
|||
|
|
* through the tooling or service that created it.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetApiGatewayManaged(bool value) { m_apiGatewayManaged = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Specifies whether an API is managed by API Gateway. You can't update or
|
|||
|
|
* delete a managed API by using API Gateway. A managed API can be deleted only
|
|||
|
|
* through the tooling or service that created it.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithApiGatewayManaged(bool value) { SetApiGatewayManaged(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The API ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetApiId() const{ return m_apiId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The API ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetApiId(const Aws::String& value) { m_apiId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The API ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetApiId(Aws::String&& value) { m_apiId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The API ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetApiId(const char* value) { m_apiId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The API ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithApiId(const Aws::String& value) { SetApiId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The API ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithApiId(Aws::String&& value) { SetApiId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The API ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithApiId(const char* value) { SetApiId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An API key selection expression. Supported only for WebSocket APIs. See <a
|
|||
|
|
* href="https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-apikey-selection-expressions">API
|
|||
|
|
* Key Selection Expressions</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetApiKeySelectionExpression() const{ return m_apiKeySelectionExpression; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An API key selection expression. Supported only for WebSocket APIs. See <a
|
|||
|
|
* href="https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-apikey-selection-expressions">API
|
|||
|
|
* Key Selection Expressions</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetApiKeySelectionExpression(const Aws::String& value) { m_apiKeySelectionExpression = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An API key selection expression. Supported only for WebSocket APIs. See <a
|
|||
|
|
* href="https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-apikey-selection-expressions">API
|
|||
|
|
* Key Selection Expressions</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetApiKeySelectionExpression(Aws::String&& value) { m_apiKeySelectionExpression = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An API key selection expression. Supported only for WebSocket APIs. See <a
|
|||
|
|
* href="https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-apikey-selection-expressions">API
|
|||
|
|
* Key Selection Expressions</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetApiKeySelectionExpression(const char* value) { m_apiKeySelectionExpression.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An API key selection expression. Supported only for WebSocket APIs. See <a
|
|||
|
|
* href="https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-apikey-selection-expressions">API
|
|||
|
|
* Key Selection Expressions</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithApiKeySelectionExpression(const Aws::String& value) { SetApiKeySelectionExpression(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An API key selection expression. Supported only for WebSocket APIs. See <a
|
|||
|
|
* href="https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-apikey-selection-expressions">API
|
|||
|
|
* Key Selection Expressions</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithApiKeySelectionExpression(Aws::String&& value) { SetApiKeySelectionExpression(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An API key selection expression. Supported only for WebSocket APIs. See <a
|
|||
|
|
* href="https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-apikey-selection-expressions">API
|
|||
|
|
* Key Selection Expressions</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithApiKeySelectionExpression(const char* value) { SetApiKeySelectionExpression(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A CORS configuration. Supported only for HTTP APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Cors& GetCorsConfiguration() const{ return m_corsConfiguration; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A CORS configuration. Supported only for HTTP APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCorsConfiguration(const Cors& value) { m_corsConfiguration = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A CORS configuration. Supported only for HTTP APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCorsConfiguration(Cors&& value) { m_corsConfiguration = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A CORS configuration. Supported only for HTTP APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithCorsConfiguration(const Cors& value) { SetCorsConfiguration(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A CORS configuration. Supported only for HTTP APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithCorsConfiguration(Cors&& value) { SetCorsConfiguration(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The timestamp when the API was created.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Utils::DateTime& GetCreatedDate() const{ return m_createdDate; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The timestamp when the API was created.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCreatedDate(const Aws::Utils::DateTime& value) { m_createdDate = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The timestamp when the API was created.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCreatedDate(Aws::Utils::DateTime&& value) { m_createdDate = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The timestamp when the API was created.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithCreatedDate(const Aws::Utils::DateTime& value) { SetCreatedDate(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The timestamp when the API was created.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithCreatedDate(Aws::Utils::DateTime&& value) { SetCreatedDate(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The description of the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetDescription() const{ return m_description; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The description of the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDescription(const Aws::String& value) { m_description = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The description of the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDescription(Aws::String&& value) { m_description = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The description of the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDescription(const char* value) { m_description.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The description of the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The description of the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The description of the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithDescription(const char* value) { SetDescription(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Avoid validating models when creating a deployment. Supported only for
|
|||
|
|
* WebSocket APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool GetDisableSchemaValidation() const{ return m_disableSchemaValidation; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Avoid validating models when creating a deployment. Supported only for
|
|||
|
|
* WebSocket APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDisableSchemaValidation(bool value) { m_disableSchemaValidation = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Avoid validating models when creating a deployment. Supported only for
|
|||
|
|
* WebSocket APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithDisableSchemaValidation(bool value) { SetDisableSchemaValidation(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The validation information during API import. This may include particular
|
|||
|
|
* properties of your OpenAPI definition which are ignored during import. Supported
|
|||
|
|
* only for HTTP APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<Aws::String>& GetImportInfo() const{ return m_importInfo; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The validation information during API import. This may include particular
|
|||
|
|
* properties of your OpenAPI definition which are ignored during import. Supported
|
|||
|
|
* only for HTTP APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetImportInfo(const Aws::Vector<Aws::String>& value) { m_importInfo = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The validation information during API import. This may include particular
|
|||
|
|
* properties of your OpenAPI definition which are ignored during import. Supported
|
|||
|
|
* only for HTTP APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetImportInfo(Aws::Vector<Aws::String>&& value) { m_importInfo = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The validation information during API import. This may include particular
|
|||
|
|
* properties of your OpenAPI definition which are ignored during import. Supported
|
|||
|
|
* only for HTTP APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithImportInfo(const Aws::Vector<Aws::String>& value) { SetImportInfo(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The validation information during API import. This may include particular
|
|||
|
|
* properties of your OpenAPI definition which are ignored during import. Supported
|
|||
|
|
* only for HTTP APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithImportInfo(Aws::Vector<Aws::String>&& value) { SetImportInfo(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The validation information during API import. This may include particular
|
|||
|
|
* properties of your OpenAPI definition which are ignored during import. Supported
|
|||
|
|
* only for HTTP APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& AddImportInfo(const Aws::String& value) { m_importInfo.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The validation information during API import. This may include particular
|
|||
|
|
* properties of your OpenAPI definition which are ignored during import. Supported
|
|||
|
|
* only for HTTP APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& AddImportInfo(Aws::String&& value) { m_importInfo.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The validation information during API import. This may include particular
|
|||
|
|
* properties of your OpenAPI definition which are ignored during import. Supported
|
|||
|
|
* only for HTTP APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& AddImportInfo(const char* value) { m_importInfo.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetName() const{ return m_name; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetName(const Aws::String& value) { m_name = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetName(Aws::String&& value) { m_name = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetName(const char* value) { m_name.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithName(const Aws::String& value) { SetName(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithName(const char* value) { SetName(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The API protocol.</p>
|
|||
|
|
*/
|
|||
|
|
inline const ProtocolType& GetProtocolType() const{ return m_protocolType; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The API protocol.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetProtocolType(const ProtocolType& value) { m_protocolType = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The API protocol.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetProtocolType(ProtocolType&& value) { m_protocolType = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The API protocol.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithProtocolType(const ProtocolType& value) { SetProtocolType(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The API protocol.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithProtocolType(ProtocolType&& value) { SetProtocolType(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The route selection expression for the API. For HTTP APIs, the
|
|||
|
|
* routeSelectionExpression must be ${request.method} ${request.path}. If not
|
|||
|
|
* provided, this will be the default for HTTP APIs. This property is required for
|
|||
|
|
* WebSocket APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetRouteSelectionExpression() const{ return m_routeSelectionExpression; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The route selection expression for the API. For HTTP APIs, the
|
|||
|
|
* routeSelectionExpression must be ${request.method} ${request.path}. If not
|
|||
|
|
* provided, this will be the default for HTTP APIs. This property is required for
|
|||
|
|
* WebSocket APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetRouteSelectionExpression(const Aws::String& value) { m_routeSelectionExpression = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The route selection expression for the API. For HTTP APIs, the
|
|||
|
|
* routeSelectionExpression must be ${request.method} ${request.path}. If not
|
|||
|
|
* provided, this will be the default for HTTP APIs. This property is required for
|
|||
|
|
* WebSocket APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetRouteSelectionExpression(Aws::String&& value) { m_routeSelectionExpression = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The route selection expression for the API. For HTTP APIs, the
|
|||
|
|
* routeSelectionExpression must be ${request.method} ${request.path}. If not
|
|||
|
|
* provided, this will be the default for HTTP APIs. This property is required for
|
|||
|
|
* WebSocket APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetRouteSelectionExpression(const char* value) { m_routeSelectionExpression.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The route selection expression for the API. For HTTP APIs, the
|
|||
|
|
* routeSelectionExpression must be ${request.method} ${request.path}. If not
|
|||
|
|
* provided, this will be the default for HTTP APIs. This property is required for
|
|||
|
|
* WebSocket APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithRouteSelectionExpression(const Aws::String& value) { SetRouteSelectionExpression(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The route selection expression for the API. For HTTP APIs, the
|
|||
|
|
* routeSelectionExpression must be ${request.method} ${request.path}. If not
|
|||
|
|
* provided, this will be the default for HTTP APIs. This property is required for
|
|||
|
|
* WebSocket APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithRouteSelectionExpression(Aws::String&& value) { SetRouteSelectionExpression(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The route selection expression for the API. For HTTP APIs, the
|
|||
|
|
* routeSelectionExpression must be ${request.method} ${request.path}. If not
|
|||
|
|
* provided, this will be the default for HTTP APIs. This property is required for
|
|||
|
|
* WebSocket APIs.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithRouteSelectionExpression(const char* value) { SetRouteSelectionExpression(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A collection of tags associated with the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A collection of tags associated with the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tags = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A collection of tags associated with the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tags = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A collection of tags associated with the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithTags(const Aws::Map<Aws::String, Aws::String>& value) { SetTags(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A collection of tags associated with the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A collection of tags associated with the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A collection of tags associated with the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A collection of tags associated with the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A collection of tags associated with the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A collection of tags associated with the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A collection of tags associated with the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A collection of tags associated with the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A version identifier for the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetVersion() const{ return m_version; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A version identifier for the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVersion(const Aws::String& value) { m_version = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A version identifier for the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVersion(Aws::String&& value) { m_version = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A version identifier for the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVersion(const char* value) { m_version.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A version identifier for the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithVersion(const Aws::String& value) { SetVersion(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A version identifier for the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A version identifier for the API.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithVersion(const char* value) { SetVersion(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The warning messages reported when failonwarnings is turned on during API
|
|||
|
|
* import.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<Aws::String>& GetWarnings() const{ return m_warnings; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The warning messages reported when failonwarnings is turned on during API
|
|||
|
|
* import.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetWarnings(const Aws::Vector<Aws::String>& value) { m_warnings = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The warning messages reported when failonwarnings is turned on during API
|
|||
|
|
* import.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetWarnings(Aws::Vector<Aws::String>&& value) { m_warnings = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The warning messages reported when failonwarnings is turned on during API
|
|||
|
|
* import.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithWarnings(const Aws::Vector<Aws::String>& value) { SetWarnings(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The warning messages reported when failonwarnings is turned on during API
|
|||
|
|
* import.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& WithWarnings(Aws::Vector<Aws::String>&& value) { SetWarnings(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The warning messages reported when failonwarnings is turned on during API
|
|||
|
|
* import.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& AddWarnings(const Aws::String& value) { m_warnings.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The warning messages reported when failonwarnings is turned on during API
|
|||
|
|
* import.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& AddWarnings(Aws::String&& value) { m_warnings.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The warning messages reported when failonwarnings is turned on during API
|
|||
|
|
* import.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateApiResult& AddWarnings(const char* value) { m_warnings.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_apiEndpoint;
|
|||
|
|
|
|||
|
|
bool m_apiGatewayManaged;
|
|||
|
|
|
|||
|
|
Aws::String m_apiId;
|
|||
|
|
|
|||
|
|
Aws::String m_apiKeySelectionExpression;
|
|||
|
|
|
|||
|
|
Cors m_corsConfiguration;
|
|||
|
|
|
|||
|
|
Aws::Utils::DateTime m_createdDate;
|
|||
|
|
|
|||
|
|
Aws::String m_description;
|
|||
|
|
|
|||
|
|
bool m_disableSchemaValidation;
|
|||
|
|
|
|||
|
|
Aws::Vector<Aws::String> m_importInfo;
|
|||
|
|
|
|||
|
|
Aws::String m_name;
|
|||
|
|
|
|||
|
|
ProtocolType m_protocolType;
|
|||
|
|
|
|||
|
|
Aws::String m_routeSelectionExpression;
|
|||
|
|
|
|||
|
|
Aws::Map<Aws::String, Aws::String> m_tags;
|
|||
|
|
|
|||
|
|
Aws::String m_version;
|
|||
|
|
|
|||
|
|
Aws::Vector<Aws::String> m_warnings;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ApiGatewayV2
|
|||
|
|
} // namespace Aws
|