aws-cdk-lib.aws_codebuild.BindToCodePipelineOptions

interface BindToCodePipelineOptions

LanguageType name
.NETAmazon.CDK.AWS.CodeBuild.BindToCodePipelineOptions
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodebuild#BindToCodePipelineOptions
Javasoftware.amazon.awscdk.services.codebuild.BindToCodePipelineOptions
Pythonaws_cdk.aws_codebuild.BindToCodePipelineOptions
TypeScript (source)aws-cdk-lib » aws_codebuild » BindToCodePipelineOptions

The extra options passed to the IProject.bindToCodePipeline method.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codebuild as codebuild } from 'aws-cdk-lib';
import { aws_s3 as s3 } from 'aws-cdk-lib';

declare const bucket: s3.Bucket;
const bindToCodePipelineOptions: codebuild.BindToCodePipelineOptions = {
  artifactBucket: bucket,
};

Properties

NameTypeDescription
artifactBucketIBucketThe artifact bucket that will be used by the action that invokes this project.

artifactBucket

Type: IBucket

The artifact bucket that will be used by the action that invokes this project.