Describe Entitlements
appstream_describe_entitlements | R Documentation |
Retrieves a list that describes one of more entitlements¶
Description¶
Retrieves a list that describes one of more entitlements.
Usage¶
Arguments¶
Name
The name of the entitlement.
StackName
[required] The name of the stack with which the entitlement is associated.
NextToken
The pagination token used to retrieve the next page of results for this operation.
MaxResults
The maximum size of each page of results.
Value¶
A list with the following syntax:
list(
Entitlements = list(
list(
Name = "string",
StackName = "string",
Description = "string",
AppVisibility = "ALL"|"ASSOCIATED",
Attributes = list(
list(
Name = "string",
Value = "string"
)
),
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)