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

.NET
Go
Java
Python
TypeScript