BuildBatchReference
- class aws_cdk.interfaces.aws_codebuild.BuildBatchReference(*, build_batch_arn, build_batch_id)
Bases:
objectA reference to a BuildBatch resource.
- Parameters:
build_batch_arn (
str) – The ARN of the BuildBatch resource.build_batch_id (
str) – The Id of the BuildBatch resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_codebuild as interfaces_codebuild build_batch_reference = interfaces_codebuild.BuildBatchReference( build_batch_arn="buildBatchArn", build_batch_id="buildBatchId" )
Attributes
- build_batch_arn
The ARN of the BuildBatch resource.
- build_batch_id
The Id of the BuildBatch resource.