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

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

Overview

Note:

When making an API call, you may pass GetStageRequest data as a hash:

{
  rest_api_id: "String", # required
  stage_name: "String", # required
}

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)

3768
3769
3770
3771
3772
3773
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 3768

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)

3768
3769
3770
3771
3772
3773
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 3768

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