Method: Aws::APIGateway::Types::CreateBasePathMappingRequest#base_path

Defined in:
lib/aws-sdk-apigateway/types.rb

#base_pathString

The base path name that callers of the API must provide as part of the URL after the domain name. This value must be unique for all of the mappings across a single API. Leave this blank if you do not want callers to specify a base path name after the domain name.

Returns:

  • (String)


768
769
770
771
772
773
774
# File 'lib/aws-sdk-apigateway/types.rb', line 768

class CreateBasePathMappingRequest < Struct.new(
  :domain_name,
  :base_path,
  :rest_api_id,
  :stage)
  include Aws::Structure
end