Class: Aws::APIGateway::Types::EndpointConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::EndpointConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass EndpointConfiguration data as a hash:
{
types: ["REGIONAL"], # accepts REGIONAL, EDGE
}
The endpoint configuration to indicate the types of endpoints an API (RestApi) or its custom domain name (DomainName) has.
Instance Attribute Summary collapse
-
#types ⇒ Array<String>
A list of endpoint types of an API (RestApi) or its custom domain name (DomainName).
Instance Attribute Details
permalink #types ⇒ Array<String>
A list of endpoint types of an API (RestApi) or its custom domain name (DomainName). For an edge-optimized API and its custom domain name, the endpoint type is ‘“EDGE”`. For a regional API and its custom domain name, the endpoint type is `REGIONAL`.
2477 2478 2479 2480 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2477 class EndpointConfiguration < Struct.new( :types) include Aws::Structure end |