interface IdNamespaceAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CleanRooms.IdNamespaceAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscleanrooms#IdNamespaceAssociationReference |
Java | software.amazon.awscdk.interfaces.cleanrooms.IdNamespaceAssociationReference |
Python | aws_cdk.interfaces.aws_cleanrooms.IdNamespaceAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_cleanrooms » IdNamespaceAssociationReference |
A reference to a IdNamespaceAssociation 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 idNamespaceAssociationReference: interfaces_aws_cleanrooms.IdNamespaceAssociationReference = {
idNamespaceAssociationArn: 'idNamespaceAssociationArn',
idNamespaceAssociationIdentifier: 'idNamespaceAssociationIdentifier',
membershipIdentifier: 'membershipIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The ARN of the IdNamespaceAssociation resource. |
| id | string | The IdNamespaceAssociationIdentifier of the IdNamespaceAssociation resource. |
| membership | string | The MembershipIdentifier of the IdNamespaceAssociation resource. |
idNamespaceAssociationArn
Type:
string
The ARN of the IdNamespaceAssociation resource.
idNamespaceAssociationIdentifier
Type:
string
The IdNamespaceAssociationIdentifier of the IdNamespaceAssociation resource.
membershipIdentifier
Type:
string
The MembershipIdentifier of the IdNamespaceAssociation resource.

.NET
Go
Java
Python
TypeScript