interface CollaborationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CleanRooms.CollaborationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscleanrooms#CollaborationReference |
Java | software.amazon.awscdk.interfaces.cleanrooms.CollaborationReference |
Python | aws_cdk.interfaces.aws_cleanrooms.CollaborationReference |
TypeScript | aws-cdk-lib » interfaces » aws_cleanrooms » CollaborationReference |
A reference to a Collaboration 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_cleanrooms } from 'aws-cdk-lib/interfaces';
const collaborationReference: interfaces_cleanrooms.CollaborationReference = {
collaborationArn: 'collaborationArn',
collaborationIdentifier: 'collaborationIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| collaboration | string | The ARN of the Collaboration resource. |
| collaboration | string | The CollaborationIdentifier of the Collaboration resource. |
collaborationArn
Type:
string
The ARN of the Collaboration resource.
collaborationIdentifier
Type:
string
The CollaborationIdentifier of the Collaboration resource.

.NET
Go
Java
Python
TypeScript