Class: Aws::APIGateway::Types::BasePathMapping

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

Overview

Represents the base path that callers of the API must provide as part of the URL after the domain name.

<div class=“remarks” markdown=“1”> A custom domain name plus a ‘BasePathMapping` specification identifies a deployed RestApi in a given stage of the owner Account. </div>

<div class=“seeAlso” markdown=“1”>

Use Custom Domain Names][1

</div>

[1]: docs.aws.amazon.com/apigateway/latest/developerguide/how-to-custom-domains.html

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.


454
455
456
457
458
459
460
# File 'lib/aws-sdk-apigateway/types.rb', line 454

class BasePathMapping < Struct.new(
  :base_path,
  :rest_api_id,
  :stage)
  SENSITIVE = []
  include Aws::Structure
end

#rest_api_idString

The string identifier of the associated RestApi.


454
455
456
457
458
459
460
# File 'lib/aws-sdk-apigateway/types.rb', line 454

class BasePathMapping < Struct.new(
  :base_path,
  :rest_api_id,
  :stage)
  SENSITIVE = []
  include Aws::Structure
end

#stageString

The name of the associated stage.


454
455
456
457
458
459
460
# File 'lib/aws-sdk-apigateway/types.rb', line 454

class BasePathMapping < Struct.new(
  :base_path,
  :rest_api_id,
  :stage)
  SENSITIVE = []
  include Aws::Structure
end