paws.management (version 0.1.0)

ssm_list_command_invocations: An invocation is copy of a command sent to a specific instance

Description

An invocation is copy of a command sent to a specific instance. A command can apply to one or more instances. A command invocation applies to one instance. For example, if a user executes SendCommand against three instances, then a command invocation is created for each requested instance ID. ListCommandInvocations provide status about command execution.

Usage

ssm_list_command_invocations(CommandId, InstanceId, MaxResults,
  NextToken, Filters, Details)

Arguments

CommandId

(Optional) The invocations for a specific command ID.

InstanceId

(Optional) The command execution details for a specific instance ID.

MaxResults

(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.

NextToken

(Optional) The token for the next set of items to return. (You received this token from a previous call.)

Filters

(Optional) One or more filters. Use a filter to return a more specific list of results.

Details

(Optional) If set this returns the response of the command executions and any command output. By default this is set to False.

Request syntax

svc$list_command_invocations(
  CommandId = "string",
  InstanceId = "string",
  MaxResults = 123,
  NextToken = "string",
  Filters = list(
    list(
      key = "InvokedAfter"|"InvokedBefore"|"Status"|"ExecutionStage"|"DocumentName",
      value = "string"
    )
  ),
  Details = TRUE|FALSE
)