BindToCodePipelineOptions
- class aws_cdk.aws_codebuild.BindToCodePipelineOptions(*, artifact_bucket)
Bases:
object
The extra options passed to the
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. from aws_cdk import aws_codebuild as codebuild from aws_cdk import aws_s3 as s3 # bucket: s3.Bucket bind_to_code_pipeline_options = codebuild.BindToCodePipelineOptions( artifact_bucket=bucket )
Attributes
- artifact_bucket
The artifact bucket that will be used by the action that invokes this project.