Class CfnConfiguredTablePropsMixin

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.CfnConfiguredTablePropsMixin
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable, software.constructs.IMixin

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:56.891Z") @Stability(Stable) public class CfnConfiguredTablePropsMixin extends Mixin implements software.constructs.IMixin
Creates a new configured table resource.

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.*;
 import software.amazon.awscdk.*;
 IMergeStrategy mergeStrategy;
 CfnConfiguredTablePropsMixin cfnConfiguredTablePropsMixin = CfnConfiguredTablePropsMixin.Builder.create(CfnConfiguredTableMixinProps.builder()
         .allowedColumns(List.of("allowedColumns"))
         .analysisMethod("analysisMethod")
         .analysisRules(List.of(AnalysisRuleProperty.builder()
                 .policy(ConfiguredTableAnalysisRulePolicyProperty.builder()
                         .v1(ConfiguredTableAnalysisRulePolicyV1Property.builder()
                                 .aggregation(AnalysisRuleAggregationProperty.builder()
                                         .additionalAnalyses("additionalAnalyses")
                                         .aggregateColumns(List.of(AggregateColumnProperty.builder()
                                                 .columnNames(List.of("columnNames"))
                                                 .function("function")
                                                 .build()))
                                         .allowedJoinOperators(List.of("allowedJoinOperators"))
                                         .dimensionColumns(List.of("dimensionColumns"))
                                         .joinColumns(List.of("joinColumns"))
                                         .joinRequired("joinRequired")
                                         .outputConstraints(List.of(AggregationConstraintProperty.builder()
                                                 .columnName("columnName")
                                                 .minimum(123)
                                                 .type("type")
                                                 .build()))
                                         .scalarFunctions(List.of("scalarFunctions"))
                                         .build())
                                 .custom(AnalysisRuleCustomProperty.builder()
                                         .additionalAnalyses("additionalAnalyses")
                                         .allowedAnalyses(List.of("allowedAnalyses"))
                                         .allowedAnalysisProviders(List.of("allowedAnalysisProviders"))
                                         .differentialPrivacy(DifferentialPrivacyProperty.builder()
                                                 .columns(List.of(DifferentialPrivacyColumnProperty.builder()
                                                         .name("name")
                                                         .build()))
                                                 .build())
                                         .disallowedOutputColumns(List.of("disallowedOutputColumns"))
                                         .build())
                                 .list(AnalysisRuleListProperty.builder()
                                         .additionalAnalyses("additionalAnalyses")
                                         .allowedJoinOperators(List.of("allowedJoinOperators"))
                                         .joinColumns(List.of("joinColumns"))
                                         .listColumns(List.of("listColumns"))
                                         .build())
                                 .build())
                         .build())
                 .type("type")
                 .build()))
         .description("description")
         .name("name")
         .selectedAnalysisMethods(List.of("selectedAnalysisMethods"))
         .tableReference(TableReferenceProperty.builder()
                 .athena(AthenaTableReferenceProperty.builder()
                         .databaseName("databaseName")
                         .outputLocation("outputLocation")
                         .region("region")
                         .tableName("tableName")
                         .workGroup("workGroup")
                         .build())
                 .glue(GlueTableReferenceProperty.builder()
                         .databaseName("databaseName")
                         .region("region")
                         .tableName("tableName")
                         .build())
                 .snowflake(SnowflakeTableReferenceProperty.builder()
                         .accountIdentifier("accountIdentifier")
                         .databaseName("databaseName")
                         .schemaName("schemaName")
                         .secretArn("secretArn")
                         .tableName("tableName")
                         .tableSchema(SnowflakeTableSchemaProperty.builder()
                                 .v1(List.of(SnowflakeTableSchemaV1Property.builder()
                                         .columnName("columnName")
                                         .columnType("columnType")
                                         .build()))
                                 .build())
                         .build())
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build())
 .strategy(mergeStrategy)
 .build();
 

See Also:
  • Field Details

    • CFN_PROPERTY_KEYS

      @Stability(Stable) protected static final List<String> CFN_PROPERTY_KEYS
  • Constructor Details

    • CfnConfiguredTablePropsMixin

      protected CfnConfiguredTablePropsMixin(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnConfiguredTablePropsMixin

      protected CfnConfiguredTablePropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnConfiguredTablePropsMixin

      @Stability(Stable) public CfnConfiguredTablePropsMixin(@NotNull CfnConfiguredTableMixinProps props, @Nullable CfnPropertyMixinOptions options)
      Create a mixin to apply properties to AWS::CleanRooms::ConfiguredTable.

      Parameters:
      props - L1 properties to apply. This parameter is required.
      options - Mixin options.
    • CfnConfiguredTablePropsMixin

      @Stability(Stable) public CfnConfiguredTablePropsMixin(@NotNull CfnConfiguredTableMixinProps props)
      Create a mixin to apply properties to AWS::CleanRooms::ConfiguredTable.

      Parameters:
      props - L1 properties to apply. This parameter is required.
  • Method Details

    • applyTo

      @Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct)
      Apply the mixin properties to the construct.

      Specified by:
      applyTo in interface software.constructs.IMixin
      Specified by:
      applyTo in class Mixin
      Parameters:
      construct - This parameter is required.
    • supports

      @Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct)
      Check if this mixin supports the given construct.

      Specified by:
      supports in interface software.constructs.IMixin
      Overrides:
      supports in class Mixin
      Parameters:
      construct - This parameter is required.
    • getProps

      @Stability(Stable) @NotNull protected CfnConfiguredTableMixinProps getProps()
    • getStrategy

      @Stability(Stable) @NotNull protected IMergeStrategy getStrategy()