Method: Aws::APIGateway::Types::RestApi#disable_execute_api_endpoint
- Defined in:
- lib/aws-sdk-apigateway/types.rb
permalink #disable_execute_api_endpoint ⇒ Boolean
Specifies whether clients can invoke your API by using the default ‘execute-api` endpoint. By default, clients can invoke your API with the default https://{api_id\}.execute-api.{region\}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke your API, disable the default endpoint.
6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 |
# File 'lib/aws-sdk-apigateway/types.rb', line 6490 class RestApi < Struct.new( :id, :name, :description, :created_date, :version, :warnings, :binary_media_types, :minimum_compression_size, :api_key_source, :endpoint_configuration, :policy, :tags, :disable_execute_api_endpoint) SENSITIVE = [] include Aws::Structure end |