Class: Aws::ApiGatewayV2::Types::CreateDeploymentInput

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

Overview

Represents the input parameters for a CreateDeployment request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description for the deployment resource.

Returns:

  • (String)


1204
1205
1206
1207
1208
1209
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 1204

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

#stage_nameString

The name of an existing stage to associate with the deployment.

Returns:

  • (String)


1204
1205
1206
1207
1208
1209
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 1204

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