interface AggregateColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRooms.CfnConfiguredTablePropsMixin.AggregateColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanrooms#CfnConfiguredTablePropsMixin_AggregateColumnProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.CfnConfiguredTablePropsMixin.AggregateColumnProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanrooms.CfnConfiguredTablePropsMixin.AggregateColumnProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanrooms » 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 { aws_cleanrooms as cleanrooms } from '@aws-cdk/cfn-property-mixins';
const aggregateColumnProperty: cleanrooms.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