BindToCodePipelineOptions¶
-
class
aws_cdk.aws_codebuild.
BindToCodePipelineOptions
(*, artifact_bucket)¶ Bases:
object
The extra options passed to the {@link IProject.bindToCodePipeline} method.
- Parameters
artifact_bucket (
IBucket
) – The artifact bucket that will be used by the action that invokes this project.- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_codebuild as codebuild import aws_cdk.aws_s3 as s3 # bucket: s3.Bucket bind_to_code_pipeline_options = codebuild.BindToCodePipelineOptions( artifact_bucket=bucket )
Attributes