Create Custom Permissions
quicksight_create_custom_permissions | R Documentation |
Creates a custom permissions profile¶
Description¶
Creates a custom permissions profile.
Usage¶
quicksight_create_custom_permissions(AwsAccountId,
CustomPermissionsName, Capabilities, Tags)
Arguments¶
AwsAccountId |
[required] The ID of the Amazon Web Services account that you want to create the custom permissions profile in. |
CustomPermissionsName |
[required] The name of the custom permissions profile that you want to create. |
Capabilities |
A set of actions to include in the custom permissions profile. |
Tags |
The tags to associate with the custom permissions profile. |
Value¶
A list with the following syntax:
list(
Status = 123,
Arn = "string",
RequestId = "string"
)
Request syntax¶
svc$create_custom_permissions(
AwsAccountId = "string",
CustomPermissionsName = "string",
Capabilities = list(
ExportToCsv = "DENY",
ExportToExcel = "DENY",
CreateAndUpdateThemes = "DENY",
AddOrRunAnomalyDetectionForAnalyses = "DENY",
ShareAnalyses = "DENY",
CreateAndUpdateDatasets = "DENY",
ShareDatasets = "DENY",
SubscribeDashboardEmailReports = "DENY",
CreateAndUpdateDashboardEmailReports = "DENY",
ShareDashboards = "DENY",
CreateAndUpdateThresholdAlerts = "DENY",
RenameSharedFolders = "DENY",
CreateSharedFolders = "DENY",
CreateAndUpdateDataSources = "DENY",
ShareDataSources = "DENY",
ViewAccountSPICECapacity = "DENY",
CreateSPICEDataset = "DENY"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)