association_execution_targets
Creates, updates, deletes, gets or lists an association_execution_targets resource.
Overview
| Name | association_execution_targets |
| Type | Resource |
| Id | aws.ssm.association_execution_targets |
Fields
The following fields are returned by SELECT queries:
- describe_association_execution_targets
| Name | Datatype | Description |
|---|---|---|
association_id | string | The association ID. (pattern: <code>[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}</code>) |
association_version | string | The association version. (pattern: <code>([$]LATEST)|([1-9][0-9]*)</code>) |
detailed_status | string | Detailed information about the execution status. |
execution_id | string | The execution ID. (pattern: <code>[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}</code>) |
last_execution_date | string (date-time) | The date of the last execution. |
output_source | object | The location where the association details are saved. |
resource_id | string | The resource ID, for example, the managed node ID where the association ran. |
resource_type | string | The resource type, for example, EC2. |
status | string | The association execution status. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_association_execution_targets | select | region | Views information about a specific execution of a specific association. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_association_execution_targets
Views information about a specific execution of a specific association.
SELECT
association_id,
association_version,
detailed_status,
execution_id,
last_execution_date,
output_source,
resource_id,
resource_type,
status
FROM aws.ssm.association_execution_targets
WHERE region = '{{ region }}' -- required
;