List Folders
quicksight_list_folders | R Documentation |
Lists all folders in an account¶
Description¶
Lists all folders in an account.
Usage¶
Arguments¶
AwsAccountId
[required] The ID for the Amazon Web Services account that contains the folder.
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,
FolderSummaryList = list(
list(
Arn = "string",
FolderId = "string",
Name = "string",
FolderType = "SHARED"|"RESTRICTED",
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastUpdatedTime = as.POSIXct(
"2015-01-01"
),
SharingModel = "ACCOUNT"|"NAMESPACE"
)
),
NextToken = "string",
RequestId = "string"
)