instance_associations_status
Creates, updates, deletes, gets or lists an instance_associations_status resource.
Overview
| Name | instance_associations_status |
| Type | Resource |
| Id | aws.ssm.instance_associations_status |
Fields
The following fields are returned by SELECT queries:
- describe_instance_associations_status
| 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_name | string | The name of the association applied to the managed node. (pattern: <code>^[a-zA-Z0-9_-.]{3,128}$</code>) |
association_version | string | The version of the association applied to the managed node. (pattern: <code>([$]LATEST)|([1-9][0-9]*)</code>) |
detailed_status | string | Detailed status information about the association. |
document_version | string | The association document versions. (pattern: <code>([$]LATEST|[$]DEFAULT|^[1-9][0-9]*$)</code>) |
error_code | string | An error code returned by the request to create the association. |
execution_date | string (date-time) | The date the association ran. |
execution_summary | string | Summary information about association execution. |
instance_id | string | The managed node ID where the association was created. (pattern: <code>(^i-(\w{8}|\w{17})$)|(^mi-\w{17}$)</code>) |
name | string | The name of the association. (pattern: <code>^[a-zA-Z0-9_-.:/]{3,128}$</code>) |
output_url | object | A URL for an S3 bucket where you want to store the results of this request. |
status | string | Status information about the association. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_instance_associations_status | select | region | The status of the associations for the managed nodes. |
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_instance_associations_status
The status of the associations for the managed nodes.
SELECT
association_id,
association_name,
association_version,
detailed_status,
document_version,
error_code,
execution_date,
execution_summary,
instance_id,
name,
output_url,
status
FROM aws.ssm.instance_associations_status
WHERE region = '{{ region }}' -- required
;