Create Folder
| quicksight_create_folder | R Documentation |
Creates an empty shared folder¶
Description¶
Creates an empty shared folder.
Usage¶
quicksight_create_folder(AwsAccountId, FolderId, Name, FolderType,
ParentFolderArn, Permissions, Tags, SharingModel)
Arguments¶
AwsAccountId[required] The ID for the Amazon Web Services account where you want to create the folder.
FolderId[required] The ID of the folder.
NameThe name of the folder.
FolderTypeThe type of folder. By default,
folderTypeisSHARED.ParentFolderArnThe Amazon Resource Name (ARN) for the parent folder.
ParentFolderArncan be null. An emptyparentFolderArncreates a root-level folder.PermissionsA structure that describes the principals and the resource-level permissions of a folder.
To specify no permissions, omit
Permissions.TagsTags for the folder.
SharingModelAn optional parameter that determines the sharing scope of the folder. The default value for this parameter is
ACCOUNT.
Value¶
A list with the following syntax:
Request syntax¶
svc$create_folder(
AwsAccountId = "string",
FolderId = "string",
Name = "string",
FolderType = "SHARED"|"RESTRICTED",
ParentFolderArn = "string",
Permissions = list(
list(
Principal = "string",
Actions = list(
"string"
)
)
),
Tags = list(
list(
Key = "string",
Value = "string"
)
),
SharingModel = "ACCOUNT"|"NAMESPACE"
)