interface ProjectReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodeBuild.ProjectReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodebuild#ProjectReference |
Java | software.amazon.awscdk.services.codebuild.ProjectReference |
Python | aws_cdk.aws_codebuild.ProjectReference |
TypeScript | aws-cdk-lib » aws_codebuild » 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_codebuild as codebuild } from 'aws-cdk-lib';
const projectReference: codebuild.ProjectReference = {
projectArn: 'projectArn',
projectId: 'projectId',
};
Properties
| Name | Type | Description |
|---|---|---|
| project | string | The ARN of the Project resource. |
| project | string | The Id of the Project resource. |
projectArn
Type:
string
The ARN of the Project resource.
projectId
Type:
string
The Id of the Project resource.

.NET
Go
Java
Python
TypeScript