Class: Aws::APIGateway::Types::GetStageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetStageRequest
- 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
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
-
#stage_name ⇒ String
The name of the Stage resource to get information about.
Instance Attribute Details
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
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_name ⇒ String
The name of the Stage resource to get information about.
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 |