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")
         .aggregationThresholds(List.of(AggregationThresholdProperty.builder()
                 .allowedAggregateExpressionType("allowedAggregateExpressionType")
                 .identityColumns(List.of("identityColumns"))
                 .minimumIdentityCount(123)
                 .type("type")
                 // the properties below are optional
                 .outputColumnThresholds(List.of(OutputColumnThresholdProperty.builder()
                         .minimumIdentityCount(123)
                         .outputColumnName("outputColumnName")
                         .build()))
                 .build()))
         .allowedAnalysisProviders(List.of("allowedAnalysisProviders"))
         .comparisonControls(ComparisonControlsProperty.builder()
                 .allowedColumnComparisonColumns(List.of("allowedColumnComparisonColumns"))
                 .allowedLiteralComparisonColumns(List.of("allowedLiteralComparisonColumns"))
                 .build())
         .differentialPrivacy(DifferentialPrivacyProperty.builder()
                 .columns(List.of(DifferentialPrivacyColumnProperty.builder()
                         .name("name")
                         .build()))
                 .build())
         .disallowedOutputColumns(List.of("disallowedOutputColumns"))
         .build();
 

See Also: