Interface CfnIntermediateTable.IntermediateTableAnalysisRuleProperty

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

@Stability(Stable) public static interface CfnIntermediateTable.IntermediateTableAnalysisRuleProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 IntermediateTableAnalysisRuleProperty intermediateTableAnalysisRuleProperty = IntermediateTableAnalysisRuleProperty.builder()
         .policy(IntermediateTableAnalysisRulePolicyProperty.builder()
                 .v1(IntermediateTableAnalysisRulePolicyV1Property.builder()
                         .custom(IntermediateTableAnalysisRuleCustomProperty.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"))
                                 .allowedResultReceivers(List.of("allowedResultReceivers"))
                                 .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())
                         .build())
                 .build())
         .type("type")
         .build();
 

See Also: