Interface CfnConfiguredTablePropsMixin.IAggregateColumnProperty
Column in configured table that can be used in aggregate function in query.
Namespace: Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnConfiguredTablePropsMixin.IAggregateColumnProperty
Syntax (vb)
Public Interface CfnConfiguredTablePropsMixin.IAggregateColumnProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins;
var aggregateColumnProperty = new AggregateColumnProperty {
ColumnNames = new [] { "columnNames" },
Function = "function"
};
Synopsis
Properties
| ColumnNames | Column names in configured table of aggregate columns. |
| Function | Aggregation function that can be applied to aggregate column in query. |
Properties
ColumnNames
Column names in configured table of aggregate columns.
string[]? ColumnNames { get; }
Property Value
string[]
Remarks
Function
Aggregation function that can be applied to aggregate column in query.
string? Function { get; }