Class: Aws::APIGateway::Types::GetStageRequest

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

Overview

Requests API Gateway to get information about a Stage resource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#rest_api_idString

The string identifier of the associated RestApi.

Returns:

  • (String)


2956
2957
2958
2959
2960
2961
# File 'lib/aws-sdk-apigateway/types.rb', line 2956

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

#stage_nameString

The name of the Stage resource to get information about.

Returns:

  • (String)


2956
2957
2958
2959
2960
2961
# File 'lib/aws-sdk-apigateway/types.rb', line 2956

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