Skip to content

List Flows

quicksight_list_flows R Documentation

Lists flows in an Amazon Web Services account

Description

Lists flows in an Amazon Web Services account.

Usage

quicksight_list_flows(AwsAccountId, NextToken, MaxResults)

Arguments

AwsAccountId

[required] The ID of the Amazon Web Services account that contains the flow list that you are getting.

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$list_flows(
  AwsAccountId = "string",
  NextToken = "string",
  MaxResults = 123
)