Describe Association Execution Targets
ssm_describe_association_execution_targets | R Documentation |
Views information about a specific execution of a specific association¶
Description¶
Views information about a specific execution of a specific association.
Usage¶
ssm_describe_association_execution_targets(AssociationId, ExecutionId,
Filters, MaxResults, NextToken)
Arguments¶
AssociationId |
[required] The association ID that includes the execution for which you want to view details. |
ExecutionId |
[required] The execution ID for which you want to view details. |
Filters |
Filters for the request. You can specify the following filters and values. Status (EQUAL) ResourceId (EQUAL) ResourceType (EQUAL) |
MaxResults |
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. |
NextToken |
A token to start the list. Use this token to get the next set of results. |
Value¶
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"
)
Request syntax¶
svc$describe_association_execution_targets(
AssociationId = "string",
ExecutionId = "string",
Filters = list(
list(
Key = "Status"|"ResourceId"|"ResourceType",
Value = "string"
)
),
MaxResults = 123,
NextToken = "string"
)