interface AggregateColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnConfiguredTablePropsMixin.AggregateColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnConfiguredTablePropsMixin_AggregateColumnProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnConfiguredTablePropsMixin.AggregateColumnProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnConfiguredTablePropsMixin.AggregateColumnProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnConfiguredTablePropsMixin » AggregateColumnProperty |
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 { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const aggregateColumnProperty: cleanrooms_mixins.CfnConfiguredTablePropsMixin.AggregateColumnProperty = {
columnNames: ['columnNames'],
function: 'function',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | string[] | Column names in configured table of aggregate columns. |
| function? | string | Aggregation function that can be applied to aggregate column in query. |
columnNames?
Type:
string[]
(optional)
Column names in configured table of aggregate columns.
function?
Type:
string
(optional)
Aggregation function that can be applied to aggregate column in query.

.NET
Go
Java
Python
TypeScript