Interface CfnIntermediateTablePropsMixin.IntermediateTableAnalysisRulePolicyV1Property

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

@Stability(Stable) public static interface CfnIntermediateTablePropsMixin.IntermediateTableAnalysisRulePolicyV1Property 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.cfnpropertymixins.services.cleanrooms.*;
 IntermediateTableAnalysisRulePolicyV1Property intermediateTableAnalysisRulePolicyV1Property = IntermediateTableAnalysisRulePolicyV1Property.builder()
         .custom(IntermediateTableAnalysisRuleCustomProperty.builder()
                 .additionalAnalyses("additionalAnalyses")
                 .aggregationThresholds(List.of(AggregationThresholdProperty.builder()
                         .allowedAggregateExpressionType("allowedAggregateExpressionType")
                         .identityColumns(List.of("identityColumns"))
                         .minimumIdentityCount(123)
                         .outputColumnThresholds(List.of(OutputColumnThresholdProperty.builder()
                                 .minimumIdentityCount(123)
                                 .outputColumnName("outputColumnName")
                                 .build()))
                         .type("type")
                         .build()))
                 .allowedAnalyses(List.of("allowedAnalyses"))
                 .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();
 

See Also: