List Entitled Applications
appstream_list_entitled_applications | R Documentation |
Retrieves a list of entitled applications¶
Description¶
Retrieves a list of entitled applications.
Usage¶
appstream_list_entitled_applications(StackName, EntitlementName,
NextToken, MaxResults)
Arguments¶
StackName |
[required] The name of the stack with which the entitlement is associated. |
EntitlementName |
[required] The name of the entitlement. |
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(
EntitledApplications = list(
list(
ApplicationIdentifier = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_entitled_applications(
StackName = "string",
EntitlementName = "string",
NextToken = "string",
MaxResults = 123
)