Skip to main content

association_execution_targets

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

Overview

Nameassociation_execution_targets
TypeResource
Idaws.ssm.association_execution_targets

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_versionstringThe association version. (pattern: <code>([$]LATEST)|([1-9][0-9]*)</code>)
detailed_statusstringDetailed information about the execution status.
execution_idstringThe execution 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>)
last_execution_datestring (date-time)The date of the last execution.
output_sourceobjectThe location where the association details are saved.
resource_idstringThe resource ID, for example, the managed node ID where the association ran.
resource_typestringThe resource type, for example, EC2.
statusstringThe association execution status.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_association_execution_targetsselectregionViews information about a specific execution of a specific association.

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

Views information about a specific execution of a specific association.

SELECT
association_id,
association_version,
detailed_status,
execution_id,
last_execution_date,
output_source,
resource_id,
resource_type,
status
FROM aws.ssm.association_execution_targets
WHERE region = '{{ region }}' -- required
;