Interface CfnCustomPermissionsProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCustomPermissionsProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-08-20T12:34:48.825Z") @Stability(Stable) public interface CfnCustomPermissionsProps extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
 CfnCustomPermissionsProps cfnCustomPermissionsProps = CfnCustomPermissionsProps.builder()
         .awsAccountId("awsAccountId")
         .customPermissionsName("customPermissionsName")
         // the properties below are optional
         .capabilities(CapabilitiesProperty.builder()
                 .addOrRunAnomalyDetectionForAnalyses("addOrRunAnomalyDetectionForAnalyses")
                 .createAndUpdateDashboardEmailReports("createAndUpdateDashboardEmailReports")
                 .createAndUpdateDatasets("createAndUpdateDatasets")
                 .createAndUpdateDataSources("createAndUpdateDataSources")
                 .createAndUpdateThemes("createAndUpdateThemes")
                 .createAndUpdateThresholdAlerts("createAndUpdateThresholdAlerts")
                 .createSharedFolders("createSharedFolders")
                 .createSpiceDataset("createSpiceDataset")
                 .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")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: