Search Analyses
quicksight_search_analyses | R Documentation |
Searches for analyses that belong to the user specified in the filter¶
Description¶
Searches for analyses that belong to the user specified in the filter.
This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes.
Usage¶
Arguments¶
AwsAccountId
[required] The ID of the Amazon Web Services account that contains the analyses that you're searching for.
Filters
[required] The structure for the search filters that you want to apply to your search.
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$search_analyses(
AwsAccountId = "string",
Filters = list(
list(
Operator = "StringEquals"|"StringLike",
Name = "QUICKSIGHT_USER"|"QUICKSIGHT_VIEWER_OR_OWNER"|"DIRECT_QUICKSIGHT_VIEWER_OR_OWNER"|"QUICKSIGHT_OWNER"|"DIRECT_QUICKSIGHT_OWNER"|"DIRECT_QUICKSIGHT_SOLE_OWNER"|"ANALYSIS_NAME",
Value = "string"
)
),
NextToken = "string",
MaxResults = 123
)