Update Folder Permissions
quicksight_update_folder_permissions | R Documentation |
Updates permissions of a folder¶
Description¶
Updates permissions of a folder.
Usage¶
quicksight_update_folder_permissions(AwsAccountId, FolderId,
GrantPermissions, RevokePermissions)
Arguments¶
AwsAccountId |
[required] The ID for the Amazon Web Services account that contains the folder to update. |
FolderId |
[required] The ID of the folder. |
GrantPermissions |
The permissions that you want to grant on a resource. Namespace
ARNs are not supported |
RevokePermissions |
The permissions that you want to revoke from a resource.
Namespace ARNs are not supported |
Value¶
A list with the following syntax:
list(
Status = 123,
Arn = "string",
FolderId = "string",
Permissions = list(
list(
Principal = "string",
Actions = list(
"string"
)
)
),
RequestId = "string"
)
Request syntax¶
svc$update_folder_permissions(
AwsAccountId = "string",
FolderId = "string",
GrantPermissions = list(
list(
Principal = "string",
Actions = list(
"string"
)
)
),
RevokePermissions = list(
list(
Principal = "string",
Actions = list(
"string"
)
)
)
)