Describe App License Usage
| appstream_describe_app_license_usage | R Documentation |
Retrieves license included application usage information¶
Description¶
Retrieves license included application usage information.
Usage¶
appstream_describe_app_license_usage(BillingPeriod, MaxResults,
NextToken)
Arguments¶
BillingPeriod |
[required] Billing period for the usage record. Specify the value in yyyy-mm format. For example, for August 2025, use 2025-08. |
MaxResults |
The maximum number of results to return. |
NextToken |
Token for pagination of results. |
Value¶
A list with the following syntax:
list(
AppLicenseUsages = list(
list(
UserArn = "string",
BillingPeriod = "string",
OwnerAWSAccountId = "string",
SubscriptionFirstUsedDate = as.POSIXct(
"2015-01-01"
),
SubscriptionLastUsedDate = as.POSIXct(
"2015-01-01"
),
LicenseType = "string",
UserId = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_app_license_usage(
BillingPeriod = "string",
MaxResults = 123,
NextToken = "string"
)