List Analyses
| quicksight_list_analyses | R Documentation |
Lists Amazon Quick Sight analyses that exist in the specified Amazon Web Services account¶
Description¶
Lists Amazon Quick Sight analyses that exist in the specified Amazon Web Services account.
Usage¶
quicksight_list_analyses(AwsAccountId, NextToken, MaxResults)
Arguments¶
AwsAccountId |
[required] The ID of the Amazon Web Services account that contains the analyses. |
NextToken |
A pagination token that can be used in a subsequent request. |
MaxResults |
The maximum number of results to return. |
Value¶
A list with the following syntax:
list(
AnalysisSummaryList = list(
list(
Arn = "string",
AnalysisId = "string",
Name = "string",
Status = "CREATION_IN_PROGRESS"|"CREATION_SUCCESSFUL"|"CREATION_FAILED"|"UPDATE_IN_PROGRESS"|"UPDATE_SUCCESSFUL"|"UPDATE_FAILED"|"DELETED",
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastUpdatedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string",
Status = 123,
RequestId = "string"
)
Request syntax¶
svc$list_analyses(
AwsAccountId = "string",
NextToken = "string",
MaxResults = 123
)