Class: Aws::SSM::Types::ListCommandsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::ListCommandsRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#command_id ⇒ String
(Optional) If provided, lists only the specified command.
-
#filters ⇒ Array<Types::CommandFilter>
(Optional) One or more filters.
-
#instance_id ⇒ String
(Optional) Lists commands issued against this managed node ID.
-
#max_results ⇒ Integer
(Optional) The maximum number of items to return for this call.
-
#next_token ⇒ String
(Optional) The token for the next set of items to return.
Instance Attribute Details
#command_id ⇒ String
(Optional) If provided, lists only the specified command.
11415 11416 11417 11418 11419 11420 11421 11422 11423 |
# File 'lib/aws-sdk-ssm/types.rb', line 11415 class ListCommandsRequest < Struct.new( :command_id, :instance_id, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#filters ⇒ Array<Types::CommandFilter>
(Optional) One or more filters. Use a filter to return a more specific list of results.
11415 11416 11417 11418 11419 11420 11421 11422 11423 |
# File 'lib/aws-sdk-ssm/types.rb', line 11415 class ListCommandsRequest < Struct.new( :command_id, :instance_id, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#instance_id ⇒ String
(Optional) Lists commands issued against this managed node ID.
<note markdown=“1”> You can’t specify a managed node ID in the same command that you specify ‘Status` = `Pending`. This is because the command hasn’t reached the managed node yet.
</note>
11415 11416 11417 11418 11419 11420 11421 11422 11423 |
# File 'lib/aws-sdk-ssm/types.rb', line 11415 class ListCommandsRequest < Struct.new( :command_id, :instance_id, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
(Optional) The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
11415 11416 11417 11418 11419 11420 11421 11422 11423 |
# File 'lib/aws-sdk-ssm/types.rb', line 11415 class ListCommandsRequest < Struct.new( :command_id, :instance_id, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
(Optional) The token for the next set of items to return. (You received this token from a previous call.)
11415 11416 11417 11418 11419 11420 11421 11422 11423 |
# File 'lib/aws-sdk-ssm/types.rb', line 11415 class ListCommandsRequest < Struct.new( :command_id, :instance_id, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |