Class: Aws::CodeDeploy::Types::RollbackInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::RollbackInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Information about a deployment rollback.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rollback_deployment_id ⇒ String
The ID of the deployment rollback.
-
#rollback_message ⇒ String
Information that describes the status of a deployment rollback (for example, whether the deployment can’t be rolled back, is in progress, failed, or succeeded).
-
#rollback_triggering_deployment_id ⇒ String
The deployment ID of the deployment that was underway and triggered a rollback deployment because it failed or was stopped.
Instance Attribute Details
#rollback_deployment_id ⇒ String
The ID of the deployment rollback.
4471 4472 4473 4474 4475 4476 4477 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4471 class RollbackInfo < Struct.new( :rollback_deployment_id, :rollback_triggering_deployment_id, :rollback_message) SENSITIVE = [] include Aws::Structure end |
#rollback_message ⇒ String
Information that describes the status of a deployment rollback (for example, whether the deployment can’t be rolled back, is in progress, failed, or succeeded).
4471 4472 4473 4474 4475 4476 4477 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4471 class RollbackInfo < Struct.new( :rollback_deployment_id, :rollback_triggering_deployment_id, :rollback_message) SENSITIVE = [] include Aws::Structure end |
#rollback_triggering_deployment_id ⇒ String
The deployment ID of the deployment that was underway and triggered a rollback deployment because it failed or was stopped.
4471 4472 4473 4474 4475 4476 4477 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4471 class RollbackInfo < Struct.new( :rollback_deployment_id, :rollback_triggering_deployment_id, :rollback_message) SENSITIVE = [] include Aws::Structure end |