Skip to content

Search Flows

quicksight_search_flows R Documentation

Search for the flows in an Amazon Web Services account

Description

Search for the flows in an Amazon Web Services account.

Usage

quicksight_search_flows(AwsAccountId, Filters, NextToken, MaxResults)

Arguments

AwsAccountId

[required] The ID of the Amazon Web Services account where you are searching for flows from.

Filters

[required] The filters applied to the search when searching for flows in the Amazon Web Services account.

NextToken

The token to request the next set of results, or null if you want to retrieve the first set.

MaxResults

The maximum number of results to be returned per request.

Value

A list with the following syntax:

list(
  FlowSummaryList = list(
    list(
      Arn = "string",
      FlowId = "string",
      Name = "string",
      Description = "string",
      CreatedTime = as.POSIXct(
        "2015-01-01"
      ),
      CreatedBy = "string",
      LastUpdatedTime = as.POSIXct(
        "2015-01-01"
      ),
      LastUpdatedBy = "string",
      PublishState = "PUBLISHED"|"DRAFT"|"PENDING_APPROVAL",
      RunCount = 123,
      UserCount = 123,
      LastPublishedBy = "string",
      LastPublishedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string",
  RequestId = "string",
  Status = 123
)

Request syntax

svc$search_flows(
  AwsAccountId = "string",
  Filters = list(
    list(
      Name = "assetName"|"assetDescription"|"DIRECT_QUICKSIGHT_OWNER"|"DIRECT_QUICKSIGHT_VIEWER_OR_OWNER"|"DIRECT_QUICKSIGHT_SOLE_OWNER",
      Operator = "StringEquals"|"StringLike",
      Value = "string"
    )
  ),
  NextToken = "string",
  MaxResults = 123
)