Class: Aws::CodeDeploy::Types::StopDeploymentOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::StopDeploymentOutput
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
Represents the output of a StopDeployment
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
The status of the stop deployment operation:.
-
#status_message ⇒ String
An accompanying status message.
Instance Attribute Details
#status ⇒ String
The status of the stop deployment operation:
Pending: The stop operation is pending.
Succeeded: The stop operation was successful.
5271 5272 5273 5274 5275 5276 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 5271 class StopDeploymentOutput < Struct.new( :status, :status_message) SENSITIVE = [] include Aws::Structure end |
#status_message ⇒ String
An accompanying status message.
5271 5272 5273 5274 5275 5276 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 5271 class StopDeploymentOutput < Struct.new( :status, :status_message) SENSITIVE = [] include Aws::Structure end |