interface ProjectReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DataZone.ProjectReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdatazone#ProjectReference |
Java | software.amazon.awscdk.interfaces.datazone.ProjectReference |
Python | aws_cdk.interfaces.aws_datazone.ProjectReference |
TypeScript | aws-cdk-lib » interfaces » aws_datazone » ProjectReference |
A reference to a Project resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as interfaces_aws_datazone } from 'aws-cdk-lib/interfaces';
const projectReference: interfaces_aws_datazone.ProjectReference = {
domainId: 'domainId',
projectId: 'projectId',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DomainId of the Project resource. |
| project | string | The Id of the Project resource. |
domainId
Type:
string
The DomainId of the Project resource.
projectId
Type:
string
The Id of the Project resource.

.NET
Go
Java
Python
TypeScript