Class: Aws::APIGateway::Types::GetStagesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetStagesRequest
- Defined in:
- gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetStagesRequest data as a hash:
{
rest_api_id: "String", # required
deployment_id: "String",
}
Requests API Gateway to get information about one or more Stage resources.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_id ⇒ String
The stages' deployment identifiers.
-
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
Instance Attribute Details
#deployment_id ⇒ String
The stages' deployment identifiers.
4182 4183 4184 4185 4186 4187 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 4182 class GetStagesRequest < Struct.new( :rest_api_id, :deployment_id) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
4182 4183 4184 4185 4186 4187 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 4182 class GetStagesRequest < Struct.new( :rest_api_id, :deployment_id) SENSITIVE = [] include Aws::Structure end |