Class: Aws::CodeDeploy::Types::StopDeploymentOutput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#statusString

The status of the stop deployment operation:

  • Pending: The stop operation is pending.

  • Succeeded: The stop operation was successful.

Returns:

  • (String)


4585
4586
4587
4588
4589
4590
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4585

class StopDeploymentOutput < Struct.new(
  :status,
  :status_message)
  SENSITIVE = []
  include Aws::Structure
end

#status_messageString

An accompanying status message.

Returns:

  • (String)


4585
4586
4587
4588
4589
4590
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4585

class StopDeploymentOutput < Struct.new(
  :status,
  :status_message)
  SENSITIVE = []
  include Aws::Structure
end