Interface CfnCustomPermissionsProps

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

@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)", date="2026-02-19T19:23:45.155Z") @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()
                 .action("action")
                 .addOrRunAnomalyDetectionForAnalyses("addOrRunAnomalyDetectionForAnalyses")
                 .analysis("analysis")
                 .automate("automate")
                 .chatAgent("chatAgent")
                 .createAndUpdateDashboardEmailReports("createAndUpdateDashboardEmailReports")
                 .createAndUpdateDatasets("createAndUpdateDatasets")
                 .createAndUpdateDataSources("createAndUpdateDataSources")
                 .createAndUpdateThemes("createAndUpdateThemes")
                 .createAndUpdateThresholdAlerts("createAndUpdateThresholdAlerts")
                 .createChatAgents("createChatAgents")
                 .createSharedFolders("createSharedFolders")
                 .createSpiceDataset("createSpiceDataset")
                 .dashboard("dashboard")
                 .exportToCsv("exportToCsv")
                 .exportToCsvInScheduledReports("exportToCsvInScheduledReports")
                 .exportToExcel("exportToExcel")
                 .exportToExcelInScheduledReports("exportToExcelInScheduledReports")
                 .exportToPdf("exportToPdf")
                 .exportToPdfInScheduledReports("exportToPdfInScheduledReports")
                 .flow("flow")
                 .includeContentInScheduledReportsEmail("includeContentInScheduledReportsEmail")
                 .knowledgeBase("knowledgeBase")
                 .performFlowUiTask("performFlowUiTask")
                 .printReports("printReports")
                 .publishWithoutApproval("publishWithoutApproval")
                 .renameSharedFolders("renameSharedFolders")
                 .research("research")
                 .shareAnalyses("shareAnalyses")
                 .shareDashboards("shareDashboards")
                 .shareDatasets("shareDatasets")
                 .shareDataSources("shareDataSources")
                 .space("space")
                 .subscribeDashboardEmailReports("subscribeDashboardEmailReports")
                 .useAgentWebSearch("useAgentWebSearch")
                 .useBedrockModels("useBedrockModels")
                 .viewAccountSpiceCapacity("viewAccountSpiceCapacity")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: