interface CfnCustomPermissionsProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnCustomPermissionsProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnCustomPermissionsProps |
Java | software.amazon.awscdk.services.quicksight.CfnCustomPermissionsProps |
Python | aws_cdk.aws_quicksight.CfnCustomPermissionsProps |
TypeScript | aws-cdk-lib » aws_quicksight » CfnCustomPermissionsProps |
Properties for defining a CfnCustomPermissions.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const cfnCustomPermissionsProps: quicksight.CfnCustomPermissionsProps = {
awsAccountId: 'awsAccountId',
customPermissionsName: 'customPermissionsName',
// the properties below are optional
capabilities: {
addOrRunAnomalyDetectionForAnalyses: 'addOrRunAnomalyDetectionForAnalyses',
analysis: 'analysis',
createAndUpdateDashboardEmailReports: 'createAndUpdateDashboardEmailReports',
createAndUpdateDatasets: 'createAndUpdateDatasets',
createAndUpdateDataSources: 'createAndUpdateDataSources',
createAndUpdateThemes: 'createAndUpdateThemes',
createAndUpdateThresholdAlerts: 'createAndUpdateThresholdAlerts',
createSharedFolders: 'createSharedFolders',
createSpiceDataset: 'createSpiceDataset',
dashboard: 'dashboard',
exportToCsv: 'exportToCsv',
exportToCsvInScheduledReports: 'exportToCsvInScheduledReports',
exportToExcel: 'exportToExcel',
exportToExcelInScheduledReports: 'exportToExcelInScheduledReports',
exportToPdf: 'exportToPdf',
exportToPdfInScheduledReports: 'exportToPdfInScheduledReports',
includeContentInScheduledReportsEmail: 'includeContentInScheduledReportsEmail',
printReports: 'printReports',
renameSharedFolders: 'renameSharedFolders',
shareAnalyses: 'shareAnalyses',
shareDashboards: 'shareDashboards',
shareDatasets: 'shareDatasets',
shareDataSources: 'shareDataSources',
subscribeDashboardEmailReports: 'subscribeDashboardEmailReports',
viewAccountSpiceCapacity: 'viewAccountSpiceCapacity',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The ID of the AWS account that contains the custom permission configuration that you want to update. |
| custom | string | The name of the custom permissions profile. |
| capabilities? | IResolvable | Capabilities | A set of actions in the custom permissions profile. |
| tags? | Cfn[] | The tags to associate with the custom permissions profile. |
awsAccountId
Type:
string
The ID of the AWS account that contains the custom permission configuration that you want to update.
customPermissionsName
Type:
string
The name of the custom permissions profile.
capabilities?
Type:
IResolvable | Capabilities
(optional)
A set of actions in the custom permissions profile.
tags?
Type:
Cfn[]
(optional)
The tags to associate with the custom permissions profile.

.NET
Go
Java
Python
TypeScript