Interface CfnConfiguredTableProps

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

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:12.271Z") @Stability(Stable) public interface CfnConfiguredTableProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnConfiguredTable.

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.*;
 CfnConfiguredTableProps cfnConfiguredTableProps = CfnConfiguredTableProps.builder()
         .allowedColumns(List.of("allowedColumns"))
         .analysisMethod("analysisMethod")
         .name("name")
         .tableReference(TableReferenceProperty.builder()
                 .glue(GlueTableReferenceProperty.builder()
                         .databaseName("databaseName")
                         .tableName("tableName")
                         .build())
                 .build())
         // the properties below are optional
         .analysisRules(List.of(AnalysisRuleProperty.builder()
                 .policy(ConfiguredTableAnalysisRulePolicyProperty.builder()
                         .v1(ConfiguredTableAnalysisRulePolicyV1Property.builder()
                                 .aggregation(AnalysisRuleAggregationProperty.builder()
                                         .aggregateColumns(List.of(AggregateColumnProperty.builder()
                                                 .columnNames(List.of("columnNames"))
                                                 .function("function")
                                                 .build()))
                                         .dimensionColumns(List.of("dimensionColumns"))
                                         .joinColumns(List.of("joinColumns"))
                                         .outputConstraints(List.of(AggregationConstraintProperty.builder()
                                                 .columnName("columnName")
                                                 .minimum(123)
                                                 .type("type")
                                                 .build()))
                                         .scalarFunctions(List.of("scalarFunctions"))
                                         // the properties below are optional
                                         .additionalAnalyses("additionalAnalyses")
                                         .allowedJoinOperators(List.of("allowedJoinOperators"))
                                         .joinRequired("joinRequired")
                                         .build())
                                 .custom(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())
                                 .list(AnalysisRuleListProperty.builder()
                                         .joinColumns(List.of("joinColumns"))
                                         .listColumns(List.of("listColumns"))
                                         // the properties below are optional
                                         .additionalAnalyses("additionalAnalyses")
                                         .allowedJoinOperators(List.of("allowedJoinOperators"))
                                         .build())
                                 .build())
                         .build())
                 .type("type")
                 .build()))
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: