Interface CfnConfiguredTablePropsMixin.AggregationThresholdProperty

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

@Stability(Stable) public static interface CfnConfiguredTablePropsMixin.AggregationThresholdProperty 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.*;
 AggregationThresholdProperty aggregationThresholdProperty = AggregationThresholdProperty.builder()
         .allowedAggregateExpressionType("allowedAggregateExpressionType")
         .identityColumns(List.of("identityColumns"))
         .minimumIdentityCount(123)
         .outputColumnThresholds(List.of(OutputColumnThresholdProperty.builder()
                 .minimumIdentityCount(123)
                 .outputColumnName("outputColumnName")
                 .build()))
         .type("type")
         .build();
 

See Also: