Class: Aws::APIGateway::Types::EndpointConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#typesArray<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`.

Returns:

  • (Array<String>)

2477
2478
2479
2480
# File 'lib/aws-sdk-apigateway/types.rb', line 2477

class EndpointConfiguration < Struct.new(
  :types)
  include Aws::Structure
end