aws-sdk 2.950.0 → 2.954.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/CHANGELOG.md +25 -1
  2. package/README.md +1 -1
  3. package/apis/codebuild-2016-10-06.min.json +134 -131
  4. package/apis/databrew-2017-07-25.min.json +177 -61
  5. package/apis/ec2-2016-11-15.min.json +1298 -982
  6. package/apis/elasticmapreduce-2009-03-31.min.json +84 -28
  7. package/apis/elasticmapreduce-2009-03-31.paginators.json +5 -0
  8. package/apis/kendra-2019-02-03.min.json +59 -35
  9. package/apis/medialive-2017-10-14.min.json +221 -201
  10. package/apis/monitoring-2010-08-01.min.json +23 -22
  11. package/apis/personalize-2018-05-22.min.json +1 -2
  12. package/apis/qldb-2019-01-02.min.json +51 -28
  13. package/apis/rds-2014-10-31.min.json +3 -0
  14. package/apis/s3control-2018-08-20.min.json +64 -55
  15. package/apis/s3outposts-2017-07-25.min.json +9 -2
  16. package/apis/securityhub-2018-10-26.min.json +409 -207
  17. package/apis/synthetics-2017-10-11.min.json +40 -3
  18. package/apis/textract-2018-06-27.min.json +144 -46
  19. package/clients/cloudwatch.d.ts +19 -14
  20. package/clients/codebuild.d.ts +130 -126
  21. package/clients/databrew.d.ts +123 -8
  22. package/clients/ec2.d.ts +424 -109
  23. package/clients/elbv2.d.ts +1 -1
  24. package/clients/emr.d.ts +146 -56
  25. package/clients/iam.d.ts +4 -4
  26. package/clients/identitystore.d.ts +15 -15
  27. package/clients/imagebuilder.d.ts +1 -1
  28. package/clients/kendra.d.ts +39 -8
  29. package/clients/lambda.d.ts +14 -14
  30. package/clients/medialive.d.ts +16 -0
  31. package/clients/personalize.d.ts +15 -15
  32. package/clients/proton.d.ts +54 -54
  33. package/clients/qldb.d.ts +51 -15
  34. package/clients/rds.d.ts +8 -4
  35. package/clients/s3control.d.ts +100 -78
  36. package/clients/s3outposts.d.ts +44 -13
  37. package/clients/securityhub.d.ts +473 -143
  38. package/clients/synthetics.d.ts +27 -10
  39. package/clients/textract.d.ts +92 -1
  40. package/dist/aws-sdk-core-react-native.js +1 -1
  41. package/dist/aws-sdk-react-native.js +17 -17
  42. package/dist/aws-sdk.js +1551 -1168
  43. package/dist/aws-sdk.min.js +76 -76
  44. package/lib/core.js +1 -1
  45. package/package.json +1 -1
@@ -76,11 +76,11 @@ declare class CodeBuild extends Service {
76
76
  */
77
77
  createReportGroup(callback?: (err: AWSError, data: CodeBuild.Types.CreateReportGroupOutput) => void): Request<CodeBuild.Types.CreateReportGroupOutput, AWSError>;
78
78
  /**
79
- * For an existing CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository, enables CodeBuild to start rebuilding the source code every time a code change is pushed to the repository. If you enable webhooks for an CodeBuild project, and the project is used as a build step in CodePipeline, then two identical builds are created for each commit. One build is triggered through webhooks, and one through CodePipeline. Because billing is on a per-build basis, you are billed for both builds. Therefore, if you are using CodePipeline, we recommend that you disable webhooks in CodeBuild. In the CodeBuild console, clear the Webhook box. For more information, see step 5 in Change a Build Project's Settings.
79
+ * For an existing AWS CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository, enables AWS CodeBuild to start rebuilding the source code every time a code change is pushed to the repository. If you enable webhooks for an AWS CodeBuild project, and the project is used as a build step in AWS CodePipeline, then two identical builds are created for each commit. One build is triggered through webhooks, and one through AWS CodePipeline. Because billing is on a per-build basis, you are billed for both builds. Therefore, if you are using AWS CodePipeline, we recommend that you disable webhooks in AWS CodeBuild. In the AWS CodeBuild console, clear the Webhook box. For more information, see step 5 in Change a Build Project's Settings.
80
80
  */
81
81
  createWebhook(params: CodeBuild.Types.CreateWebhookInput, callback?: (err: AWSError, data: CodeBuild.Types.CreateWebhookOutput) => void): Request<CodeBuild.Types.CreateWebhookOutput, AWSError>;
82
82
  /**
83
- * For an existing CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository, enables CodeBuild to start rebuilding the source code every time a code change is pushed to the repository. If you enable webhooks for an CodeBuild project, and the project is used as a build step in CodePipeline, then two identical builds are created for each commit. One build is triggered through webhooks, and one through CodePipeline. Because billing is on a per-build basis, you are billed for both builds. Therefore, if you are using CodePipeline, we recommend that you disable webhooks in CodeBuild. In the CodeBuild console, clear the Webhook box. For more information, see step 5 in Change a Build Project's Settings.
83
+ * For an existing AWS CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository, enables AWS CodeBuild to start rebuilding the source code every time a code change is pushed to the repository. If you enable webhooks for an AWS CodeBuild project, and the project is used as a build step in AWS CodePipeline, then two identical builds are created for each commit. One build is triggered through webhooks, and one through AWS CodePipeline. Because billing is on a per-build basis, you are billed for both builds. Therefore, if you are using AWS CodePipeline, we recommend that you disable webhooks in AWS CodeBuild. In the AWS CodeBuild console, clear the Webhook box. For more information, see step 5 in Change a Build Project's Settings.
84
84
  */
85
85
  createWebhook(callback?: (err: AWSError, data: CodeBuild.Types.CreateWebhookOutput) => void): Request<CodeBuild.Types.CreateWebhookOutput, AWSError>;
86
86
  /**
@@ -132,11 +132,11 @@ declare class CodeBuild extends Service {
132
132
  */
133
133
  deleteSourceCredentials(callback?: (err: AWSError, data: CodeBuild.Types.DeleteSourceCredentialsOutput) => void): Request<CodeBuild.Types.DeleteSourceCredentialsOutput, AWSError>;
134
134
  /**
135
- * For an existing CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository, stops CodeBuild from rebuilding the source code every time a code change is pushed to the repository.
135
+ * For an existing AWS CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository, stops AWS CodeBuild from rebuilding the source code every time a code change is pushed to the repository.
136
136
  */
137
137
  deleteWebhook(params: CodeBuild.Types.DeleteWebhookInput, callback?: (err: AWSError, data: CodeBuild.Types.DeleteWebhookOutput) => void): Request<CodeBuild.Types.DeleteWebhookOutput, AWSError>;
138
138
  /**
139
- * For an existing CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository, stops CodeBuild from rebuilding the source code every time a code change is pushed to the repository.
139
+ * For an existing AWS CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository, stops AWS CodeBuild from rebuilding the source code every time a code change is pushed to the repository.
140
140
  */
141
141
  deleteWebhook(callback?: (err: AWSError, data: CodeBuild.Types.DeleteWebhookOutput) => void): Request<CodeBuild.Types.DeleteWebhookOutput, AWSError>;
142
142
  /**
@@ -172,11 +172,11 @@ declare class CodeBuild extends Service {
172
172
  */
173
173
  getResourcePolicy(callback?: (err: AWSError, data: CodeBuild.Types.GetResourcePolicyOutput) => void): Request<CodeBuild.Types.GetResourcePolicyOutput, AWSError>;
174
174
  /**
175
- * Imports the source repository credentials for an CodeBuild project that has its source code stored in a GitHub, GitHub Enterprise, or Bitbucket repository.
175
+ * Imports the source repository credentials for an AWS CodeBuild project that has its source code stored in a GitHub, GitHub Enterprise, or Bitbucket repository.
176
176
  */
177
177
  importSourceCredentials(params: CodeBuild.Types.ImportSourceCredentialsInput, callback?: (err: AWSError, data: CodeBuild.Types.ImportSourceCredentialsOutput) => void): Request<CodeBuild.Types.ImportSourceCredentialsOutput, AWSError>;
178
178
  /**
179
- * Imports the source repository credentials for an CodeBuild project that has its source code stored in a GitHub, GitHub Enterprise, or Bitbucket repository.
179
+ * Imports the source repository credentials for an AWS CodeBuild project that has its source code stored in a GitHub, GitHub Enterprise, or Bitbucket repository.
180
180
  */
181
181
  importSourceCredentials(callback?: (err: AWSError, data: CodeBuild.Types.ImportSourceCredentialsOutput) => void): Request<CodeBuild.Types.ImportSourceCredentialsOutput, AWSError>;
182
182
  /**
@@ -220,11 +220,11 @@ declare class CodeBuild extends Service {
220
220
  */
221
221
  listBuildsForProject(callback?: (err: AWSError, data: CodeBuild.Types.ListBuildsForProjectOutput) => void): Request<CodeBuild.Types.ListBuildsForProjectOutput, AWSError>;
222
222
  /**
223
- * Gets information about Docker images that are managed by CodeBuild.
223
+ * Gets information about Docker images that are managed by AWS CodeBuild.
224
224
  */
225
225
  listCuratedEnvironmentImages(params: CodeBuild.Types.ListCuratedEnvironmentImagesInput, callback?: (err: AWSError, data: CodeBuild.Types.ListCuratedEnvironmentImagesOutput) => void): Request<CodeBuild.Types.ListCuratedEnvironmentImagesOutput, AWSError>;
226
226
  /**
227
- * Gets information about Docker images that are managed by CodeBuild.
227
+ * Gets information about Docker images that are managed by AWS CodeBuild.
228
228
  */
229
229
  listCuratedEnvironmentImages(callback?: (err: AWSError, data: CodeBuild.Types.ListCuratedEnvironmentImagesOutput) => void): Request<CodeBuild.Types.ListCuratedEnvironmentImagesOutput, AWSError>;
230
230
  /**
@@ -236,19 +236,19 @@ declare class CodeBuild extends Service {
236
236
  */
237
237
  listProjects(callback?: (err: AWSError, data: CodeBuild.Types.ListProjectsOutput) => void): Request<CodeBuild.Types.ListProjectsOutput, AWSError>;
238
238
  /**
239
- * Gets a list ARNs for the report groups in the current Amazon Web Services account.
239
+ * Gets a list ARNs for the report groups in the current AWS account.
240
240
  */
241
241
  listReportGroups(params: CodeBuild.Types.ListReportGroupsInput, callback?: (err: AWSError, data: CodeBuild.Types.ListReportGroupsOutput) => void): Request<CodeBuild.Types.ListReportGroupsOutput, AWSError>;
242
242
  /**
243
- * Gets a list ARNs for the report groups in the current Amazon Web Services account.
243
+ * Gets a list ARNs for the report groups in the current AWS account.
244
244
  */
245
245
  listReportGroups(callback?: (err: AWSError, data: CodeBuild.Types.ListReportGroupsOutput) => void): Request<CodeBuild.Types.ListReportGroupsOutput, AWSError>;
246
246
  /**
247
- * Returns a list of ARNs for the reports in the current Amazon Web Services account.
247
+ * Returns a list of ARNs for the reports in the current AWS account.
248
248
  */
249
249
  listReports(params: CodeBuild.Types.ListReportsInput, callback?: (err: AWSError, data: CodeBuild.Types.ListReportsOutput) => void): Request<CodeBuild.Types.ListReportsOutput, AWSError>;
250
250
  /**
251
- * Returns a list of ARNs for the reports in the current Amazon Web Services account.
251
+ * Returns a list of ARNs for the reports in the current AWS account.
252
252
  */
253
253
  listReports(callback?: (err: AWSError, data: CodeBuild.Types.ListReportsOutput) => void): Request<CodeBuild.Types.ListReportsOutput, AWSError>;
254
254
  /**
@@ -260,19 +260,19 @@ declare class CodeBuild extends Service {
260
260
  */
261
261
  listReportsForReportGroup(callback?: (err: AWSError, data: CodeBuild.Types.ListReportsForReportGroupOutput) => void): Request<CodeBuild.Types.ListReportsForReportGroupOutput, AWSError>;
262
262
  /**
263
- * Gets a list of projects that are shared with other Amazon Web Services accounts or users.
263
+ * Gets a list of projects that are shared with other AWS accounts or users.
264
264
  */
265
265
  listSharedProjects(params: CodeBuild.Types.ListSharedProjectsInput, callback?: (err: AWSError, data: CodeBuild.Types.ListSharedProjectsOutput) => void): Request<CodeBuild.Types.ListSharedProjectsOutput, AWSError>;
266
266
  /**
267
- * Gets a list of projects that are shared with other Amazon Web Services accounts or users.
267
+ * Gets a list of projects that are shared with other AWS accounts or users.
268
268
  */
269
269
  listSharedProjects(callback?: (err: AWSError, data: CodeBuild.Types.ListSharedProjectsOutput) => void): Request<CodeBuild.Types.ListSharedProjectsOutput, AWSError>;
270
270
  /**
271
- * Gets a list of report groups that are shared with other Amazon Web Services accounts or users.
271
+ * Gets a list of report groups that are shared with other AWS accounts or users.
272
272
  */
273
273
  listSharedReportGroups(params: CodeBuild.Types.ListSharedReportGroupsInput, callback?: (err: AWSError, data: CodeBuild.Types.ListSharedReportGroupsOutput) => void): Request<CodeBuild.Types.ListSharedReportGroupsOutput, AWSError>;
274
274
  /**
275
- * Gets a list of report groups that are shared with other Amazon Web Services accounts or users.
275
+ * Gets a list of report groups that are shared with other AWS accounts or users.
276
276
  */
277
277
  listSharedReportGroups(callback?: (err: AWSError, data: CodeBuild.Types.ListSharedReportGroupsOutput) => void): Request<CodeBuild.Types.ListSharedReportGroupsOutput, AWSError>;
278
278
  /**
@@ -356,11 +356,11 @@ declare class CodeBuild extends Service {
356
356
  */
357
357
  updateReportGroup(callback?: (err: AWSError, data: CodeBuild.Types.UpdateReportGroupOutput) => void): Request<CodeBuild.Types.UpdateReportGroupOutput, AWSError>;
358
358
  /**
359
- * Updates the webhook associated with an CodeBuild build project. If you use Bitbucket for your repository, rotateSecret is ignored.
359
+ * Updates the webhook associated with an AWS CodeBuild build project. If you use Bitbucket for your repository, rotateSecret is ignored.
360
360
  */
361
361
  updateWebhook(params: CodeBuild.Types.UpdateWebhookInput, callback?: (err: AWSError, data: CodeBuild.Types.UpdateWebhookOutput) => void): Request<CodeBuild.Types.UpdateWebhookOutput, AWSError>;
362
362
  /**
363
- * Updates the webhook associated with an CodeBuild build project. If you use Bitbucket for your repository, rotateSecret is ignored.
363
+ * Updates the webhook associated with an AWS CodeBuild build project. If you use Bitbucket for your repository, rotateSecret is ignored.
364
364
  */
365
365
  updateWebhook(callback?: (err: AWSError, data: CodeBuild.Types.UpdateWebhookOutput) => void): Request<CodeBuild.Types.UpdateWebhookOutput, AWSError>;
366
366
  }
