Get Maintenance Window Execution Task Invocation
| ssm_get_maintenance_window_execution_task_invocation | R Documentation | 
Retrieves information about a specific task running on a specific target¶
Description¶
Retrieves information about a specific task running on a specific target.
Usage¶
ssm_get_maintenance_window_execution_task_invocation(WindowExecutionId,
  TaskId, InvocationId)
Arguments¶
| WindowExecutionId | [required] The ID of the maintenance window execution for which the task is a part. | 
| TaskId | [required] The ID of the specific task in the maintenance window task that should be retrieved. | 
| InvocationId | [required] The invocation ID to retrieve. | 
Value¶
A list with the following syntax:
list(
  WindowExecutionId = "string",
  TaskExecutionId = "string",
  InvocationId = "string",
  ExecutionId = "string",
  TaskType = "RUN_COMMAND"|"AUTOMATION"|"STEP_FUNCTIONS"|"LAMBDA",
  Parameters = "string",
  Status = "PENDING"|"IN_PROGRESS"|"SUCCESS"|"FAILED"|"TIMED_OUT"|"CANCELLING"|"CANCELLED"|"SKIPPED_OVERLAPPING",
  StatusDetails = "string",
  StartTime = as.POSIXct(
    "2015-01-01"
  ),
  EndTime = as.POSIXct(
    "2015-01-01"
  ),
  OwnerInformation = "string",
  WindowTargetId = "string"
)
Request syntax¶
svc$get_maintenance_window_execution_task_invocation(
  WindowExecutionId = "string",
  TaskId = "string",
  InvocationId = "string"
)