Skip to main content

effective_instance_associations

Creates, updates, deletes, gets or lists an effective_instance_associations resource.

Overview

Nameeffective_instance_associations
TypeResource
Idaws.ssm.effective_instance_associations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
association_idstringThe 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_versionstringVersion information for the association on the managed node. (pattern: <code>([$]LATEST)|([1-9][0-9]*)</code>)
contentstringThe content of the association document for the managed nodes.
instance_idstringThe managed node ID. (pattern: <code>(^i-(\w{8}|\w{17})$)|(^mi-\w{17}$)</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_effective_instance_associationsselectregionAll 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

All associations for the managed nodes.

SELECT
association_id,
association_version,
content,
instance_id
FROM aws.ssm.effective_instance_associations
WHERE region = '{{ region }}' -- required
;