Interface CfnConfiguredTable.AggregationConstraintProperty

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

@Stability(Stable) public static interface CfnConfiguredTable.AggregationConstraintProperty extends software.amazon.jsii.JsiiSerializable
Constraint on query output removing output rows that do not meet a minimum number of distinct values of a specified column.

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.*;
 AggregationConstraintProperty aggregationConstraintProperty = AggregationConstraintProperty.builder()
         .columnName("columnName")
         .minimum(123)
         .type("type")
         .build();
 

See Also: