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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apigatewayv2/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)


1091
1092
1093
1094
1095
1096
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 1091

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

#stage_nameString

The name of the Stage resource for the Deployment resource to create.

Returns:

  • (String)


1091
1092
1093
1094
1095
1096
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 1091

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