List Tokens
licensemanager_list_tokens | R Documentation |
Lists your tokens¶
Description¶
Lists your tokens.
Usage¶
licensemanager_list_tokens(TokenIds, Filters, NextToken, MaxResults)
Arguments¶
TokenIds |
Token IDs. |
Filters |
Filters to scope the results. The following filter is supported:
|
NextToken |
Token for the next set of results. |
MaxResults |
Maximum number of results to return in a single call. |
Value¶
A list with the following syntax:
list(
Tokens = list(
list(
TokenId = "string",
TokenType = "string",
LicenseArn = "string",
ExpirationTime = "string",
TokenProperties = list(
"string"
),
RoleArns = list(
"string"
),
Status = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_tokens(
TokenIds = list(
"string"
),
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
NextToken = "string",
MaxResults = 123
)