aws-cdk-lib.aws_cleanrooms.CfnConfiguredTable.AggregateColumnProperty

interface AggregateColumnProperty

LanguageType name
.NETAmazon.CDK.aws_cleanrooms.CfnConfiguredTable.AggregateColumnProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnConfiguredTable_AggregateColumnProperty
Javaservices.cleanrooms.CfnConfiguredTable.AggregateColumnProperty
Pythonaws_cdk.aws_cleanrooms.CfnConfiguredTable.AggregateColumnProperty
TypeScript aws-cdk-lib » aws_cleanrooms » CfnConfiguredTable » 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-lib';
const aggregateColumnProperty: cleanrooms.CfnConfiguredTable.AggregateColumnProperty = {
  columnNames: ['columnNames'],
  function: 'function',
};

Properties

NameTypeDescription
columnNamesstring[]Column names in configured table of aggregate columns.
functionstringAggregation function that can be applied to aggregate column in query.

columnNames

Type: string[]

Column names in configured table of aggregate columns.


function

Type: string

Aggregation function that can be applied to aggregate column in query.