Learn R Programming

paws.analytics (version 0.1.11)

quicksight_search_analyses: 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.

Usage

quicksight_search_analyses(AwsAccountId, Filters, NextToken, MaxResults)

Arguments

AwsAccountId

[required] The ID of the AWS 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",
      Name = "QUICKSIGHT_USER",
      Value = "string"
    )
  ),
  NextToken = "string",
  MaxResults = 123
)