BuildReference
- class aws_cdk.interfaces.aws_codebuild.BuildReference(*, build_arn, build_id)
Bases:
objectA reference to a Build resource.
- Parameters:
build_arn (
str) – The ARN of the Build resource.build_id (
str) – The Id of the Build 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_reference = interfaces_codebuild.BuildReference( build_arn="buildArn", build_id="buildId" )
Attributes
- build_arn
The ARN of the Build resource.
- build_id
The Id of the Build resource.