Use this API action to view information about a specific execution of a specific association.
ssm_describe_association_execution_targets(AssociationId, ExecutionId,
Filters, MaxResults, NextToken)
A list with the following syntax:
list(
AssociationExecutionTargets = list(
list(
AssociationId = "string",
AssociationVersion = "string",
ExecutionId = "string",
ResourceId = "string",
ResourceType = "string",
Status = "string",
DetailedStatus = "string",
LastExecutionDate = as.POSIXct(
"2015-01-01"
),
OutputSource = list(
OutputSourceId = "string",
OutputSourceType = "string"
)
)
),
NextToken = "string"
)
[required] The association ID that includes the execution for which you want to view details.
[required] The execution ID for which you want to view details.
Filters for the request. You can specify the following filters and values.
Status (EQUAL)
ResourceId (EQUAL)
ResourceType (EQUAL)
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
A token to start the list. Use this token to get the next set of results.
svc$describe_association_execution_targets(
AssociationId = "string",
ExecutionId = "string",
Filters = list(
list(
Key = "Status"|"ResourceId"|"ResourceType",
Value = "string"
)
),
MaxResults = 123,
NextToken = "string"
)