Class: Aws::APIGateway::Types::StageKey

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

Overview

A reference to a unique stage identified in the format \{restApiId\}/\{stage\}.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#rest_api_idString

The string identifier of the associated RestApi.

Returns:

  • (String)


4842
4843
4844
4845
4846
4847
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 4842

class StageKey < Struct.new(
  :rest_api_id,
  :stage_name)
  SENSITIVE = []
  include Aws::Structure
end

#stage_nameString

The stage name associated with the stage key.

Returns:

  • (String)


4842
4843
4844
4845
4846
4847
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 4842

class StageKey < Struct.new(
  :rest_api_id,
  :stage_name)
  SENSITIVE = []
  include Aws::Structure
end