Describe Activations
ssm_describe_activations | R Documentation |
Describes details about the activation, such as the date and time the activation was created, its expiration date, the Identity and Access Management (IAM) role assigned to the managed nodes in the activation, and the number of nodes registered by using this activation¶
Description¶
Describes details about the activation, such as the date and time the activation was created, its expiration date, the Identity and Access Management (IAM) role assigned to the managed nodes in the activation, and the number of nodes registered by using this activation.
Usage¶
Arguments¶
Filters
A filter to view information about your activations.
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(
ActivationList = list(
list(
ActivationId = "string",
Description = "string",
DefaultInstanceName = "string",
IamRole = "string",
RegistrationLimit = 123,
RegistrationsCount = 123,
ExpirationDate = as.POSIXct(
"2015-01-01"
),
Expired = TRUE|FALSE,
CreatedDate = as.POSIXct(
"2015-01-01"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
NextToken = "string"
)