Skip to content

Update Custom Permissions

quicksight_update_custom_permissions R Documentation

Updates a custom permissions profile

Description

Updates a custom permissions profile.

Usage

quicksight_update_custom_permissions(AwsAccountId,
  CustomPermissionsName, Capabilities)

Arguments

AwsAccountId

[required] The ID of the Amazon Web Services account that contains the custom permissions profile that you want to update.

CustomPermissionsName

[required] The name of the custom permissions profile that you want to update.

Capabilities

A set of actions to include in the custom permissions profile.

Value

A list with the following syntax:

list(
  Status = 123,
  Arn = "string",
  RequestId = "string"
)

Request syntax

svc$update_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"
  )
)