interface CfnCustomPermissionsMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnCustomPermissionsMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnCustomPermissionsMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnCustomPermissionsMixinProps |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnCustomPermissionsMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnCustomPermissionsMixinProps |
Properties for CfnCustomPermissionsPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const cfnCustomPermissionsMixinProps: quicksight_mixins.CfnCustomPermissionsMixinProps = {
awsAccountId: 'awsAccountId',
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',
},
customPermissionsName: 'customPermissionsName',
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. |
| capabilities? | IResolvable | Capabilities | A set of actions in the custom permissions profile. |
| custom | string | The name of the custom permissions profile. |
| tags? | Cfn[] | The tags to associate with the custom permissions profile. |
awsAccountId?
Type:
string
(optional)
The ID of the AWS account that contains the custom permission configuration that you want to update.
capabilities?
Type:
IResolvable | Capabilities
(optional)
A set of actions in the custom permissions profile.
customPermissionsName?
Type:
string
(optional)
The name of the custom permissions profile.
tags?
Type:
Cfn[]
(optional)
The tags to associate with the custom permissions profile.

.NET
Go
Java
Python
TypeScript