@@ -419,7 +419,7 @@ declare namespace CodeBuild {
419
419
  }
420
420
  export interface BatchGetProjectsInput {
421
421
  /**
422
- * The names or ARNs of the build projects. To get information about a project shared with your Amazon Web Services account, its ARN must be specified. You cannot specify a shared project using its name.
422
+ * The names or ARNs of the build projects. To get information about a project shared with your AWS account, its ARN must be specified. You cannot specify a shared project using its name.
423
423
  */
424
424
  names: ProjectNames;
425
425
  }
@@ -471,11 +471,12 @@ declare namespace CodeBuild {
471
471
  */
472
472
  maximumBuildsAllowed?: WrapperInt;
473
473
  /**
474
- * An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the CodeBuild User Guide for these values.
474
+ * An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the AWS CodeBuild User Guide for these values.
475
475
  */
476
476
  computeTypesAllowed?: ComputeTypesAllowed;
477
477
  }
478
478
  export type Boolean = boolean;
479
+ export type BucketOwnerAccess = "NONE"|"READ_ONLY"|"FULL"|string;
479
480
  export interface Build {
480
481
  /**
481
482
  * The unique ID for the build.
@@ -506,15 +507,15 @@ declare namespace CodeBuild {
506
507
  */
507
508
  buildStatus?: StatusType;
508
509
  /**
509
- * Any version identifier for the version of the source code to be built. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence. For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
510
+ * Any version identifier for the version of the source code to be built. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence. For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide.
510
511
  */
511
512
  sourceVersion?: NonEmptyString;
512
513
  /**
513
- * An identifier for the version of this build's source code. For CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID. For CodePipeline, the source revision provided by CodePipeline. For Amazon S3, this does not apply.
514
+ * An identifier for the version of this build's source code. For AWS CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID. For AWS CodePipeline, the source revision provided by AWS CodePipeline. For Amazon S3, this does not apply.
514
515
  */
515
516
  resolvedSourceVersion?: NonEmptyString;
516
517
  /**
517
- * The name of the CodeBuild project.
518
+ * The name of the AWS CodeBuild project.
518
519
  */
519
520
  projectName?: NonEmptyString;
520
521
  /**
@@ -530,7 +531,7 @@ declare namespace CodeBuild {
530
531
  */
531
532
  secondarySources?: ProjectSources;
532
533
  /**
533
- * An array of ProjectSourceVersion objects. Each ProjectSourceVersion must be one of: For CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use.
534
+ * An array of ProjectSourceVersion objects. Each ProjectSourceVersion must be one of: For AWS CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use.
534
535
  */
535
536
  secondarySourceVersions?: ProjectSecondarySourceVersions;
536
537
  /**
@@ -554,11 +555,11 @@ declare namespace CodeBuild {
554
555
  */
555
556
  serviceRole?: NonEmptyString;
556
557
  /**
557
- * Information about the build's logs in CloudWatch Logs.
558
+ * Information about the build's logs in Amazon CloudWatch Logs.
558
559
  */
559
560
  logs?: LogsLocation;
560
561
  /**
561
- * How long, in minutes, for CodeBuild to wait before timing out this build if it does not get marked as completed.
562
+ * How long, in minutes, for AWS CodeBuild to wait before timing out this build if it does not get marked as completed.
562
563
  */
563
564
  timeoutInMinutes?: WrapperInt;
564
565
  /**
@@ -570,11 +571,11 @@ declare namespace CodeBuild {
570
571
  */
571
572
  buildComplete?: Boolean;
572
573
  /**
573
- * The entity that started the build. Valid values include: If CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline). If an Identity and Access Management user started the build, the user's name (for example, MyUserName). If the Jenkins plugin for CodeBuild started the build, the string CodeBuild-Jenkins-Plugin.
574
+ * The entity that started the build. Valid values include: If AWS CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline). If an AWS Identity and Access Management (IAM) user started the build, the user's name (for example, MyUserName). If the Jenkins plugin for AWS CodeBuild started the build, the string CodeBuild-Jenkins-Plugin.
574
575
  */
575
576
  initiator?: String;
576
577
  /**
577
- * If your CodeBuild project accesses resources in an Amazon VPC, you provide this parameter that identifies the VPC ID and the list of security group IDs and subnet IDs. The security groups and subnets must belong to the same VPC. You must provide at least one security group and one subnet ID.
578
+ * If your AWS CodeBuild project accesses resources in an Amazon VPC, you provide this parameter that identifies the VPC ID and the list of security group IDs and subnet IDs. The security groups and subnets must belong to the same VPC. You must provide at least one security group and one subnet ID.
578
579
  */
579
580
  vpcConfig?: VpcConfig;
580
581
  /**
@@ -582,11 +583,11 @@ declare namespace CodeBuild {
582
583
  */
583
584
  networkInterface?: NetworkInterface;
584
585
  /**
585
- * The Key Management Service customer master key (CMK) to be used for encrypting the build output artifacts. You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/&lt;alias-name&gt;).
586
+ * The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts. You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/&lt;alias-name&gt;).
586
587
  */
587
588
  encryptionKey?: NonEmptyString;
588
589
  /**
589
- * A list of exported environment variables for this build. Exported environment variables are used in conjunction with CodePipeline to export environment variables from the current build stage to subsequent stages in the pipeline. For more information, see Working with variables in the CodePipeline User Guide.
590
+ * A list of exported environment variables for this build. Exported environment variables are used in conjunction with AWS CodePipeline to export environment variables from the current build stage to subsequent stages in the pipeline. For more information, see Working with variables in the AWS CodePipeline User Guide.
590
591
  */
591
592
  exportedEnvironmentVariables?: ExportedEnvironmentVariables;
592
593
  /**
@@ -631,6 +632,7 @@ declare namespace CodeBuild {
631
632
  * An identifier for this artifact definition.
632
633
  */
633
634
  artifactIdentifier?: String;
635
+ bucketOwnerAccess?: BucketOwnerAccess;
634
636
  }
