interface IdMappingTableInputReferenceConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnIdMappingTablePropsMixin.IdMappingTableInputReferenceConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnIdMappingTablePropsMixin_IdMappingTableInputReferenceConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnIdMappingTablePropsMixin.IdMappingTableInputReferenceConfigProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnIdMappingTablePropsMixin.IdMappingTableInputReferenceConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » 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 { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const idMappingTableInputReferenceConfigProperty: cleanrooms_mixins.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