Class: Aws::CodeDeploy::Types::StopDeploymentInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::StopDeploymentInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Represents the input of a ‘StopDeployment` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_rollback_enabled ⇒ Boolean
Indicates, when a deployment is stopped, whether instances that have been updated should be rolled back to the previous version of the application revision.
-
#deployment_id ⇒ String
The unique ID of a deployment.
Instance Attribute Details
#auto_rollback_enabled ⇒ Boolean
Indicates, when a deployment is stopped, whether instances that have been updated should be rolled back to the previous version of the application revision.
4562 4563 4564 4565 4566 4567 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4562 class StopDeploymentInput < Struct.new( :deployment_id, :auto_rollback_enabled) SENSITIVE = [] include Aws::Structure end |
#deployment_id ⇒ String
The unique ID of a deployment.
4562 4563 4564 4565 4566 4567 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4562 class StopDeploymentInput < Struct.new( :deployment_id, :auto_rollback_enabled) SENSITIVE = [] include Aws::Structure end |