interface IdMappingTableReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CleanRooms.IdMappingTableReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscleanrooms#IdMappingTableReference |
Java | software.amazon.awscdk.interfaces.cleanrooms.IdMappingTableReference |
Python | aws_cdk.interfaces.aws_cleanrooms.IdMappingTableReference |
TypeScript | aws-cdk-lib » interfaces » aws_cleanrooms » IdMappingTableReference |
A reference to a IdMappingTable resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cleanrooms as interfaces_aws_cleanrooms } from 'aws-cdk-lib/interfaces';
const idMappingTableReference: interfaces_aws_cleanrooms.IdMappingTableReference = {
idMappingTableArn: 'idMappingTableArn',
idMappingTableIdentifier: 'idMappingTableIdentifier',
membershipIdentifier: 'membershipIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The ARN of the IdMappingTable resource. |
| id | string | The IdMappingTableIdentifier of the IdMappingTable resource. |
| membership | string | The MembershipIdentifier of the IdMappingTable resource. |
idMappingTableArn
Type:
string
The ARN of the IdMappingTable resource.
idMappingTableIdentifier
Type:
string
The IdMappingTableIdentifier of the IdMappingTable resource.
membershipIdentifier
Type:
string
The MembershipIdentifier of the IdMappingTable resource.

.NET
Go
Java
Python
TypeScript