effective_instance_associations
Creates, updates, deletes, gets or lists an effective_instance_associations resource.
Overview
| Name | effective_instance_associations |
| Type | Resource |
| Id | aws.ssm.effective_instance_associations |
Fields
The following fields are returned by SELECT queries:
- describe_effective_instance_associations
| 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 | Version information for the association on the managed node. (pattern: <code>([$]LATEST)|([1-9][0-9]*)</code>) |
content | string | The content of the association document for the managed nodes. |
instance_id | string | The managed node ID. (pattern: <code>(^i-(\w{8}|\w{17})$)|(^mi-\w{17}$)</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_effective_instance_associations | select | region | All 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_effective_instance_associations
All associations for the managed nodes.
SELECT
association_id,
association_version,
content,
instance_id
FROM aws.ssm.effective_instance_associations
WHERE region = '{{ region }}' -- required
;