Interface CfnConfiguredTable.AggregateColumnProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfiguredTable.AggregateColumnProperty.Jsii$Proxy
- Enclosing class:
CfnConfiguredTable
@Stability(Stable)
public static interface CfnConfiguredTable.AggregateColumnProperty
extends software.amazon.jsii.JsiiSerializable
Column in configured table that can be used in aggregate function in query.
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.*; AggregateColumnProperty aggregateColumnProperty = AggregateColumnProperty.builder() .columnNames(List.of("columnNames")) .function("function") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConfiguredTable.AggregateColumnProperty
static final class
An implementation forCfnConfiguredTable.AggregateColumnProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Column names in configured table of aggregate columns.Aggregation function that can be applied to aggregate column in query.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnNames
Column names in configured table of aggregate columns.- See Also:
-
getFunction
Aggregation function that can be applied to aggregate column in query.- See Also:
-
builder
-