Class: Aws::SSM::Types::GetCommandInvocationRequest

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

Overview

Note:

When making an API call, you may pass GetCommandInvocationRequest data as a hash:

{
  command_id: "CommandId", # required
  instance_id: "InstanceId", # required
  plugin_name: "CommandPluginName",
}

Instance Attribute Summary collapse

Instance Attribute Details

#command_idString

(Required) The parent command ID of the invocation plugin.

Returns:

  • (String)


5618
5619
5620
5621
5622
5623
# File 'lib/aws-sdk-ssm/types.rb', line 5618

class GetCommandInvocationRequest < Struct.new(
  :command_id,
  :instance_id,
  :plugin_name)
  include Aws::Structure
end

#instance_idString

(Required) The ID of the managed instance targeted by the command. A managed instance can be an Amazon EC2 instance or an instance in your hybrid environment that is configured for Systems Manager.

Returns:

  • (String)


5618
5619
5620
5621
5622
5623
# File 'lib/aws-sdk-ssm/types.rb', line 5618

class GetCommandInvocationRequest < Struct.new(
  :command_id,
  :instance_id,
  :plugin_name)
  include Aws::Structure
end

#plugin_nameString

(Optional) The name of the plugin for which you want detailed results. If the document contains only one plugin, the name can be omitted and the details will be returned.

Returns:

  • (String)


5618
5619
5620
5621
5622
5623
# File 'lib/aws-sdk-ssm/types.rb', line 5618

class GetCommandInvocationRequest < Struct.new(
  :command_id,
  :instance_id,
  :plugin_name)
  include Aws::Structure
end