interface CfnConfiguredTableAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnConfiguredTableAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnConfiguredTableAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnConfiguredTableAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnConfiguredTableAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnConfiguredTableAssociationMixinProps |
Properties for CfnConfiguredTableAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const cfnConfiguredTableAssociationMixinProps: cleanrooms_mixins.CfnConfiguredTableAssociationMixinProps = {
configuredTableAssociationAnalysisRules: [{
policy: {
v1: {
aggregation: {
allowedAdditionalAnalyses: ['allowedAdditionalAnalyses'],
allowedResultReceivers: ['allowedResultReceivers'],
},
custom: {
allowedAdditionalAnalyses: ['allowedAdditionalAnalyses'],
allowedResultReceivers: ['allowedResultReceivers'],
},
list: {
allowedAdditionalAnalyses: ['allowedAdditionalAnalyses'],
allowedResultReceivers: ['allowedResultReceivers'],
},
},
},
type: 'type',
}],
configuredTableIdentifier: 'configuredTableIdentifier',
description: 'description',
membershipIdentifier: 'membershipIdentifier',
name: 'name',
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| configured | IResolvable | (IResolvable | Configured)[] | An analysis rule for a configured table association. |
| configured | string | A unique identifier for the configured table to be associated to. |
| description? | string | A description of the configured table association. |
| membership | string | The unique ID for the membership this configured table association belongs to. |
| name? | string | The name of the configured table association, in lowercase. |
| role | string | The service will assume this role to access catalog metadata and query the table. |
| tags? | Cfn[] | An optional label that you can assign to a resource when you create it. |
configuredTableAssociationAnalysisRules?
Type:
IResolvable | (IResolvable | Configured)[]
(optional)
An analysis rule for a configured table association.
This analysis rule specifies how data from the table can be used within its associated collaboration. In the console, the ConfiguredTableAssociationAnalysisRule is referred to as the collaboration analysis rule .
configuredTableIdentifier?
Type:
string
(optional)
A unique identifier for the configured table to be associated to.
Currently accepts a configured table ID.
description?
Type:
string
(optional)
A description of the configured table association.
membershipIdentifier?
Type:
string
(optional)
The unique ID for the membership this configured table association belongs to.
name?
Type:
string
(optional)
The name of the configured table association, in lowercase.
The table is identified by this name when running protected queries against the underlying data.
roleArn?
Type:
string
(optional)
The service will assume this role to access catalog metadata and query the table.
tags?
Type:
Cfn[]
(optional)
An optional label that you can assign to a resource when you create it.
Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.

.NET
Go
Java
Python
TypeScript