Class: Aws::APIGateway::Types::GetBasePathMappingRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb

Overview

Request to describe a BasePathMapping resource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#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. Specify '(none)' if you do not want callers to specify any base path name after the domain name.

Returns:

  • (String)


2239
2240
2241
2242
2243
2244
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2239

class GetBasePathMappingRequest < Struct.new(
  :domain_name,
  :base_path)
  SENSITIVE = []
  include Aws::Structure
end

#domain_nameString

The domain name of the BasePathMapping resource to be described.

Returns:

  • (String)


2239
2240
2241
2242
2243
2244
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2239

class GetBasePathMappingRequest < Struct.new(
  :domain_name,
  :base_path)
  SENSITIVE = []
  include Aws::Structure
end