Skip to main content

instance_associations_status

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

Overview

Nameinstance_associations_status
TypeResource
Idaws.ssm.instance_associations_status

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_namestringThe name of the association applied to the managed node. (pattern: <code>^[a-zA-Z0-9_-.]{3,128}$</code>)
association_versionstringThe version of the association applied to the managed node. (pattern: <code>([$]LATEST)|([1-9][0-9]*)</code>)
detailed_statusstringDetailed status information about the association.
document_versionstringThe association document versions. (pattern: <code>([$]LATEST|[$]DEFAULT|^[1-9][0-9]*$)</code>)
error_codestringAn error code returned by the request to create the association.
execution_datestring (date-time)The date the association ran.
execution_summarystringSummary information about association execution.
instance_idstringThe managed node ID where the association was created. (pattern: <code>(^i-(\w{8}|\w{17})$)|(^mi-\w{17}$)</code>)
namestringThe name of the association. (pattern: <code>^[a-zA-Z0-9_-.:/]{3,128}$</code>)
output_urlobjectA URL for an S3 bucket where you want to store the results of this request.
statusstringStatus information about the association.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;