Class: Aws::CodeDeploy::Types::StopDeploymentOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::StopDeploymentOutput
- Includes:
- Structure
- Defined in:
- 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.
5218 5219 5220 5221 5222 5223 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5218 class StopDeploymentOutput < Struct.new( :status, :status_message) SENSITIVE = [] include Aws::Structure end |
#status_message ⇒ String
An accompanying status message.
5218 5219 5220 5221 5222 5223 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5218 class StopDeploymentOutput < Struct.new( :status, :status_message) SENSITIVE = [] include Aws::Structure end |