interface CfnIntermediateTableProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRooms.CfnIntermediateTableProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnIntermediateTableProps |
Java | software.amazon.awscdk.services.cleanrooms.CfnIntermediateTableProps |
Python | aws_cdk.aws_cleanrooms.CfnIntermediateTableProps |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnIntermediateTableProps |
Properties for defining a CfnIntermediateTable.
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 cfnIntermediateTableProps: cleanrooms.CfnIntermediateTableProps = {
membershipIdentifier: 'membershipIdentifier',
name: 'name',
populationAnalysisConfiguration: {
sqlParameters: {
analysisTemplateArn: 'analysisTemplateArn',
queryString: 'queryString',
},
},
// the properties below are optional
analysisRules: [{
policy: {
v1: {
custom: {
allowedAnalyses: ['allowedAnalyses'],
// the properties below are optional
additionalAnalyses: 'additionalAnalyses',
allowedAnalysisProviders: ['allowedAnalysisProviders'],
allowedResultReceivers: ['allowedResultReceivers'],
differentialPrivacy: {
columns: [{
name: 'name',
}],
},
disallowedOutputColumns: ['disallowedOutputColumns'],
},
},
},
type: 'type',
}],
description: 'description',
kmsKeyArn: 'kmsKeyArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| membership | string | |
| name | string | |
| population | IResolvable | Population | |
| analysis | IResolvable | (IResolvable | Intermediate)[] | |
| description? | string | |
| kms | string | |
| tags? | Cfn[] |
membershipIdentifier
Type:
string
name
Type:
string
populationAnalysisConfiguration
Type:
IResolvable | Population
analysisRules?
Type:
IResolvable | (IResolvable | Intermediate)[]
(optional)
description?
Type:
string
(optional)
kmsKeyArn?
Type:
string
(optional)
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript