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.

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.

Returns:

  • (String)


344
345
346
347
348
349
350
# File 'lib/aws-sdk-apigateway/types.rb', line 344

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.

Returns:

  • (String)


344
345
346
347
348
349
350
# File 'lib/aws-sdk-apigateway/types.rb', line 344

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

#stageString

The name of the associated stage.

Returns:

  • (String)


344
345
346
347
348
349
350
# File 'lib/aws-sdk-apigateway/types.rb', line 344

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