[ aws . ssm ]

get-maintenance-window-execution-task

Description

Retrieves the details about a specific task run as part of a maintenance window execution.

See also: AWS API Documentation

See ‘aws help’ for descriptions of global parameters.

Synopsis

  get-maintenance-window-execution-task
--window-execution-id <value>
--task-id <value>
[--cli-input-json | --cli-input-yaml]
[--generate-cli-skeleton <value>]
[--cli-auto-prompt <value>]

Options

--window-execution-id (string)

The ID of the maintenance window execution that includes the task.

--task-id (string)

The ID of the specific task execution in the maintenance window task that should be retrieved.

--cli-input-json | --cli-input-yaml (string) Reads arguments from the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton. If other arguments are provided on the command line, those values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally. This may not be specified along with --cli-input-yaml.

--generate-cli-skeleton (string) Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value input, prints a sample input JSON that can be used as an argument for --cli-input-json. Similarly, if provided yaml-input it will print a sample input YAML that can be used with --cli-input-yaml. If provided with the value output, it validates the command inputs and returns a sample output JSON for that command.

--cli-auto-prompt (boolean) Automatically prompt for CLI input parameters.

See ‘aws help’ for descriptions of global parameters.

Examples

To get information about a maintenance window task execution

The following get-maintenance-window-execution-task example lists information about a task that is part of the specified maintenance window execution.

aws ssm get-maintenance-window-execution-task \
    --window-execution-id "518d5565-5969-4cca-8f0e-da3b2EXAMPLE" \
    --task-id "ac0c6ae1-daa3-4a89-832e-d3845EXAMPLE"

Output:

{
    "Status": "SUCCESS",
    "MaxErrors": "1",
    "TaskArn": "AWS-RunShellScript",
    "MaxConcurrency": "1",
    "ServiceRole": "arn:aws:iam::111222333444:role/MaintenanceWindowsRole",
    "WindowExecutionId": "518d5565-5969-4cca-8f0e-da3b2EXAMPLE",
    "Priority": 10,
    "StartTime": 1487692834.684,
    "EndTime": 1487692835.005,
    "Type": "RUN_COMMAND",
    "TaskParameters": [
        {
            "commands": {
                "Values": [
                    "df"
                ]
            },
            "aws:InstanceId": {
                "Values": [
                    "i-0000293ffdEXAMPLE"
                ]
            }
        }
    ],
    "TaskExecutionId": "ac0c6ae1-daa3-4a89-832e-d3845EXAMPLE"
}

For more information, see View Information About Tasks and Task Executions (AWS CLI) in the AWS Systems Manager User Guide.

Output

WindowExecutionId -> (string)

The ID of the maintenance window execution that includes the task.

TaskExecutionId -> (string)

The ID of the specific task execution in the maintenance window task that was retrieved.

TaskArn -> (string)

The ARN of the task that ran.

ServiceRole -> (string)

The role that was assumed when running the task.

Type -> (string)

The type of task that was run.

TaskParameters -> (list)

The parameters passed to the task when it was run.

Note

TaskParameters has been deprecated. To specify parameters to pass to a task when it runs, instead use the Parameters option in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters .

The map has the following format:

Key: string, between 1 and 255 characters

Value: an array of strings, each string is between 1 and 255 characters

(map)

key -> (string)

value -> (structure)

Defines the values for a task parameter.

Values -> (list)

This field contains an array of 0 or more strings, each 1 to 255 characters in length.

(string)

Priority -> (integer)

The priority of the task.

MaxConcurrency -> (string)

The defined maximum number of task executions that could be run in parallel.

MaxErrors -> (string)

The defined maximum number of task execution errors allowed before scheduling of the task execution would have been stopped.

Status -> (string)

The status of the task.

StatusDetails -> (string)

The details explaining the Status. Only available for certain status values.

StartTime -> (timestamp)

The time the task execution started.

EndTime -> (timestamp)

The time the task execution completed.