interface BuildReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CodeBuild.BuildReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscodebuild#BuildReference |
Java | software.amazon.awscdk.interfaces.codebuild.BuildReference |
Python | aws_cdk.interfaces.aws_codebuild.BuildReference |
TypeScript | aws-cdk-lib » interfaces » aws_codebuild » BuildReference |
A reference to a Build 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 interfaces_codebuild } from 'aws-cdk-lib/interfaces';
const buildReference: interfaces_codebuild.BuildReference = {
buildArn: 'buildArn',
buildId: 'buildId',
};
Properties
| Name | Type | Description |
|---|---|---|
| build | string | The ARN of the Build resource. |
| build | string | The Id of the Build resource. |
buildArn
Type:
string
The ARN of the Build resource.
buildId
Type:
string
The Id of the Build resource.

.NET
Go
Java
Python
TypeScript