interface CfnIdNamespaceAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnIdNamespaceAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnIdNamespaceAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnIdNamespaceAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnIdNamespaceAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnIdNamespaceAssociationMixinProps |
Properties for CfnIdNamespaceAssociationPropsMixin.
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 cfnIdNamespaceAssociationMixinProps: cleanrooms_mixins.CfnIdNamespaceAssociationMixinProps = {
description: 'description',
idMappingConfig: {
allowUseAsDimensionColumn: false,
},
inputReferenceConfig: {
inputReferenceArn: 'inputReferenceArn',
manageResourcePolicies: false,
},
membershipIdentifier: 'membershipIdentifier',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the ID namespace association. |
| id | IResolvable | Id | The configuration settings for the ID mapping table. |
| input | IResolvable | Id | The input reference configuration for the ID namespace association. |
| membership | string | The unique identifier of the membership that contains the ID namespace association. |
| name? | string | The name of this ID namespace association. |
| tags? | Cfn[] | An optional label that you can assign to a resource when you create it. |
description?
Type:
string
(optional)
The description of the ID namespace association.
idMappingConfig?
Type:
IResolvable | Id
(optional)
The configuration settings for the ID mapping table.
inputReferenceConfig?
Type:
IResolvable | Id
(optional)
The input reference configuration for the ID namespace association.
membershipIdentifier?
Type:
string
(optional)
The unique identifier of the membership that contains the ID namespace association.
name?
Type:
string
(optional)
The name of this ID namespace association.
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