635
637
  export type BuildArtifactsList = BuildArtifacts[];
636
638
  export interface BuildBatch {
@@ -663,7 +665,7 @@ declare namespace CodeBuild {
663
665
  */
664
666
  sourceVersion?: NonEmptyString;
665
667
  /**
666
- * The identifier of the resolved version of this batch build's source code. For CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID. For CodePipeline, the source revision provided by CodePipeline. For Amazon S3, this does not apply.
668
+ * The identifier of the resolved version of this batch build's source code. For AWS CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID. For AWS CodePipeline, the source revision provided by AWS CodePipeline. For Amazon S3, this does not apply.
667
669
  */
668
670
  resolvedSourceVersion?: NonEmptyString;
669
671
  /**
@@ -680,7 +682,7 @@ declare namespace CodeBuild {
680
682
  */
681
683
  secondarySources?: ProjectSources;
682
684
  /**
683
- * An array of ProjectSourceVersion objects. Each ProjectSourceVersion must be one of: For CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use.
685
+ * An array of ProjectSourceVersion objects. Each ProjectSourceVersion must be one of: For AWS CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use.
684
686
  */
685
687
  secondarySourceVersions?: ProjectSecondarySourceVersions;
686
688
  /**
@@ -711,12 +713,12 @@ declare namespace CodeBuild {
711
713
  */
712
714
  complete?: Boolean;
713
715
  /**
714
- * The entity that started the batch build. Valid values include: If CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline). If an Identity and Access Management user started the build, the user's name. If the Jenkins plugin for CodeBuild started the build, the string CodeBuild-Jenkins-Plugin.
716
+ * The entity that started the batch build. Valid values include: If AWS CodePipeline started the build, the pipeline's name (for example, codepipeline/my-demo-pipeline). If an AWS Identity and Access Management (IAM) user started the build, the user's name. If the Jenkins plugin for AWS CodeBuild started the build, the string CodeBuild-Jenkins-Plugin.
715
717
  */
716
718
  initiator?: String;
717
719
  vpcConfig?: VpcConfig;
718
720
  /**
719
- * The Key Management Service customer master key (CMK) to be used for encrypting the batch build output artifacts. You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/&lt;alias-name&gt;).
721
+ * The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the batch build output artifacts. You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/&lt;alias-name&gt;).
720
722
  */
721
723
  encryptionKey?: NonEmptyString;
722
724
  /**
@@ -875,15 +877,15 @@ declare namespace CodeBuild {
875
877
  export type CacheType = "NO_CACHE"|"S3"|"LOCAL"|string;
876
878
  export interface CloudWatchLogsConfig {
877
879
  /**
878
- * The current status of the logs in CloudWatch Logs for a build project. Valid values are: ENABLED: CloudWatch Logs are enabled for this build project. DISABLED: CloudWatch Logs are not enabled for this build project.
880
+ * The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are: ENABLED: Amazon CloudWatch Logs are enabled for this build project. DISABLED: Amazon CloudWatch Logs are not enabled for this build project.
879
881
  */
880
882
  status: LogsConfigStatusType;
881
883
  /**
882
- * The group name of the logs in CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.
884
+ * The group name of the logs in Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.
883
885
  */
884
886
  groupName?: String;
885
887
  /**
886
- * The prefix of the stream name of the CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.
888
+ * The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.
887
889
  */
888
890
  streamName?: String;
889
891
  }
@@ -976,7 +978,7 @@ declare namespace CodeBuild {
976
978
  */
977
979
  secondarySources?: ProjectSources;
978
980
  /**
979
- * A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of: For CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level). For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
981
+ * A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of: For AWS CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level). For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide.
980
982
  */
981
983
  sourceVersion?: String;
982
984
  /**
@@ -1000,11 +1002,11 @@ declare namespace CodeBuild {
1000
1002
  */
1001
1003
  environment: ProjectEnvironment;
1002
1004
  /**
1003
- * The ARN of the Identity and Access Management role that enables CodeBuild to interact with dependent Amazon Web Services services on behalf of the Amazon Web Services account.
1005
+ * The ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.
1004
1006
  */
1005
1007
  serviceRole: NonEmptyString;
1006
1008
  /**
1007
- * How long, in minutes, from 5 to 480 (8 hours), for CodeBuild to wait before it times out any build that has not been marked as completed. The default is 60 minutes.
1009
+ * How long, in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait before it times out any build that has not been marked as completed. The default is 60 minutes.
1008
1010
  */
1009
1011
  timeoutInMinutes?: TimeOut;
1010
1012
  /**
@@ -1012,15 +1014,15 @@ declare namespace CodeBuild {
1012
1014
  */
1013
1015
  queuedTimeoutInMinutes?: TimeOut;
1014
1016
  /**
1015
- * The Key Management Service customer master key (CMK) to be used for encrypting the build output artifacts. You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/&lt;alias-name&gt;).
1017
+ * The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts. You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/&lt;alias-name&gt;).
1016
1018
  */
1017
1019
  encryptionKey?: NonEmptyString;
1018
1020
  /**
1019
- * A list of tag key and value pairs associated with this build project. These tags are available for use by Amazon Web Services services that support CodeBuild build project tags.
1021
+ * A list of tag key and value pairs associated with this build project. These tags are available for use by AWS services that support AWS CodeBuild build project tags.
1020
1022
  */
1021
1023
  tags?: TagList;
1022
1024
  /**
1023
- * VpcConfig enables CodeBuild to access resources in an Amazon VPC.
1025
+ * VpcConfig enables AWS CodeBuild to access resources in an Amazon VPC.
1024
1026
  */
1025
1027
  vpcConfig?: VpcConfig;
1026
1028
  /**
@@ -1028,7 +1030,7 @@ declare namespace CodeBuild {
1028
1030
  */
1029
1031
  badgeEnabled?: WrapperBoolean;
1030
1032
  /**
1031
- * Information about logs for the build project. These can be logs in CloudWatch Logs, logs uploaded to a specified S3 bucket, or both.
1033
+ * Information about logs for the build project. These can be logs in Amazon CloudWatch Logs, logs uploaded to a specified S3 bucket, or both.
1032
1034
  */
1033
1035
  logsConfig?: LogsConfig;
1034
1036
  /**
@@ -1064,7 +1066,7 @@ declare namespace CodeBuild {
1064
1066
  */
1065
1067
  exportConfig: ReportExportConfig;
1066
1068
  /**
1067
- * A list of tag key and value pairs associated with this report group. These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.
1069
+ * A list of tag key and value pairs associated with this report group. These tags are available for use by AWS services that support AWS CodeBuild report group tags.
1068
1070
  */
1069
1071
  tags?: TagList;
1070
1072
  }
@@ -1076,7 +1078,7 @@ declare namespace CodeBuild {
1076
1078
  }
1077
1079
  export interface CreateWebhookInput {
1078
1080
  /**
1079
- * The name of the CodeBuild project.
1081
+ * The name of the AWS CodeBuild project.
1080
1082
  */
1081
1083
  projectName: ProjectName;
1082
1084
  /**
@@ -1094,7 +1096,7 @@ declare namespace CodeBuild {
1094
1096
  }
1095
1097
  export interface CreateWebhookOutput {
1096
1098
  /**
1097
- * Information about a webhook that connects repository events to a build project in CodeBuild.
1099
+ * Information about a webhook that connects repository events to a build project in AWS CodeBuild.
1098
1100
  */
1099
1101
  webhook?: Webhook;
1100
1102
  }
@@ -1179,7 +1181,7 @@ declare namespace CodeBuild {
1179
1181
  }
1180
1182
  export interface DeleteWebhookInput {
1181
1183
  /**
1182
- * The name of the CodeBuild project.
1184
+ * The name of the AWS CodeBuild project.
1183
1185
  */
1184
1186
  projectName: ProjectName;
1185
1187
  }
@@ -1297,11 +1299,11 @@ declare namespace CodeBuild {
1297
1299
  */
1298
1300
  name: NonEmptyString;
1299
1301
  /**
1300
- * The value of the environment variable. We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially Amazon Web Services secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER.
1302
+ * The value of the environment variable. We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI). For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE or SECRETS_MANAGER.
1301
1303
  */
1302
1304
  value: String;
1303
1305
  /**
1304
- * The type of environment variable. Valid values include: PARAMETER_STORE: An environment variable stored in Systems Manager Parameter Store. To learn how to specify a parameter store environment variable, see env/parameter-store in the CodeBuild User Guide. PLAINTEXT: An environment variable in plain text format. This is the default value. SECRETS_MANAGER: An environment variable stored in Secrets Manager. To learn how to specify a secrets manager environment variable, see env/secrets-manager in the CodeBuild User Guide.
1306
+ * The type of environment variable. Valid values include: PARAMETER_STORE: An environment variable stored in Amazon EC2 Systems Manager Parameter Store. To learn how to specify a parameter store environment variable, see env/parameter-store in the AWS CodeBuild User Guide. PLAINTEXT: An environment variable in plain text format. This is the default value. SECRETS_MANAGER: An environment variable stored in AWS Secrets Manager. To learn how to specify a secrets manager environment variable, see env/secrets-manager in the AWS CodeBuild User Guide.
1305
1307
  */
1306
1308
  type?: EnvironmentVariableType;
1307
1309
  }
@@ -1360,7 +1362,7 @@ declare namespace CodeBuild {
1360
1362
  export type GitCloneDepth = number;
1361
1363
  export interface GitSubmodulesConfig {
1362
1364
  /**
1363
- * Set to true to fetch Git submodules for your CodeBuild build project.
1365
+ * Set to true to fetch Git submodules for your AWS CodeBuild build project.
1364
1366
  */
1365
1367
  fetchSubmodules: WrapperBoolean;
1366
1368
  }
@@ -1381,7 +1383,7 @@ declare namespace CodeBuild {
1381
1383
  */
1382
1384
  serverType: ServerType;
1383
1385
  /**
1384
- * The type of authentication used to connect to a GitHub, GitHub Enterprise, or Bitbucket repository. An OAUTH connection is not supported by the API and must be created using the CodeBuild console.
1386
+ * The type of authentication used to connect to a GitHub, GitHub Enterprise, or Bitbucket repository. An OAUTH connection is not supported by the API and must be created using the AWS CodeBuild console.
1385
1387
  */
1386
1388
  authType: AuthType;
1387
1389
  /**
@@ -1397,7 +1399,7 @@ declare namespace CodeBuild {
1397
1399
  }
1398
1400
  export interface InvalidateProjectCacheInput {
1399
1401
  /**
1400
- * The name of the CodeBuild build project that the cache is reset for.
1402
+ * The name of the AWS CodeBuild build project that the cache is reset for.
1401
1403
  */
1402
1404
  projectName: NonEmptyString;
1403
1405
  }
@@ -1467,7 +1469,7 @@ declare namespace CodeBuild {
1467
1469
  }
1468
1470
  export interface ListBuildsForProjectInput {
1469
1471
  /**
1470
- * The name of the CodeBuild project.
1472
+ * The name of the AWS CodeBuild project.
1471
1473
  */
1472
1474
  projectName: NonEmptyString;
1473
1475
  /**
@@ -1513,7 +1515,7 @@ declare namespace CodeBuild {
1513
1515
  }
1514
1516
  export interface ListCuratedEnvironmentImagesOutput {
1515
1517
  /**
1516
- * Information about supported platforms for Docker images that are managed by CodeBuild.
1518
+ * Information about supported platforms for Docker images that are managed by AWS CodeBuild.
1517
1519
  */
1518
1520
  platforms?: EnvironmentPlatforms;
1519
1521
  }
@@ -1565,7 +1567,7 @@ declare namespace CodeBuild {
1565
1567
  */
1566
1568
  nextToken?: String;
1567
1569
  /**
1568
- * The list of ARNs for the report groups in the current Amazon Web Services account.
1570
+ * The list of ARNs for the report groups in the current AWS account.
1569
1571
  */
1570
1572
  reportGroups?: ReportGroupArns;
1571
1573
  }
@@ -1625,13 +1627,13 @@ declare namespace CodeBuild {
1625
1627
  */
1626
1628
  nextToken?: String;
1627
1629
  /**
1628
- * The list of returned ARNs for the reports in the current Amazon Web Services account.
1630
+ * The list of returned ARNs for the reports in the current AWS account.
1629
1631
  */
1630
1632
  reports?: ReportArns;
1631
1633
  }
1632
1634
  export interface ListSharedProjectsInput {
1633
1635
  /**
1634
- * The criterion to be used to list build projects shared with the current Amazon Web Services account or user. Valid values include: ARN: List based on the ARN. MODIFIED_TIME: List based on when information about the shared project was last changed.
1636
+ * The criterion to be used to list build projects shared with the current AWS account or user. Valid values include: ARN: List based on the ARN. MODIFIED_TIME: List based on when information about the shared project was last changed.
1635
1637
  */
1636
1638
  sortBy?: SharedResourceSortByType;
1637
1639
  /**
@@ -1653,7 +1655,7 @@ declare namespace CodeBuild {
1653
1655
  */
1654
1656
  nextToken?: String;
1655
1657
  /**
1656
- * The list of ARNs for the build projects shared with the current Amazon Web Services account or user.
1658
+ * The list of ARNs for the build projects shared with the current AWS account or user.
1657
1659
  */
1658
1660
  projects?: ProjectArns;
1659
1661
  }
@@ -1663,7 +1665,7 @@ declare namespace CodeBuild {
1663
1665
  */
1664
1666
  sortOrder?: SortOrderType;
1665
1667
  /**
1666
- * The criterion to be used to list report groups shared with the current Amazon Web Services account or user. Valid values include: ARN: List based on the ARN. MODIFIED_TIME: List based on when information about the shared report group was last changed.
1668
+ * The criterion to be used to list report groups shared with the current AWS account or user. Valid values include: ARN: List based on the ARN. MODIFIED_TIME: List based on when information about the shared report group was last changed.
1667
1669
  */
1668
1670
  sortBy?: SharedResourceSortByType;
1669
1671
  /**
@@ -1681,7 +1683,7 @@ declare namespace CodeBuild {
1681
1683
  */
1682
1684
  nextToken?: String;
1683
1685
  /**
1684
- * The list of ARNs for the report groups shared with the current Amazon Web Services account or user.
1686
+ * The list of ARNs for the report groups shared with the current AWS account or user.
1685
1687
  */
1686
1688
  reportGroups?: ReportGroupArns;
1687
1689
  }
@@ -1695,7 +1697,7 @@ declare namespace CodeBuild {
1695
1697
  }
1696
1698
  export interface LogsConfig {
1697
1699
  /**
1698
- * Information about CloudWatch Logs for a build project. CloudWatch Logs are enabled by default.
1700
+ * Information about Amazon CloudWatch Logs for a build project. Amazon CloudWatch Logs are enabled by default.
1699
1701
  */
1700
1702
  cloudWatchLogs?: CloudWatchLogsConfig;
1701
1703
  /**
@@ -1706,15 +1708,15 @@ declare namespace CodeBuild {
1706
1708
  export type LogsConfigStatusType = "ENABLED"|"DISABLED"|string;
1707
1709
  export interface LogsLocation {
1708
1710
  /**
1709
- * The name of the CloudWatch Logs group for the build logs.
1711
+ * The name of the Amazon CloudWatch Logs group for the build logs.
1710
1712
  */
1711
1713
  groupName?: String;
1712
1714
  /**
1713
- * The name of the CloudWatch Logs stream for the build logs.
1715
+ * The name of the Amazon CloudWatch Logs stream for the build logs.
1714
1716
  */
1715
1717
  streamName?: String;
1716
1718
  /**
1717
- * The URL to an individual build log in CloudWatch Logs.
1719
+ * The URL to an individual build log in Amazon CloudWatch Logs.
1718
1720
  */
1719
1721
  deepLink?: String;
1720
1722
  /**
@@ -1722,7 +1724,7 @@ declare namespace CodeBuild {
1722
1724
  */
1723
1725
  s3DeepLink?: String;
1724
1726
  /**
1725
- * The ARN of CloudWatch Logs for a build project. Its format is arn:${Partition}:logs:${Region}:${Account}:log-group:${LogGroupName}:log-stream:${LogStreamName}. For more information, see Resources Defined by CloudWatch Logs.
1727
+ * The ARN of Amazon CloudWatch Logs for a build project. Its format is arn:${Partition}:logs:${Region}:${Account}:log-group:${LogGroupName}:log-stream:${LogStreamName}. For more information, see Resources Defined by Amazon CloudWatch Logs.
1726
1728
  */
1727
1729
  cloudWatchLogsArn?: String;
1728
1730
  /**
@@ -1730,7 +1732,7 @@ declare namespace CodeBuild {
1730
1732
  */
1731
1733
  s3LogsArn?: String;
1732
1734
  /**
1733
- * Information about CloudWatch Logs for a build project.
1735
+ * Information about Amazon CloudWatch Logs for a build project.
1734
1736
  */
1735
1737
  cloudWatchLogs?: CloudWatchLogsConfig;
1736
1738
  /**
@@ -1786,7 +1788,7 @@ declare namespace CodeBuild {
1786
1788
  */
1787
1789
  secondarySources?: ProjectSources;
1788
1790
  /**
1789
- * A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of: For CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level). For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
1791
+ * A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of: For AWS CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level). For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide.
1790
1792
  */
1791
1793
  sourceVersion?: String;
1792
1794
  /**
@@ -1810,11 +1812,11 @@ declare namespace CodeBuild {
1810
1812
  */
1811
1813
  environment?: ProjectEnvironment;
1812
1814
  /**
1813
- * The ARN of the Identity and Access Management role that enables CodeBuild to interact with dependent Amazon Web Services services on behalf of the Amazon Web Services account.
1815
+ * The ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.
1814
1816
  */
1815
1817
  serviceRole?: NonEmptyString;
1816
1818
  /**
1817
- * How long, in minutes, from 5 to 480 (8 hours), for CodeBuild to wait before timing out any related build that did not get marked as completed. The default is 60 minutes.
1819
+ * How long, in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait before timing out any related build that did not get marked as completed. The default is 60 minutes.
1818
1820
  */
1819
1821
  timeoutInMinutes?: TimeOut;
1820
1822
  /**
@@ -1822,11 +1824,11 @@ declare namespace CodeBuild {
1822
1824
  */
1823
1825
  queuedTimeoutInMinutes?: TimeOut;
1824
1826
  /**
1825
- * The Key Management Service customer master key (CMK) to be used for encrypting the build output artifacts. You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/&lt;alias-name&gt;). If you don't specify a value, CodeBuild uses the managed CMK for Amazon Simple Storage Service (Amazon S3).
1827
+ * The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts. You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/&lt;alias-name&gt;).
1826
1828
  */
1827
1829
  encryptionKey?: NonEmptyString;
1828
1830
  /**
1829
- * A list of tag key and value pairs associated with this build project. These tags are available for use by Amazon Web Services services that support CodeBuild build project tags.
1831
+ * A list of tag key and value pairs associated with this build project. These tags are available for use by AWS services that support AWS CodeBuild build project tags.
1830
1832
  */
1831
1833
  tags?: TagList;
1832
1834
  /**
@@ -1838,11 +1840,11 @@ declare namespace CodeBuild {
1838
1840
  */
1839
1841
  lastModified?: Timestamp;
1840
1842
  /**
1841
- * Information about a webhook that connects repository events to a build project in CodeBuild.
1843
+ * Information about a webhook that connects repository events to a build project in AWS CodeBuild.
1842
1844
  */
1843
1845
  webhook?: Webhook;
1844
1846
  /**
1845
- * Information about the VPC configuration that CodeBuild accesses.
1847
+ * Information about the VPC configuration that AWS CodeBuild accesses.
1846
1848
  */
1847
1849
  vpcConfig?: VpcConfig;
1848
1850
  /**
@@ -1850,7 +1852,7 @@ declare namespace CodeBuild {
1850
1852
  */
1851
1853
  badge?: ProjectBadge;
1852
1854
  /**
1853
- * Information about logs for the build project. A project can create logs in CloudWatch Logs, an S3 bucket, or both.
1855
+ * Information about logs for the build project. A project can create logs in Amazon CloudWatch Logs, an S3 bucket, or both.
1854
1856
  */
1855
1857
  logsConfig?: LogsConfig;
1856
1858
  /**
@@ -1869,27 +1871,27 @@ declare namespace CodeBuild {
1869
1871
  export type ProjectArns = NonEmptyString[];
1870
1872
  export interface ProjectArtifacts {
1871
1873
  /**
1872
- * The type of build output artifact. Valid values include: CODEPIPELINE: The build project has build output generated through CodePipeline. The CODEPIPELINE type is not supported for secondaryArtifacts. NO_ARTIFACTS: The build project does not produce any build output. S3: The build project stores build output in Amazon S3.
1874
+ * The type of build output artifact. Valid values include: CODEPIPELINE: The build project has build output generated through AWS CodePipeline. The CODEPIPELINE type is not supported for secondaryArtifacts. NO_ARTIFACTS: The build project does not produce any build output. S3: The build project stores build output in Amazon S3.
1873
1875
  */
1874
1876
  type: ArtifactsType;
1875
1877
  /**
1876
- * Information about the build output artifact location: If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output locations instead of CodeBuild. If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced. If type is set to S3, this is the name of the output bucket.
1878
+ * Information about the build output artifact location: If type is set to CODEPIPELINE, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild. If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced. If type is set to S3, this is the name of the output bucket.
1877
1879
  */
1878
1880
  location?: String;
1879
1881
  /**
1880
- * Along with namespaceType and name, the pattern that CodeBuild uses to name and store the output artifact: If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild. If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced. If type is set to S3, this is the path to the output artifact. If path is not specified, path is not used. For example, if path is set to MyArtifacts, namespaceType is set to NONE, and name is set to MyArtifact.zip, the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip.
1882
+ * Along with namespaceType and name, the pattern that AWS CodeBuild uses to name and store the output artifact: If type is set to CODEPIPELINE, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild. If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced. If type is set to S3, this is the path to the output artifact. If path is not specified, path is not used. For example, if path is set to MyArtifacts, namespaceType is set to NONE, and name is set to MyArtifact.zip, the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip.
1881
1883
  */
1882
1884
  path?: String;
1883
1885
  /**
1884
- * Along with path and name, the pattern that CodeBuild uses to determine the name and location to store the output artifact: If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild. If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced. If type is set to S3, valid values include: BUILD_ID: Include the build ID in the location of the build output artifact. NONE: Do not include the build ID. This is the default if namespaceType is not specified. For example, if path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to MyArtifact.zip, the output artifact is stored in MyArtifacts/&lt;build-ID&gt;/MyArtifact.zip.
1886
+ * Along with path and name, the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact: If type is set to CODEPIPELINE, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild. If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced. If type is set to S3, valid values include: BUILD_ID: Include the build ID in the location of the build output artifact. NONE: Do not include the build ID. This is the default if namespaceType is not specified. For example, if path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to MyArtifact.zip, the output artifact is stored in MyArtifacts/&lt;build-ID&gt;/MyArtifact.zip.
1885
1887
  */
1886
1888
  namespaceType?: ArtifactNamespace;
1887
1889
  /**
1888
- * Along with path and namespaceType, the pattern that CodeBuild uses to name and store the output artifact: If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild. If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced. If type is set to S3, this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket. For example: If path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to MyArtifact.zip, then the output artifact is stored in MyArtifacts/&lt;build-ID&gt;/MyArtifact.zip. If path is empty, namespaceType is set to NONE, and name is set to "/", the output artifact is stored in the root of the output bucket. If path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to "/", the output artifact is stored in MyArtifacts/&lt;build-ID&gt;.
1890
+ * Along with path and namespaceType, the pattern that AWS CodeBuild uses to name and store the output artifact: If type is set to CODEPIPELINE, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild. If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced. If type is set to S3, this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket. For example: If path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to MyArtifact.zip, then the output artifact is stored in MyArtifacts/&lt;build-ID&gt;/MyArtifact.zip. If path is empty, namespaceType is set to NONE, and name is set to "/", the output artifact is stored in the root of the output bucket. If path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to "/", the output artifact is stored in MyArtifacts/&lt;build-ID&gt;.
1889
1891
  */
1890
1892
  name?: String;
1891
1893
  /**
1892
- * The type of build output artifact to create: If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output artifacts instead of CodeBuild. If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced. If type is set to S3, valid values include: NONE: CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified. ZIP: CodeBuild creates in the output bucket a ZIP file that contains the build output.
1894
+ * The type of build output artifact to create: If type is set to CODEPIPELINE, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild. If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced. If type is set to S3, valid values include: NONE: AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified. ZIP: AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.
1893
1895
  */
1894
1896
  packaging?: ArtifactPackaging;
1895
1897
  /**
@@ -1904,6 +1906,7 @@ declare namespace CodeBuild {
1904
1906
  * An identifier for this artifact definition.
1905
1907
  */
1906
1908
  artifactIdentifier?: String;
1909
+ bucketOwnerAccess?: BucketOwnerAccess;
1907
1910
  }
1908
1911
  export type ProjectArtifactsList = ProjectArtifacts[];
1909
1912
  export interface ProjectBadge {
@@ -1952,15 +1955,15 @@ declare namespace CodeBuild {
1952
1955
  export type ProjectDescription = string;
1953
1956
  export interface ProjectEnvironment {
1954
1957
  /**
1955
- * The type of build environment to use for related builds. The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt). The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia). The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia). The environment types WINDOWS_CONTAINER and WINDOWS_SERVER_2019_CONTAINER are available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), and EU (Ireland). For more information, see Build environment compute types in the CodeBuild user guide.
1958
+ * The type of build environment to use for related builds. The environment type ARM_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland), Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and EU (Frankfurt). The environment type LINUX_CONTAINER with compute type build.general1.2xlarge is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and China (Ningxia). The environment type LINUX_GPU_CONTAINER is available only in regions US East (N. Virginia), US East (Ohio), US West (Oregon), Canada (Central), EU (Ireland), EU (London), EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and China (Ningxia).
1956
1959
  */
1957
1960
  type: EnvironmentType;
1958
1961
  /**
1959
- * The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats: For an image tag: &lt;registry&gt;/&lt;repository&gt;:&lt;tag&gt;. For example, in the Docker repository that CodeBuild uses to manage its Docker images, this would be aws/codebuild/standard:4.0. For an image digest: &lt;registry&gt;/&lt;repository&gt;@&lt;digest&gt;. For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use &lt;registry&gt;/&lt;repository&gt;@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf. For more information, see Docker images provided by CodeBuild in the CodeBuild user guide.
1962
+ * The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats: For an image tag: &lt;registry&gt;/&lt;repository&gt;:&lt;tag&gt;. For example, in the Docker repository that CodeBuild uses to manage its Docker images, this would be aws/codebuild/standard:4.0. For an image digest: &lt;registry&gt;/&lt;repository&gt;@&lt;digest&gt;. For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use &lt;registry&gt;/&lt;repository&gt;@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf.
1960
1963
  */
1961
1964
  image: NonEmptyString;
1962
1965
  /**
1963
- * Information about the compute resources the build project uses. Available values include: BUILD_GENERAL1_SMALL: Use up to 3 GB memory and 2 vCPUs for builds. BUILD_GENERAL1_MEDIUM: Use up to 7 GB memory and 4 vCPUs for builds. BUILD_GENERAL1_LARGE: Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type. BUILD_GENERAL1_2XLARGE: Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed. If you use BUILD_GENERAL1_LARGE: For environment type LINUX_CONTAINER, you can use up to 15 GB memory and 8 vCPUs for builds. For environment type LINUX_GPU_CONTAINER, you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds. For environment type ARM_CONTAINER, you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds. For more information, see Build Environment Compute Types in the CodeBuild User Guide.
1966
+ * Information about the compute resources the build project uses. Available values include: BUILD_GENERAL1_SMALL: Use up to 3 GB memory and 2 vCPUs for builds. BUILD_GENERAL1_MEDIUM: Use up to 7 GB memory and 4 vCPUs for builds. BUILD_GENERAL1_LARGE: Use up to 16 GB memory and 8 vCPUs for builds, depending on your environment type. BUILD_GENERAL1_2XLARGE: Use up to 145 GB memory, 72 vCPUs, and 824 GB of SSD storage for builds. This compute type supports Docker images up to 100 GB uncompressed. If you use BUILD_GENERAL1_LARGE: For environment type LINUX_CONTAINER, you can use up to 15 GB memory and 8 vCPUs for builds. For environment type LINUX_GPU_CONTAINER, you can use up to 255 GB memory, 32 vCPUs, and 4 NVIDIA Tesla V100 GPUs for builds. For environment type ARM_CONTAINER, you can use up to 16 GB memory and 8 vCPUs on ARM-based processors for builds. For more information, see Build Environment Compute Types in the AWS CodeBuild User Guide.
1964
1967
  */
1965
1968
  computeType: ComputeType;
1966
1969
  /**
@@ -1972,7 +1975,7 @@ declare namespace CodeBuild {
1972
1975
  */
1973
1976
  privilegedMode?: WrapperBoolean;
1974
1977
  /**
1975
- * The ARN of the Amazon S3 bucket, path prefix, and object key that contains the PEM-encoded certificate for the build project. For more information, see certificate in the CodeBuild User Guide.
1978
+ * The ARN of the Amazon S3 bucket, path prefix, and object key that contains the PEM-encoded certificate for the build project. For more information, see certificate in the AWS CodeBuild User Guide.
1976
1979
  */
1977
1980
  certificate?: String;
1978
1981
  /**
@@ -1980,7 +1983,7 @@ declare namespace CodeBuild {
1980
1983
  */
1981
1984
  registryCredential?: RegistryCredential;
1982
1985
  /**
1983
- * The type of credentials CodeBuild uses to pull images in your build. There are two valid values: CODEBUILD specifies that CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust CodeBuild service principal. SERVICE_ROLE specifies that CodeBuild uses your build project's service role. When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an CodeBuild curated image, you must use CODEBUILD credentials.
1986
+ * The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values: CODEBUILD specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal. SERVICE_ROLE specifies that AWS CodeBuild uses your build project's service role. When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials.
1984
1987
  */
1985
1988
  imagePullCredentialsType?: ImagePullCredentialsType;
1986
1989
  }
@@ -1990,7 +1993,7 @@ declare namespace CodeBuild {
1990
1993
  */
1991
1994
  type?: FileSystemType;
1992
1995
  /**
1993
- * A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path. You can find the DNS name of file system when you view it in the Amazon EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com, and its mount directory is my-efs-mount-directory, then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory. The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.
1996
+ * A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path. You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com, and its mount directory is my-efs-mount-directory, then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory. The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.
1994
1997
  */
1995
1998
  location?: String;
1996
1999
  /**
@@ -2002,7 +2005,7 @@ declare namespace CodeBuild {
2002
2005
  */
2003
2006
  identifier?: String;
2004
2007
  /**
2005
- * The mount options for a file system created by Amazon EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2. For more information, see Recommended NFS Mount Options.
2008
+ * The mount options for a file system created by AWS EFS. The default mount options used by CodeBuild are nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2. For more information, see Recommended NFS Mount Options.
2006
2009
  */
2007
2010
  mountOptions?: String;
2008
2011
  }
@@ -2013,11 +2016,11 @@ declare namespace CodeBuild {
2013
2016
  export type ProjectSortByType = "NAME"|"CREATED_TIME"|"LAST_MODIFIED_TIME"|string;
2014
2017
  export interface ProjectSource {
2015
2018
  /**
2016
- * The type of repository that contains the source code to be built. Valid values include: BITBUCKET: The source code is in a Bitbucket repository. CODECOMMIT: The source code is in an CodeCommit repository. CODEPIPELINE: The source code settings are specified in the source action of a pipeline in CodePipeline. GITHUB: The source code is in a GitHub or GitHub Enterprise Cloud repository. GITHUB_ENTERPRISE: The source code is in a GitHub Enterprise Server repository. NO_SOURCE: The project does not have input source code. S3: The source code is in an Amazon S3 bucket.
2019
+ * The type of repository that contains the source code to be built. Valid values include: BITBUCKET: The source code is in a Bitbucket repository. CODECOMMIT: The source code is in an AWS CodeCommit repository. CODEPIPELINE: The source code settings are specified in the source action of a pipeline in AWS CodePipeline. GITHUB: The source code is in a GitHub or GitHub Enterprise Cloud repository. GITHUB_ENTERPRISE: The source code is in a GitHub Enterprise Server repository. NO_SOURCE: The project does not have input source code. S3: The source code is in an Amazon S3 bucket.
2017
2020
  */
2018
2021
  type: SourceType;
2019
2022
  /**
2020
- * Information about the location of the source code to be built. Valid values include: For source code settings that are specified in the source action of a pipeline in CodePipeline, location should not be specified. If it is specified, CodePipeline ignores it. This is because CodePipeline uses the settings in a pipeline's source action instead of this value. For source code in an CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.&lt;region-ID&gt;.amazonaws.com/v1/repos/&lt;repo-name&gt;). For source code in an Amazon S3 input bucket, one of the following. The path to the ZIP file that contains the source code (for example, &lt;bucket-name&gt;/&lt;path&gt;/&lt;object-name&gt;.zip). The path to the folder that contains the source code (for example, &lt;bucket-name&gt;/&lt;path-to-source-code&gt;/&lt;folder&gt;/). For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your account to your GitHub account. Use the CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access, choose Request access next to each repository you want to allow CodeBuild to have access to, and then choose Authorize application. (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the CodeBuild console.) To instruct CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH. For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your Amazon Web Services account to your Bitbucket account. Use the CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access. (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the CodeBuild console.) To instruct CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH. If you specify CODEPIPELINE for the Type property, don't specify this property. For all of the other types, you must specify Location.
2023
+ * Information about the location of the source code to be built. Valid values include: For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, location should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value. For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.&lt;region-ID&gt;.amazonaws.com/v1/repos/&lt;repo-name&gt;). For source code in an Amazon S3 input bucket, one of the following. The path to the ZIP file that contains the source code (for example, &lt;bucket-name&gt;/&lt;path&gt;/&lt;object-name&gt;.zip). The path to the folder that contains the source code (for example, &lt;bucket-name&gt;/&lt;path-to-source-code&gt;/&lt;folder&gt;/). For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access, choose Request access next to each repository you want to allow AWS CodeBuild to have access to, and then choose Authorize application. (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH. For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access. (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH.
2021
2024
  */
2022
2025
  location?: String;
2023
2026
  /**
@@ -2029,15 +2032,15 @@ declare namespace CodeBuild {
2029
2032
  */
2030
2033
  gitSubmodulesConfig?: GitSubmodulesConfig;
2031
2034
  /**
2032
- * The buildspec file declaration to use for the builds in this build project. If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.
2035
+ * The buildspec file declaration to use for the builds in this build project. If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.
2033
2036
  */
2034
2037
  buildspec?: String;
2035
2038
  /**
2036
- * Information about the authorization settings for CodeBuild to access the source code to be built. This information is for the CodeBuild console's use only. Your code should not get or set this information directly.
2039
+ * Information about the authorization settings for AWS CodeBuild to access the source code to be built. This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.
2037
2040
  */
2038
2041
  auth?: SourceAuth;
2039
2042
  /**
2040
- * Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown. To be able to report the build status to the source provider, the user associated with the source provider must have write access to the repo. If the user does not have write access, the build status cannot be updated. For more information, see Source provider access in the CodeBuild User Guide. The status of a build triggered by a webhook is always reported to your source provider.
2043
+ * Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown. To be able to report the build status to the source provider, the user associated with the source provider must have write access to the repo. If the user does not have write access, the build status cannot be updated. For more information, see Source provider access in the AWS CodeBuild User Guide. The status of a build triggered by a webhook is always reported to your source provider.
2041
2044
  */
2042
2045
  reportBuildStatus?: WrapperBoolean;
2043
2046
  /**
@@ -2059,7 +2062,7 @@ declare namespace CodeBuild {
2059
2062
  */
2060
2063
  sourceIdentifier: String;
2061
2064
  /**
2062
- * The source version for the corresponding source identifier. If specified, must be one of: For CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
2065
+ * The source version for the corresponding source identifier. If specified, must be one of: For AWS CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide.
2063
2066
  */
2064
2067
  sourceVersion: String;
2065
2068
  }
@@ -2067,7 +2070,7 @@ declare namespace CodeBuild {
2067
2070
  export type Projects = Project[];
2068
2071
  export interface PutResourcePolicyInput {
2069
2072
  /**
2070
- * A JSON-formatted resource policy. For more information, see Sharing a Project and Sharing a Report Group in the CodeBuild User Guide.
2073
+ * A JSON-formatted resource policy. For more information, see Sharing a Project and Sharing a Report Group in the AWS CodeBuild User Guide.
2071
2074
  */
2072
2075
  policy: NonEmptyString;
2073
2076
  /**
@@ -2083,11 +2086,11 @@ declare namespace CodeBuild {
2083
2086
  }
2084
2087
  export interface RegistryCredential {
2085
2088
  /**
2086
- * The Amazon Resource Name (ARN) or name of credentials created using Secrets Manager. The credential can use the name of the credentials only if they exist in your current Region.
2089
+ * The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager. The credential can use the name of the credentials only if they exist in your current AWS Region.
2087
2090
  */
2088
2091
  credential: NonEmptyString;
2089
2092
  /**
2090
- * The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for Secrets Manager.
2093
+ * The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager.
2091
2094
  */
2092
2095
  credentialProvider: CredentialProviderType;
2093
2096
  }
@@ -2186,7 +2189,7 @@ declare namespace CodeBuild {
2186
2189
  */
2187
2190
  lastModified?: Timestamp;
2188
2191
  /**
2189
- * A list of tag key and value pairs associated with this report group. These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.
2192
+ * A list of tag key and value pairs associated with this report group. These tags are available for use by AWS services that support AWS CodeBuild report group tags.
2190
2193
  */
2191
2194
  tags?: TagList;
2192
2195
  /**
@@ -2251,7 +2254,7 @@ declare namespace CodeBuild {
2251
2254
  */
2252
2255
  id?: NonEmptyString;
2253
2256
  /**
2254
- * A unique, case sensitive identifier you provide to ensure the idempotency of the RetryBuildBatch request. The token is included in the RetryBuildBatch request and is valid for five minutes. If you repeat the RetryBuildBatch request with the same token, but change a parameter, CodeBuild returns a parameter mismatch error.
2257
+ * A unique, case sensitive identifier you provide to ensure the idempotency of the RetryBuildBatch request. The token is included in the RetryBuildBatch request and is valid for five minutes. If you repeat the RetryBuildBatch request with the same token, but change a parameter, AWS CodeBuild returns a parameter mismatch error.
2255
2258
  */
2256
2259
  idempotencyToken?: String;
2257
2260
  /**
@@ -2269,7 +2272,7 @@ declare namespace CodeBuild {
2269
2272
  */
2270
2273
  id?: NonEmptyString;
2271
2274
  /**
2272
- * A unique, case sensitive identifier you provide to ensure the idempotency of the RetryBuild request. The token is included in the RetryBuild request and is valid for five minutes. If you repeat the RetryBuild request with the same token, but change a parameter, CodeBuild returns a parameter mismatch error.
2275
+ * A unique, case sensitive identifier you provide to ensure the idempotency of the RetryBuild request. The token is included in the RetryBuild request and is valid for five minutes. If you repeat the RetryBuild request with the same token, but change a parameter, AWS CodeBuild returns a parameter mismatch error.
2273
2276
  */
2274
2277
  idempotencyToken?: String;
2275
2278
  }
@@ -2289,6 +2292,7 @@ declare namespace CodeBuild {
2289
2292
  * Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.
2290
2293
  */
2291
2294
  encryptionDisabled?: WrapperBoolean;
2295
+ bucketOwnerAccess?: BucketOwnerAccess;
2292
2296
  }
2293
2297
  export interface S3ReportExportConfig {
2294
2298
  /**
@@ -2296,7 +2300,7 @@ declare namespace CodeBuild {
2296
2300
  */
2297
2301
  bucket?: NonEmptyString;
2298
2302
  /**
2299
- * The Amazon Web Services account identifier of the owner of the Amazon S3 bucket. This allows report data to be exported to an Amazon S3 bucket that is owned by an account other than the account running the build.
2303
+ * The AWS account identifier of the owner of the Amazon S3 bucket. This allows report data to be exported to an Amazon S3 bucket that is owned by an account other than the account running the build.
2300
2304
  */
2301
2305
  bucketOwner?: String;
2302
2306
  /**
@@ -2304,7 +2308,7 @@ declare namespace CodeBuild {
2304
2308
  */
2305
2309
  path?: String;
2306
2310
  /**
2307
- * The type of build output artifact to create. Valid values include: NONE: CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified. ZIP: CodeBuild creates a ZIP file with the raw data in the output bucket.
2311
+ * The type of build output artifact to create. Valid values include: NONE: AWS CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified. ZIP: AWS CodeBuild creates a ZIP file with the raw data in the output bucket.
2308
2312
  */
2309
2313
  packaging?: ReportPackagingType;
2310
2314
  /**
@@ -2362,7 +2366,7 @@ declare namespace CodeBuild {
2362
2366
  */
2363
2367
  secondarySourcesVersionOverride?: ProjectSecondarySourceVersions;
2364
2368
  /**
2365
- * The version of the batch build input to be built, for this build only. If not specified, the latest version is used. If specified, the contents depends on the source provider: CodeCommit The commit ID, branch, or Git tag to use. GitHub The commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. Bitbucket The commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. Amazon S3 The version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence. For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
2369
+ * The version of the batch build input to be built, for this build only. If not specified, the latest version is used. If specified, the contents depends on the source provider: AWS CodeCommit The commit ID, branch, or Git tag to use. GitHub The commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. Bitbucket The commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. Amazon S3 The version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence. For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide.
2366
2370
  */
2367
2371
  sourceVersion?: String;
2368
2372
  /**
@@ -2398,7 +2402,7 @@ declare namespace CodeBuild {
2398
2402
  */
2399
2403
  gitSubmodulesConfigOverride?: GitSubmodulesConfig;
2400
2404
  /**
2401
- * A buildspec file declaration that overrides, for this build only, the latest one already defined in the build project. If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.
2405
+ * A buildspec file declaration that overrides, for this build only, the latest one already defined in the build project. If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.
2402
2406
  */
2403
2407
  buildspecOverride?: String;
2404
2408
  /**
@@ -2446,11 +2450,11 @@ declare namespace CodeBuild {
2446
2450
  */
2447
2451
  queuedTimeoutInMinutesOverride?: TimeOut;
2448
2452
  /**
2449
- * The Key Management Service customer master key (CMK) that overrides the one specified in the batch build project. The CMK key encrypts the build output artifacts. You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/&lt;alias-name&gt;).
2453
+ * The AWS Key Management Service (AWS KMS) customer master key (CMK) that overrides the one specified in the batch build project. The CMK key encrypts the build output artifacts. You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/&lt;alias-name&gt;).
2450
2454
  */
2451
2455
  encryptionKeyOverride?: NonEmptyString;
2452
2456
  /**
2453
- * A unique, case sensitive identifier you provide to ensure the idempotency of the StartBuildBatch request. The token is included in the StartBuildBatch request and is valid for five minutes. If you repeat the StartBuildBatch request with the same token, but change a parameter, CodeBuild returns a parameter mismatch error.
2457
+ * A unique, case sensitive identifier you provide to ensure the idempotency of the StartBuildBatch request. The token is included in the StartBuildBatch request and is valid for five minutes. If you repeat the StartBuildBatch request with the same token, but change a parameter, AWS CodeBuild returns a parameter mismatch error.
2454
2458
  */
2455
2459
  idempotencyToken?: String;
2456
2460
  /**
@@ -2462,7 +2466,7 @@ declare namespace CodeBuild {
2462
2466
  */
2463
2467
  registryCredentialOverride?: RegistryCredential;
2464
2468
  /**
2465
- * The type of credentials CodeBuild uses to pull images in your batch build. There are two valid values: CODEBUILD Specifies that CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust CodeBuild's service principal. SERVICE_ROLE Specifies that CodeBuild uses your build project's service role. When using a cross-account or private registry image, you must use SERVICE_ROLE credentials. When using an CodeBuild curated image, you must use CODEBUILD credentials.
2469
+ * The type of credentials AWS CodeBuild uses to pull images in your batch build. There are two valid values: CODEBUILD Specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal. SERVICE_ROLE Specifies that AWS CodeBuild uses your build project's service role. When using a cross-account or private registry image, you must use SERVICE_ROLE credentials. When using an AWS CodeBuild curated image, you must use CODEBUILD credentials.
2466
2470
  */
2467
2471
  imagePullCredentialsTypeOverride?: ImagePullCredentialsType;
2468
2472
  /**
@@ -2482,7 +2486,7 @@ declare namespace CodeBuild {
2482
2486
  }
2483
2487
  export interface StartBuildInput {
2484
2488
  /**
2485
- * The name of the CodeBuild build project to start running a build.
2489
+ * The name of the AWS CodeBuild build project to start running a build.
2486
2490
  */
2487
2491
  projectName: NonEmptyString;
2488
2492
  /**
@@ -2494,7 +2498,7 @@ declare namespace CodeBuild {
2494
2498
  */
2495
2499
  secondarySourcesVersionOverride?: ProjectSecondarySourceVersions;
2496
2500
  /**
2497
- * The version of the build input to be built, for this build only. If not specified, the latest version is used. If specified, the contents depends on the source provider: CodeCommit The commit ID, branch, or Git tag to use. GitHub The commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. Bitbucket The commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. Amazon S3 The version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence. For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
2501
+ * The version of the build input to be built, for this build only. If not specified, the latest version is used. If specified, the contents depends on the source provider: AWS CodeCommit The commit ID, branch, or Git tag to use. GitHub The commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. Bitbucket The commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. Amazon S3 The version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence. For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide.
2498
2502
  */
2499
2503
  sourceVersion?: String;
2500
2504
  /**
@@ -2526,11 +2530,11 @@ declare namespace CodeBuild {
2526
2530
  */
2527
2531
  gitCloneDepthOverride?: GitCloneDepth;
2528
2532
  /**
2529
- * Information about the Git submodules configuration for this build of an CodeBuild build project.
2533
+ * Information about the Git submodules configuration for this build of an AWS CodeBuild build project.
2530
2534
  */
2531
2535
  gitSubmodulesConfigOverride?: GitSubmodulesConfig;
2532
2536
  /**
2533
- * A buildspec file declaration that overrides, for this build only, the latest one already defined in the build project. If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.
2537
+ * A buildspec file declaration that overrides, for this build only, the latest one already defined in the build project. If this value is set, it can be either an inline buildspec definition, the path to an alternate buildspec file relative to the value of the built-in CODEBUILD_SRC_DIR environment variable, or the path to an S3 bucket. The bucket must be in the same AWS Region as the build project. Specify the buildspec file using its ARN (for example, arn:aws:s3:::my-codebuild-sample2/buildspec.yml). If this value is not provided or is set to an empty string, the source code must contain a buildspec file in its root directory. For more information, see Buildspec File Name and Storage Location.
2534
2538
  */
2535
2539
  buildspecOverride?: String;
2536
2540
  /**
@@ -2538,7 +2542,7 @@ declare namespace CodeBuild {
2538
2542
  */
2539
2543
  insecureSslOverride?: WrapperBoolean;
2540
2544
  /**
2541
- * Set to true to report to your source provider the status of a build's start and completion. If you use this option with a source provider other than GitHub, GitHub Enterprise, or Bitbucket, an invalidInputException is thrown. To be able to report the build status to the source provider, the user associated with the source provider must have write access to the repo. If the user does not have write access, the build status cannot be updated. For more information, see Source provider access in the CodeBuild User Guide. The status of a build triggered by a webhook is always reported to your source provider.
2545
+ * Set to true to report to your source provider the status of a build's start and completion. If you use this option with a source provider other than GitHub, GitHub Enterprise, or Bitbucket, an invalidInputException is thrown. To be able to report the build status to the source provider, the user associated with the source provider must have write access to the repo. If the user does not have write access, the build status cannot be updated. For more information, see Source provider access in the AWS CodeBuild User Guide. The status of a build triggered by a webhook is always reported to your source provider.
2542
2546
  */
2543
2547
  reportBuildStatusOverride?: WrapperBoolean;
2544
2548
  /**
@@ -2582,11 +2586,11 @@ declare namespace CodeBuild {
2582
2586
  */
2583
2587
  queuedTimeoutInMinutesOverride?: TimeOut;
2584
2588
  /**
2585
- * The Key Management Service customer master key (CMK) that overrides the one specified in the build project. The CMK key encrypts the build output artifacts. You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/&lt;alias-name&gt;).
2589
+ * The AWS Key Management Service (AWS KMS) customer master key (CMK) that overrides the one specified in the build project. The CMK key encrypts the build output artifacts. You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/&lt;alias-name&gt;).
2586
2590
  */
2587
2591
  encryptionKeyOverride?: NonEmptyString;
2588
2592
  /**
2589
- * A unique, case sensitive identifier you provide to ensure the idempotency of the StartBuild request. The token is included in the StartBuild request and is valid for 5 minutes. If you repeat the StartBuild request with the same token, but change a parameter, CodeBuild returns a parameter mismatch error.
2593
+ * A unique, case sensitive identifier you provide to ensure the idempotency of the StartBuild request. The token is included in the StartBuild request and is valid for 5 minutes. If you repeat the StartBuild request with the same token, but change a parameter, AWS CodeBuild returns a parameter mismatch error.
2590
2594
  */
2591
2595
  idempotencyToken?: String;
2592
2596
  /**
@@ -2598,7 +2602,7 @@ declare namespace CodeBuild {
2598
2602
  */
2599
2603
  registryCredentialOverride?: RegistryCredential;
2600
2604
  /**
2601
- * The type of credentials CodeBuild uses to pull images in your build. There are two valid values: CODEBUILD Specifies that CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust CodeBuild's service principal. SERVICE_ROLE Specifies that CodeBuild uses your build project's service role. When using a cross-account or private registry image, you must use SERVICE_ROLE credentials. When using an CodeBuild curated image, you must use CODEBUILD credentials.
2605
+ * The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values: CODEBUILD Specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal. SERVICE_ROLE Specifies that AWS CodeBuild uses your build project's service role. When using a cross-account or private registry image, you must use SERVICE_ROLE credentials. When using an AWS CodeBuild curated image, you must use CODEBUILD credentials.
2602
2606
  */
2603
2607
  imagePullCredentialsTypeOverride?: ImagePullCredentialsType;
2604
2608
  /**
@@ -2726,7 +2730,7 @@ declare namespace CodeBuild {
2726
2730
  */
2727
2731
  secondarySources?: ProjectSources;
2728
2732
  /**
2729
- * A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of: For CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level). For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
2733
+ * A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of: For AWS CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level). For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide.
2730
2734
  */
2731
2735
  sourceVersion?: String;
2732
2736
  /**
@@ -2750,11 +2754,11 @@ declare namespace CodeBuild {
2750
2754
  */
2751
2755
  environment?: ProjectEnvironment;
2752
2756
  /**
2753
- * The replacement ARN of the Identity and Access Management role that enables CodeBuild to interact with dependent Amazon Web Services services on behalf of the Amazon Web Services account.
2757
+ * The replacement ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.
2754
2758
  */
2755
2759
  serviceRole?: NonEmptyString;
2756
2760
  /**
2757
- * The replacement value in minutes, from 5 to 480 (8 hours), for CodeBuild to wait before timing out any related build that did not get marked as completed.
2761
+ * The replacement value in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait before timing out any related build that did not get marked as completed.
2758
2762
  */
2759
2763
  timeoutInMinutes?: TimeOut;
2760
2764
  /**
@@ -2762,15 +2766,15 @@ declare namespace CodeBuild {
2762
2766
  */
2763
2767
  queuedTimeoutInMinutes?: TimeOut;
2764
2768
  /**
2765
- * The Key Management Service customer master key (CMK) to be used for encrypting the build output artifacts. You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/&lt;alias-name&gt;).
2769
+ * The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts. You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/&lt;alias-name&gt;).
2766
2770
  */
2767
2771
  encryptionKey?: NonEmptyString;
2768
2772
  /**
2769
- * An updated list of tag key and value pairs associated with this build project. These tags are available for use by Amazon Web Services services that support CodeBuild build project tags.
2773
+ * An updated list of tag key and value pairs associated with this build project. These tags are available for use by AWS services that support AWS CodeBuild build project tags.
2770
2774
  */
2771
2775
  tags?: TagList;
2772
2776
  /**
2773
- * VpcConfig enables CodeBuild to access resources in an Amazon VPC.
2777
+ * VpcConfig enables AWS CodeBuild to access resources in an Amazon VPC.
2774
2778
  */
2775
2779
  vpcConfig?: VpcConfig;
2776
2780
  /**
@@ -2778,7 +2782,7 @@ declare namespace CodeBuild {
2778
2782
  */
2779
2783
  badgeEnabled?: WrapperBoolean;
2780
2784
  /**
2781
- * Information about logs for the build project. A project can create logs in CloudWatch Logs, logs in an S3 bucket, or both.
2785
+ * Information about logs for the build project. A project can create logs in Amazon CloudWatch Logs, logs in an S3 bucket, or both.
2782
2786
  */
2783
2787
  logsConfig?: LogsConfig;
2784
2788
  /**
@@ -2807,7 +2811,7 @@ declare namespace CodeBuild {
2807
2811
  */
2808
2812
  exportConfig?: ReportExportConfig;
2809
2813
  /**
2810
- * An updated list of tag key and value pairs associated with this report group. These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.
2814
+ * An updated list of tag key and value pairs associated with this report group. These tags are available for use by AWS services that support AWS CodeBuild report group tags.
2811
2815
  */
2812
2816
  tags?: TagList;
2813
2817
  }
@@ -2819,7 +2823,7 @@ declare namespace CodeBuild {
2819
2823
  }
2820
2824
  export interface UpdateWebhookInput {
2821
2825
  /**
2822
- * The name of the CodeBuild project.
2826
+ * The name of the AWS CodeBuild project.
2823
2827
  */
2824
2828
  projectName: ProjectName;
2825
2829
  /**
@@ -2841,7 +2845,7 @@ declare namespace CodeBuild {
2841
2845
  }
2842
2846
  export interface UpdateWebhookOutput {
2843
2847
  /**
2844
- * Information about a repository's webhook that is associated with a project in CodeBuild.
2848
+ * Information about a repository's webhook that is associated with a project in AWS CodeBuild.
2845
2849
  */
2846
2850
  webhook?: Webhook;
2847
2851
  }
@@ -2866,7 +2870,7 @@ declare namespace CodeBuild {
2866
2870
  */
2867
2871
  url?: NonEmptyString;
2868
2872
  /**
2869
- * The CodeBuild endpoint where webhook events are sent.
2873
+ * The AWS CodeBuild endpoint where webhook events are sent.
2870
2874
  */
2871
2875
  payloadUrl?: NonEmptyString;
2872
2876
  /**