Describe Folder Permissions
quicksight_describe_folder_permissions | R Documentation |
Describes permissions for a folder¶
Description¶
Describes permissions for a folder.
Usage¶
quicksight_describe_folder_permissions(AwsAccountId, FolderId,
Namespace, MaxResults, NextToken)
Arguments¶
AwsAccountId |
[required] The ID for the Amazon Web Services account that contains the folder. |
FolderId |
[required] The ID of the folder. |
Namespace |
The namespace of the folder whose permissions you want described. |
MaxResults |
The maximum number of results to be returned per request. |
NextToken |
A pagination token for the next set of results. |
Value¶
A list with the following syntax:
list(
Status = 123,
FolderId = "string",
Arn = "string",
Permissions = list(
list(
Principal = "string",
Actions = list(
"string"
)
)
),
RequestId = "string",
NextToken = "string"
)
Request syntax¶
svc$describe_folder_permissions(
AwsAccountId = "string",
FolderId = "string",
Namespace = "string",
MaxResults = 123,
NextToken = "string"
)