Describe Usage Report Subscriptions
appstream_describe_usage_report_subscriptions | R Documentation |
Retrieves a list that describes one or more usage report subscriptions¶
Description¶
Retrieves a list that describes one or more usage report subscriptions.
Usage¶
appstream_describe_usage_report_subscriptions(MaxResults, NextToken)
Arguments¶
MaxResults |
The maximum size of each page of results. |
NextToken |
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page. |
Value¶
A list with the following syntax:
list(
UsageReportSubscriptions = list(
list(
S3BucketName = "string",
Schedule = "DAILY",
LastGeneratedReportDate = as.POSIXct(
"2015-01-01"
),
SubscriptionErrors = list(
list(
ErrorCode = "RESOURCE_NOT_FOUND"|"ACCESS_DENIED"|"INTERNAL_SERVICE_ERROR",
ErrorMessage = "string"
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_usage_report_subscriptions(
MaxResults = 123,
NextToken = "string"
)