interface IdNamespaceAssociationInputReferenceConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnIdNamespaceAssociationPropsMixin.IdNamespaceAssociationInputReferenceConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnIdNamespaceAssociationPropsMixin_IdNamespaceAssociationInputReferenceConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnIdNamespaceAssociationPropsMixin.IdNamespaceAssociationInputReferenceConfigProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnIdNamespaceAssociationPropsMixin.IdNamespaceAssociationInputReferenceConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnIdNamespaceAssociationPropsMixin » IdNamespaceAssociationInputReferenceConfigProperty |
Provides the information for the ID namespace association input reference configuration.
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 idNamespaceAssociationInputReferenceConfigProperty: cleanrooms_mixins.CfnIdNamespaceAssociationPropsMixin.IdNamespaceAssociationInputReferenceConfigProperty = {
inputReferenceArn: 'inputReferenceArn',
manageResourcePolicies: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| input | string | The Amazon Resource Name (ARN) of the AWS Entity Resolution resource that is being associated to the collaboration. |
| manage | boolean | IResolvable | When TRUE , AWS Clean Rooms manages permissions for the ID namespace association resource. |
inputReferenceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the AWS Entity Resolution resource that is being associated to the collaboration.
Valid resource ARNs are from the ID namespaces that you own.
manageResourcePolicies?
Type:
boolean | IResolvable
(optional)
When TRUE , AWS Clean Rooms manages permissions for the ID namespace association resource.
When FALSE , the resource owner manages permissions for the ID namespace association resource.

.NET
Go
Java
Python
TypeScript