Interface CfnConfiguredTable.AnalysisRuleCustomProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfiguredTable.AnalysisRuleCustomProperty.Jsii$Proxy
Enclosing class:
CfnConfiguredTable

@Stability(Stable) public static interface CfnConfiguredTable.AnalysisRuleCustomProperty extends software.amazon.jsii.JsiiSerializable
A type of analysis rule that enables the table owner to approve custom SQL queries on their configured tables.

It supports differential privacy.

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.cleanrooms.*;
 AnalysisRuleCustomProperty analysisRuleCustomProperty = AnalysisRuleCustomProperty.builder()
         .allowedAnalyses(List.of("allowedAnalyses"))
         // the properties below are optional
         .additionalAnalyses("additionalAnalyses")
         .allowedAnalysisProviders(List.of("allowedAnalysisProviders"))
         .differentialPrivacy(DifferentialPrivacyProperty.builder()
                 .columns(List.of(DifferentialPrivacyColumnProperty.builder()
                         .name("name")
                         .build()))
                 .build())
         .disallowedOutputColumns(List.of("disallowedOutputColumns"))
         .build();
 

See Also: