interface ProjectProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_datazone.ProjectProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#ProjectProfileReference |
Java | software.amazon.awscdk.services.datazone.ProjectProfileReference |
Python | aws_cdk.aws_datazone.ProjectProfileReference |
TypeScript | aws-cdk-lib » aws_datazone » ProjectProfileReference |
A reference to a ProjectProfile 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 datazone } from 'aws-cdk-lib';
const projectProfileReference: datazone.ProjectProfileReference = {
domainIdentifier: 'domainIdentifier',
identifier: 'identifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DomainIdentifier of the ProjectProfile resource. |
| identifier | string | The Identifier of the ProjectProfile resource. |
domainIdentifier
Type:
string
The DomainIdentifier of the ProjectProfile resource.
identifier
Type:
string
The Identifier of the ProjectProfile resource.

.NET
Go
Java
Python
TypeScript