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