interface ProjectReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.LookoutVision.ProjectReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslookoutvision#ProjectReference |
Java | software.amazon.awscdk.interfaces.lookoutvision.ProjectReference |
Python | aws_cdk.interfaces.aws_lookoutvision.ProjectReference |
TypeScript | aws-cdk-lib » interfaces » aws_lookoutvision » 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_lookoutvision as interfaces_aws_lookoutvision } from 'aws-cdk-lib/interfaces';
const projectReference: interfaces_aws_lookoutvision.ProjectReference = {
projectArn: 'projectArn',
projectName: 'projectName',
};
Properties
| Name | Type | Description |
|---|---|---|
| project | string | The ARN of the Project resource. |
| project | string | The ProjectName of the Project resource. |
projectArn
Type:
string
The ARN of the Project resource.
projectName
Type:
string
The ProjectName of the Project resource.

.NET
Go
Java
Python
TypeScript