Interface CfnIntermediateTableMixinProps

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

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-08-10T14:51:17.077Z") @Stability(Stable) public interface CfnIntermediateTableMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnIntermediateTablePropsMixin.

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.*;
 CfnIntermediateTableMixinProps cfnIntermediateTableMixinProps = CfnIntermediateTableMixinProps.builder()
         .analysisRules(List.of(IntermediateTableAnalysisRuleProperty.builder()
                 .policy(IntermediateTableAnalysisRulePolicyProperty.builder()
                         .v1(IntermediateTableAnalysisRulePolicyV1Property.builder()
                                 .custom(IntermediateTableAnalysisRuleCustomProperty.builder()
                                         .additionalAnalyses("additionalAnalyses")
                                         .allowedAnalyses(List.of("allowedAnalyses"))
                                         .allowedAnalysisProviders(List.of("allowedAnalysisProviders"))
                                         .allowedResultReceivers(List.of("allowedResultReceivers"))
                                         .differentialPrivacy(DifferentialPrivacyProperty.builder()
                                                 .columns(List.of(DifferentialPrivacyColumnProperty.builder()
                                                         .name("name")
                                                         .build()))
                                                 .build())
                                         .disallowedOutputColumns(List.of("disallowedOutputColumns"))
                                         .build())
                                 .build())
                         .build())
                 .type("type")
                 .build()))
         .description("description")
         .kmsKeyArn("kmsKeyArn")
         .membershipIdentifier("membershipIdentifier")
         .name("name")
         .populationAnalysisConfiguration(PopulationAnalysisConfigurationProperty.builder()
                 .sqlParameters(PopulationAnalysisSqlParametersProperty.builder()
                         .analysisTemplateArn("analysisTemplateArn")
                         .queryString("queryString")
                         .build())
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: