Describe Association Executions
ssm_describe_association_executions | R Documentation |
Views all executions for a specific association ID¶
Description¶
Views all executions for a specific association ID.
Usage¶
ssm_describe_association_executions(AssociationId, Filters, MaxResults,
NextToken)
Arguments¶
AssociationId |
[required] The association ID for which you want to view execution history details. |
Filters |
Filters for the request. You can specify the following filters and values. ExecutionId (EQUAL) Status (EQUAL) CreatedTime (EQUAL, GREATER_THAN, LESS_THAN) |
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(
AssociationExecutions = list(
list(
AssociationId = "string",
AssociationVersion = "string",
ExecutionId = "string",
Status = "string",
DetailedStatus = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastExecutionDate = as.POSIXct(
"2015-01-01"
),
ResourceCountByStatus = "string",
AlarmConfiguration = list(
IgnorePollAlarmFailure = TRUE|FALSE,
Alarms = list(
list(
Name = "string"
)
)
),
TriggeredAlarms = list(
list(
Name = "string",
State = "UNKNOWN"|"ALARM"
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_association_executions(
AssociationId = "string",
Filters = list(
list(
Key = "ExecutionId"|"Status"|"CreatedTime",
Value = "string",
Type = "EQUAL"|"LESS_THAN"|"GREATER_THAN"
)
),
MaxResults = 123,
NextToken = "string"
)