interface CfnIdMappingTableMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnIdMappingTableMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnIdMappingTableMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnIdMappingTableMixinProps |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnIdMappingTableMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnIdMappingTableMixinProps |
Properties for CfnIdMappingTablePropsMixin.
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 cfnIdMappingTableMixinProps: cleanrooms_mixins.CfnIdMappingTableMixinProps = {
description: 'description',
inputReferenceConfig: {
inputReferenceArn: 'inputReferenceArn',
manageResourcePolicies: false,
},
kmsKeyArn: 'kmsKeyArn',
membershipIdentifier: 'membershipIdentifier',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the ID mapping table. |
| input | IResolvable | Id | The input reference configuration for the ID mapping table. |
| kms | string | The Amazon Resource Name (ARN) of the AWS KMS key. |
| membership | string | The unique identifier of the membership resource for the ID mapping table. |
| name? | string | The name of the ID mapping table. |
| 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 mapping table.
inputReferenceConfig?
Type:
IResolvable | Id
(optional)
The input reference configuration for the ID mapping table.
kmsKeyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the AWS KMS key.
membershipIdentifier?
Type:
string
(optional)
The unique identifier of the membership resource for the ID mapping table.
name?
Type:
string
(optional)
The name of 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