Class CfnConfiguredTable.AggregateColumnProperty
Column in configured table that can be used in aggregate function in query.
Implements
Inherited Members
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfiguredTable.AggregateColumnProperty : CfnConfiguredTable.IAggregateColumnProperty
Syntax (vb)
Public Class CfnConfiguredTable.AggregateColumnProperty Implements CfnConfiguredTable.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.Aws_cleanrooms;
var aggregateColumnProperty = new AggregateColumnProperty {
ColumnNames = new [] { "columnNames" },
Function = "function"
};
Synopsis
Constructors
AggregateColumnProperty() | Column in configured table that can be used in aggregate function in query. |
Properties
ColumnNames | Column names in configured table of aggregate columns. |
Function | Aggregation function that can be applied to aggregate column in query. |
Constructors
AggregateColumnProperty()
Column in configured table that can be used in aggregate function in query.
public AggregateColumnProperty()
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.Aws_cleanrooms;
var aggregateColumnProperty = new AggregateColumnProperty {
ColumnNames = new [] { "columnNames" },
Function = "function"
};
Properties
ColumnNames
Column names in configured table of aggregate columns.
public string[] ColumnNames { get; set; }
Property Value
string[]
Remarks
Function
Aggregation function that can be applied to aggregate column in query.
public string Function { get; set; }