interface AggregationThresholdProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRooms.CfnIntermediateTable.AggregationThresholdProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnIntermediateTable_AggregationThresholdProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnIntermediateTable.AggregationThresholdProperty |
Python | aws_cdk.aws_cleanrooms.CfnIntermediateTable.AggregationThresholdProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnIntermediateTable » AggregationThresholdProperty |
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 aggregationThresholdProperty: cleanrooms.CfnIntermediateTable.AggregationThresholdProperty = {
allowedAggregateExpressionType: 'allowedAggregateExpressionType',
identityColumns: ['identityColumns'],
minimumIdentityCount: 123,
type: 'type',
// the properties below are optional
outputColumnThresholds: [{
minimumIdentityCount: 123,
outputColumnName: 'outputColumnName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string | |
| identity | string[] | |
| minimum | number | |
| type | string | |
| output | IResolvable | (IResolvable | Output)[] |
allowedAggregateExpressionType
Type:
string
identityColumns
Type:
string[]
minimumIdentityCount
Type:
number
type
Type:
string
outputColumnThresholds?
Type:
IResolvable | (IResolvable | Output)[]
(optional)

.NET
Go
Java
Python
TypeScript