Class: Aws::ApiGatewayV2::Types::CreateDeploymentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApiGatewayV2::Types::CreateDeploymentRequest
- Defined in:
- gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb
Overview
Note:
When making an API call, you may pass CreateDeploymentRequest data as a hash:
{
api_id: "__string", # required
description: "StringWithLengthBetween0And1024",
stage_name: "StringWithLengthBetween1And128",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#api_id ⇒ String
-
#description ⇒ String
A string with a length between [0-1024].
-
#stage_name ⇒ String
A string with a length between [1-128].
Instance Attribute Details
#api_id ⇒ String
1196 1197 1198 1199 1200 1201 1202 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 1196 class CreateDeploymentRequest < Struct.new( :api_id, :description, :stage_name) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A string with a length between [0-1024].
1196 1197 1198 1199 1200 1201 1202 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 1196 class CreateDeploymentRequest < Struct.new( :api_id, :description, :stage_name) SENSITIVE = [] include Aws::Structure end |
#stage_name ⇒ String
A string with a length between [1-128].
1196 1197 1198 1199 1200 1201 1202 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 1196 class CreateDeploymentRequest < Struct.new( :api_id, :description, :stage_name) SENSITIVE = [] include Aws::Structure end |