association_executions
Creates, updates, deletes, gets or lists an association_executions resource.
Overview
| Name | association_executions |
| Type | Resource |
| Id | aws.ssm.association_executions |
Fields
The following fields are returned by SELECT queries:
- describe_association_executions
| Name | Datatype | Description |
|---|---|---|
alarm_configuration | object | The details for the CloudWatch alarm you want to apply to an automation or command. |
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>) |
created_time | string (date-time) | The time the execution started. |
detailed_status | string | Detailed status information about the execution. |
execution_id | string | The execution ID for the association. (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. |
resource_count_by_status | string | An aggregate status of the resources in the execution based on the status type. |
status | string | The status of the association execution. |
triggered_alarms | array | The CloudWatch alarms that were invoked by the association. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_association_executions | select | region | Views all executions for a specific association ID. |
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_executions
Views all executions for a specific association ID.
SELECT
alarm_configuration,
association_id,
association_version,
created_time,
detailed_status,
execution_id,
last_execution_date,
resource_count_by_status,
status,
triggered_alarms
FROM aws.ssm.association_executions
WHERE region = '{{ region }}' -- required
;