diff --git a/packages/@aws-cdk/aws-codebuild/lib/artifacts.ts b/packages/@aws-cdk/aws-codebuild/lib/artifacts.ts index 586d52b5e3e78..e6b66a63ac9a4 100644 --- a/packages/@aws-cdk/aws-codebuild/lib/artifacts.ts +++ b/packages/@aws-cdk/aws-codebuild/lib/artifacts.ts @@ -92,7 +92,7 @@ export interface S3BucketBuildArtifactsProps extends BuildArtifactsProps { * The name of the build output ZIP file or folder inside the bucket. * * The full S3 object key will be "//" or - * "/" depending on whether `includeBuildID` is set to true. + * "/" depending on whether `includeBuildId` is set to true. */ name: string; @@ -102,7 +102,7 @@ export interface S3BucketBuildArtifactsProps extends BuildArtifactsProps { * * @default true */ - includeBuildID?: boolean; + includeBuildId?: boolean; /** * If this is true, all build output will be packaged into a single .zip file. @@ -131,7 +131,7 @@ export class S3BucketBuildArtifacts extends BuildArtifacts { return { location: this.props.bucket.bucketName, path: this.props.path, - namespaceType: this.props.includeBuildID === false ? 'NONE' : 'BUILD_ID', + namespaceType: this.props.includeBuildId === false ? 'NONE' : 'BUILD_ID', name: this.props.name, packaging: this.props.packageZip === false ? 'NONE' : 'ZIP', };