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

.NET
Go
Java
Python
TypeScript