Class: Aws::SSM::Types::CancelCommandRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#command_idString

The ID of the command you want to cancel.

Returns:

  • (String)


1746
1747
1748
1749
1750
1751
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 1746

class CancelCommandRequest < Struct.new(
  :command_id,
  :instance_ids)
  SENSITIVE = []
  include Aws::Structure
end

#instance_idsArray<String>

(Optional) A list of managed node IDs on which you want to cancel the command. If not provided, the command is canceled on every node on which it was requested.

Returns:

  • (Array<String>)


1746
1747
1748
1749
1750
1751
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 1746

class CancelCommandRequest < Struct.new(
  :command_id,
  :instance_ids)
  SENSITIVE = []
  include Aws::Structure
end