interface IdMappingTableInputReferenceConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRooms.CfnIdMappingTablePropsMixin.IdMappingTableInputReferenceConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanrooms#CfnIdMappingTablePropsMixin_IdMappingTableInputReferenceConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.CfnIdMappingTablePropsMixin.IdMappingTableInputReferenceConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanrooms.CfnIdMappingTablePropsMixin.IdMappingTableInputReferenceConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanrooms » CfnIdMappingTablePropsMixin » IdMappingTableInputReferenceConfigProperty |
Provides the input reference configuration for the ID mapping table.
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/cfn-property-mixins';
const idMappingTableInputReferenceConfigProperty: cleanrooms.CfnIdMappingTablePropsMixin.IdMappingTableInputReferenceConfigProperty = {
inputReferenceArn: 'inputReferenceArn',
manageResourcePolicies: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| input | string | The Amazon Resource Name (ARN) of the referenced resource in AWS Entity Resolution . |
| manage | boolean | IResolvable | When TRUE , AWS Clean Rooms manages permissions for the ID mapping table resource. |
inputReferenceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the referenced resource in AWS Entity Resolution .
Valid values are ID mapping workflow ARNs.
manageResourcePolicies?
Type:
boolean | IResolvable
(optional)
When TRUE , AWS Clean Rooms manages permissions for the ID mapping table resource.
When FALSE , the resource owner manages permissions for the ID mapping table resource.

.NET
Go
Java
Python
TypeScript