aws.ssm.get_command_invocation
Example SQL Queries
SELECT * FROMaws.ssm.get_command_invocationWHERE"command_id" = 'VALUE'AND "instance_id" = 'VALUE';Description
Returns detailed information about command execution for an invocation or plugin. The Run Command API follows an eventual consistency model, due to the distributed nature of the system supporting the API. This means that the result of an API command you run that affects your resources might not be immediately visible to all subsequent commands you run. You should keep this in mind when you carry out an API command that immediately follows a previous API command.
GetCommandInvocation only gives the execution status of a plugin in a document. To get the command execution status on a specific managed node, use ListCommandInvocations. To get the command execution status across managed nodes, use ListCommands.
Table Definition
| Column Name | Column Data Type |
|---|---|
| command_id Required Input Column The parent command ID of the invocation plugin. | VARCHAR |
| instance_id Required Input Column The ID of the managed node targeted by the command. A managed node can be an Amazon Elastic Compute Cloud (Amazon EC2) instance, edge device, or on-premises server or VM in your hybrid environment that is configured for Amazon Web Services Systems Manager. | VARCHAR |
| plugin_name Input Column The name of the plugin, or step name, for which details are reported. For example, aws:RunShellScript is a plugin. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| cloud_watch_output_config Amazon CloudWatch Logs information where Systems Manager sent the command output. | STRUCT( |
Show child fields
| |
| comment The comment text for the command. | VARCHAR |
| document_name The name of the document that was run. For example, AWS-RunShellScript. | VARCHAR |
| document_version The Systems Manager document (SSM document) version used in the request. | VARCHAR |
| execution_elapsed_time Duration since ExecutionStartDateTime. | VARCHAR |
| execution_end_date_time The date and time the plugin finished running. Date and time are written in ISO 8601 format. For example, June 7, 2017 is represented as 2017-06-7. The following sample Amazon Web Services CLI command uses the InvokedAfter filter. aws ssm list-commands --filters key=InvokedAfter,value=2017-06-07T00:00:00Z If the plugin hasn't started to run, the string is empty. | VARCHAR |
| execution_start_date_time The date and time the plugin started running. Date and time are written in ISO 8601 format. For example, June 7, 2017 is represented as 2017-06-7. The following sample Amazon Web Services CLI command uses the InvokedBefore filter. aws ssm list-commands --filters key=InvokedBefore,value=2017-06-07T00:00:00Z If the plugin hasn't started to run, the string is empty. | VARCHAR |
| response_code The error level response code for the plugin script. If the response code is -1, then the command hasn't started running on the managed node, or it wasn't received by the node. | BIGINT |
| standard_error_content The first 8,000 characters written by the plugin to stderr. If the command hasn't finished running, then this string is empty. | VARCHAR |
| standard_error_url The URL for the complete text written by the plugin to stderr. If the command hasn't finished running, then this string is empty. | VARCHAR |
| standard_output_content The first 24,000 characters written by the plugin to stdout. If the command hasn't finished running, if ExecutionStatus is neither Succeeded nor Failed, then this string is empty. | VARCHAR |
| standard_output_url The URL for the complete text written by the plugin to stdout in Amazon Simple Storage Service (Amazon S3). If an S3 bucket wasn't specified, then this string is empty. | VARCHAR |
| status The status of this invocation plugin. This status can be different than StatusDetails. | VARCHAR |
| status_details A detailed status of the command execution for an invocation. StatusDetails includes more information than Status because it includes states resulting from error and concurrency control parameters. StatusDetails can show different results than Status. For more information about these statuses, see Understanding command statuses in the Amazon Web Services Systems Manager User Guide. StatusDetails can be one of the following values:
| VARCHAR |