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)


5042
5043
5044
5045
5046
5047
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 5042

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)


5042
5043
5044
5045
5046
5047
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 5042

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