[ aws . iot ]

list-audit-mitigation-actions-executions

Description

Gets the status of audit mitigation action tasks that were executed.

See also: AWS API Documentation

See ‘aws help’ for descriptions of global parameters.

Synopsis

  list-audit-mitigation-actions-executions
--task-id <value>
[--action-status <value>]
--finding-id <value>
[--max-results <value>]
[--next-token <value>]
[--cli-input-json | --cli-input-yaml]
[--generate-cli-skeleton <value>]
[--cli-auto-prompt <value>]

Options

--task-id (string)

Specify this filter to limit results to actions for a specific audit mitigation actions task.

--action-status (string)

Specify this filter to limit results to those with a specific status.

Possible values:

  • IN_PROGRESS

  • COMPLETED

  • FAILED

  • CANCELED

  • SKIPPED

  • PENDING

--finding-id (string)

Specify this filter to limit results to those that were applied to a specific audit finding.

--max-results (integer)

The maximum number of results to return at one time. The default is 25.

--next-token (string)

The token for the next set of results.

--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 list the details of an audit mitigation action execution

An audit mitigation action task applies a mitigation action to one or more findings from an AWS IoT Device Defender audit. The following list-audit-mitigation-actions-executions example lists the details for the mitigation action task with the specified taskId and for the specified finding.

aws iot list-audit-mitigation-actions-executions \
    --task-id myActionsTaskId \
    --finding-id 0edbaaec-2fe1-4cf5-abc9-d4c3e51f7464

Output:

{
    "actionsExecutions": [
        {
            "taskId": "myActionsTaskId",
            "findingId": "0edbaaec-2fe1-4cf5-abc9-d4c3e51f7464",
            "actionName": "ResetPolicyVersionAction",
            "actionId": "1ea0b415-bef1-4a01-bd13-72fb63c59afb",
            "status": "COMPLETED",
            "startTime": "2019-12-10T15:19:13.279000-08:00",
            "endTime": "2019-12-10T15:19:13.337000-08:00"
        }
    ]
}

For more information, see ListAuditMitigationActionsExecutions (Mitigation Action Commands) in the AWS IoT Developer Guide.

Output

actionsExecutions -> (list)

A set of task execution results based on the input parameters. Details include the mitigation action applied, start time, and task status.

(structure)

Returned by ListAuditMitigationActionsTask, this object contains information that describes a mitigation action that has been started.

taskId -> (string)

The unique identifier for the task that applies the mitigation action.

findingId -> (string)

The unique identifier for the findings to which the task and associated mitigation action are applied.

actionName -> (string)

The friendly name of the mitigation action being applied by the task.

actionId -> (string)

The unique identifier for the mitigation action being applied by the task.

status -> (string)

The current status of the task being executed.

startTime -> (timestamp)

The date and time when the task was started.

endTime -> (timestamp)

The date and time when the task was completed or canceled. Blank if the task is still running.

errorCode -> (string)

If an error occurred, the code that indicates which type of error occurred.

message -> (string)

If an error occurred, a message that describes the error.

nextToken -> (string)

The token for the next set of results.