Skip to content

List Folders For Resource

quicksight_list_folders_for_resource R Documentation

List all folders that a resource is a member of

Description

List all folders that a resource is a member of.

Usage

quicksight_list_folders_for_resource(AwsAccountId, ResourceArn,
  NextToken, MaxResults)

Arguments

AwsAccountId

[required] The ID for the Amazon Web Services account that contains the resource.

ResourceArn

[required] The Amazon Resource Name (ARN) the resource whose folders you need to list.

NextToken

The token for the next set of results, or null if there are no more results.

MaxResults

The maximum number of results to be returned per request.

Value

A list with the following syntax:

list(
  Status = 123,
  Folders = list(
    "string"
  ),
  NextToken = "string",
  RequestId = "string"
)

Request syntax

svc$list_folders_for_resource(
  AwsAccountId = "string",
  ResourceArn = "string",
  NextToken = "string",
  MaxResults = 123
)