@aws-sdk/client-codebuild 3.687.0 → 3.691.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.
- package/dist-cjs/index.js +3 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-types/commands/BatchGetBuildBatchesCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetBuildsCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetFleetsCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetProjectsCommand.d.ts +1 -1
- package/dist-types/commands/CreateFleetCommand.d.ts +2 -2
- package/dist-types/commands/CreateProjectCommand.d.ts +2 -2
- package/dist-types/commands/RetryBuildBatchCommand.d.ts +1 -1
- package/dist-types/commands/RetryBuildCommand.d.ts +1 -1
- package/dist-types/commands/StartBuildBatchCommand.d.ts +2 -2
- package/dist-types/commands/StartBuildCommand.d.ts +2 -2
- package/dist-types/commands/StopBuildBatchCommand.d.ts +1 -1
- package/dist-types/commands/StopBuildCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFleetCommand.d.ts +2 -2
- package/dist-types/commands/UpdateProjectCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +646 -580
- package/dist-types/ts3.4/models/models_0.d.ts +587 -580
- package/package.json +7 -7
|
@@ -75,24 +75,24 @@ export interface AutoRetryConfig {
|
|
|
75
75
|
* retry your build for up to 2 additional times.</p>
|
|
76
76
|
* @public
|
|
77
77
|
*/
|
|
78
|
-
autoRetryLimit?: number;
|
|
78
|
+
autoRetryLimit?: number | undefined;
|
|
79
79
|
/**
|
|
80
80
|
* <p>The number of times that the build has been retried. The initial build will have an auto-retry number of 0.</p>
|
|
81
81
|
* @public
|
|
82
82
|
*/
|
|
83
|
-
autoRetryNumber?: number;
|
|
83
|
+
autoRetryNumber?: number | undefined;
|
|
84
84
|
/**
|
|
85
85
|
* <p>The build ARN of the auto-retried build triggered by the current build. The next auto-retry
|
|
86
86
|
* will be <code>null</code> for builds that don't trigger an auto-retry.</p>
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
|
-
nextAutoRetry?: string;
|
|
89
|
+
nextAutoRetry?: string | undefined;
|
|
90
90
|
/**
|
|
91
91
|
* <p>The build ARN of the build that triggered the current auto-retry build. The previous auto-retry will be
|
|
92
92
|
* <code>null</code> for the initial build.</p>
|
|
93
93
|
* @public
|
|
94
94
|
*/
|
|
95
|
-
previousAutoRetry?: string;
|
|
95
|
+
previousAutoRetry?: string | undefined;
|
|
96
96
|
}
|
|
97
97
|
/**
|
|
98
98
|
* @public
|
|
@@ -113,12 +113,12 @@ export interface BuildNotDeleted {
|
|
|
113
113
|
* <p>The ID of the build that could not be successfully deleted.</p>
|
|
114
114
|
* @public
|
|
115
115
|
*/
|
|
116
|
-
id?: string;
|
|
116
|
+
id?: string | undefined;
|
|
117
117
|
/**
|
|
118
118
|
* <p>Additional information about the build that could not be successfully deleted.</p>
|
|
119
119
|
* @public
|
|
120
120
|
*/
|
|
121
|
-
statusCode?: string;
|
|
121
|
+
statusCode?: string | undefined;
|
|
122
122
|
}
|
|
123
123
|
/**
|
|
124
124
|
* @public
|
|
@@ -128,12 +128,12 @@ export interface BatchDeleteBuildsOutput {
|
|
|
128
128
|
* <p>The IDs of the builds that were successfully deleted.</p>
|
|
129
129
|
* @public
|
|
130
130
|
*/
|
|
131
|
-
buildsDeleted?: string[];
|
|
131
|
+
buildsDeleted?: string[] | undefined;
|
|
132
132
|
/**
|
|
133
133
|
* <p>Information about any builds that could not be successfully deleted.</p>
|
|
134
134
|
* @public
|
|
135
135
|
*/
|
|
136
|
-
buildsNotDeleted?: BuildNotDeleted[];
|
|
136
|
+
buildsNotDeleted?: BuildNotDeleted[] | undefined;
|
|
137
137
|
}
|
|
138
138
|
/**
|
|
139
139
|
* <p>The input value that was provided is not valid.</p>
|
|
@@ -179,7 +179,7 @@ export interface BuildArtifacts {
|
|
|
179
179
|
* <p>Information about the location of the build artifacts.</p>
|
|
180
180
|
* @public
|
|
181
181
|
*/
|
|
182
|
-
location?: string;
|
|
182
|
+
location?: string | undefined;
|
|
183
183
|
/**
|
|
184
184
|
* <p>The SHA-256 hash of the build artifact.</p>
|
|
185
185
|
* <p>You can use this hash along with a checksum tool to confirm file integrity and
|
|
@@ -190,7 +190,7 @@ export interface BuildArtifacts {
|
|
|
190
190
|
* </note>
|
|
191
191
|
* @public
|
|
192
192
|
*/
|
|
193
|
-
sha256sum?: string;
|
|
193
|
+
sha256sum?: string | undefined;
|
|
194
194
|
/**
|
|
195
195
|
* <p>The MD5 hash of the build artifact.</p>
|
|
196
196
|
* <p>You can use this hash along with a checksum tool to confirm file integrity and
|
|
@@ -201,7 +201,7 @@ export interface BuildArtifacts {
|
|
|
201
201
|
* </note>
|
|
202
202
|
* @public
|
|
203
203
|
*/
|
|
204
|
-
md5sum?: string;
|
|
204
|
+
md5sum?: string | undefined;
|
|
205
205
|
/**
|
|
206
206
|
* <p> If this flag is set, a name specified in the buildspec file overrides the artifact
|
|
207
207
|
* name. The name specified in a buildspec file is calculated at build time and uses the
|
|
@@ -209,17 +209,17 @@ export interface BuildArtifacts {
|
|
|
209
209
|
* name so that it is always unique. </p>
|
|
210
210
|
* @public
|
|
211
211
|
*/
|
|
212
|
-
overrideArtifactName?: boolean;
|
|
212
|
+
overrideArtifactName?: boolean | undefined;
|
|
213
213
|
/**
|
|
214
214
|
* <p> Information that tells you if encryption for build artifacts is disabled. </p>
|
|
215
215
|
* @public
|
|
216
216
|
*/
|
|
217
|
-
encryptionDisabled?: boolean;
|
|
217
|
+
encryptionDisabled?: boolean | undefined;
|
|
218
218
|
/**
|
|
219
219
|
* <p> An identifier for this artifact definition. </p>
|
|
220
220
|
* @public
|
|
221
221
|
*/
|
|
222
|
-
artifactIdentifier?: string;
|
|
222
|
+
artifactIdentifier?: string | undefined;
|
|
223
223
|
/**
|
|
224
224
|
* <p>Specifies the bucket owner's access for objects that another account uploads to their
|
|
225
225
|
* Amazon S3 bucket. By default, only the account that uploads the objects to the bucket has
|
|
@@ -265,7 +265,7 @@ export interface BuildArtifacts {
|
|
|
265
265
|
* </dl>
|
|
266
266
|
* @public
|
|
267
267
|
*/
|
|
268
|
-
bucketOwnerAccess?: BucketOwnerAccess;
|
|
268
|
+
bucketOwnerAccess?: BucketOwnerAccess | undefined;
|
|
269
269
|
}
|
|
270
270
|
/**
|
|
271
271
|
* @public
|
|
@@ -288,7 +288,7 @@ export interface BatchRestrictions {
|
|
|
288
288
|
* <p>Specifies the maximum number of builds allowed.</p>
|
|
289
289
|
* @public
|
|
290
290
|
*/
|
|
291
|
-
maximumBuildsAllowed?: number;
|
|
291
|
+
maximumBuildsAllowed?: number | undefined;
|
|
292
292
|
/**
|
|
293
293
|
* <p>An array of strings that specify the compute types that are allowed for the batch
|
|
294
294
|
* build. See <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html">Build environment
|
|
@@ -296,7 +296,7 @@ export interface BatchRestrictions {
|
|
|
296
296
|
* </p>
|
|
297
297
|
* @public
|
|
298
298
|
*/
|
|
299
|
-
computeTypesAllowed?: string[];
|
|
299
|
+
computeTypesAllowed?: string[] | undefined;
|
|
300
300
|
}
|
|
301
301
|
/**
|
|
302
302
|
* <p>Contains configuration information about a batch build project.</p>
|
|
@@ -307,24 +307,24 @@ export interface ProjectBuildBatchConfig {
|
|
|
307
307
|
* <p>Specifies the service role ARN for the batch build project.</p>
|
|
308
308
|
* @public
|
|
309
309
|
*/
|
|
310
|
-
serviceRole?: string;
|
|
310
|
+
serviceRole?: string | undefined;
|
|
311
311
|
/**
|
|
312
312
|
* <p>Specifies if the build artifacts for the batch build should be combined into a single
|
|
313
313
|
* artifact location.</p>
|
|
314
314
|
* @public
|
|
315
315
|
*/
|
|
316
|
-
combineArtifacts?: boolean;
|
|
316
|
+
combineArtifacts?: boolean | undefined;
|
|
317
317
|
/**
|
|
318
318
|
* <p>A <code>BatchRestrictions</code> object that specifies the restrictions for the batch
|
|
319
319
|
* build.</p>
|
|
320
320
|
* @public
|
|
321
321
|
*/
|
|
322
|
-
restrictions?: BatchRestrictions;
|
|
322
|
+
restrictions?: BatchRestrictions | undefined;
|
|
323
323
|
/**
|
|
324
324
|
* <p>Specifies the maximum amount of time, in minutes, that the batch build must be completed in.</p>
|
|
325
325
|
* @public
|
|
326
326
|
*/
|
|
327
|
-
timeoutInMins?: number;
|
|
327
|
+
timeoutInMins?: number | undefined;
|
|
328
328
|
/**
|
|
329
329
|
* <p>Specifies how build status reports are sent to the source provider for the batch build. This property is only used
|
|
330
330
|
* when the source provider for your project is Bitbucket, GitHub, or GitHub Enterprise,
|
|
@@ -341,7 +341,7 @@ export interface ProjectBuildBatchConfig {
|
|
|
341
341
|
* </dl>
|
|
342
342
|
* @public
|
|
343
343
|
*/
|
|
344
|
-
batchReportMode?: BatchReportModeType;
|
|
344
|
+
batchReportMode?: BatchReportModeType | undefined;
|
|
345
345
|
}
|
|
346
346
|
/**
|
|
347
347
|
* @public
|
|
@@ -369,17 +369,17 @@ export interface ResolvedArtifact {
|
|
|
369
369
|
* <p>Specifies the type of artifact.</p>
|
|
370
370
|
* @public
|
|
371
371
|
*/
|
|
372
|
-
type?: ArtifactsType;
|
|
372
|
+
type?: ArtifactsType | undefined;
|
|
373
373
|
/**
|
|
374
374
|
* <p>The location of the artifact.</p>
|
|
375
375
|
* @public
|
|
376
376
|
*/
|
|
377
|
-
location?: string;
|
|
377
|
+
location?: string | undefined;
|
|
378
378
|
/**
|
|
379
379
|
* <p>The identifier of the artifact.</p>
|
|
380
380
|
* @public
|
|
381
381
|
*/
|
|
382
|
-
identifier?: string;
|
|
382
|
+
identifier?: string | undefined;
|
|
383
383
|
}
|
|
384
384
|
/**
|
|
385
385
|
* <p>Contains summary information about a batch build group.</p>
|
|
@@ -390,12 +390,12 @@ export interface BuildSummary {
|
|
|
390
390
|
* <p>The batch build ARN.</p>
|
|
391
391
|
* @public
|
|
392
392
|
*/
|
|
393
|
-
arn?: string;
|
|
393
|
+
arn?: string | undefined;
|
|
394
394
|
/**
|
|
395
395
|
* <p>When the build was started, expressed in Unix time format.</p>
|
|
396
396
|
* @public
|
|
397
397
|
*/
|
|
398
|
-
requestedOn?: Date;
|
|
398
|
+
requestedOn?: Date | undefined;
|
|
399
399
|
/**
|
|
400
400
|
* <p>The status of the build group.</p>
|
|
401
401
|
* <dl>
|
|
@@ -426,19 +426,19 @@ export interface BuildSummary {
|
|
|
426
426
|
* </dl>
|
|
427
427
|
* @public
|
|
428
428
|
*/
|
|
429
|
-
buildStatus?: StatusType;
|
|
429
|
+
buildStatus?: StatusType | undefined;
|
|
430
430
|
/**
|
|
431
431
|
* <p>A <code>ResolvedArtifact</code> object that represents the primary build artifacts for the
|
|
432
432
|
* build group.</p>
|
|
433
433
|
* @public
|
|
434
434
|
*/
|
|
435
|
-
primaryArtifact?: ResolvedArtifact;
|
|
435
|
+
primaryArtifact?: ResolvedArtifact | undefined;
|
|
436
436
|
/**
|
|
437
437
|
* <p>An array of <code>ResolvedArtifact</code> objects that represents the secondary build
|
|
438
438
|
* artifacts for the build group.</p>
|
|
439
439
|
* @public
|
|
440
440
|
*/
|
|
441
|
-
secondaryArtifacts?: ResolvedArtifact[];
|
|
441
|
+
secondaryArtifacts?: ResolvedArtifact[] | undefined;
|
|
442
442
|
}
|
|
443
443
|
/**
|
|
444
444
|
* <p>Contains information about a batch build build group. Build groups are used to combine
|
|
@@ -451,30 +451,30 @@ export interface BuildGroup {
|
|
|
451
451
|
* <p>Contains the identifier of the build group.</p>
|
|
452
452
|
* @public
|
|
453
453
|
*/
|
|
454
|
-
identifier?: string;
|
|
454
|
+
identifier?: string | undefined;
|
|
455
455
|
/**
|
|
456
456
|
* <p>An array of strings that contain the identifiers of the build groups that this build
|
|
457
457
|
* group depends on.</p>
|
|
458
458
|
* @public
|
|
459
459
|
*/
|
|
460
|
-
dependsOn?: string[];
|
|
460
|
+
dependsOn?: string[] | undefined;
|
|
461
461
|
/**
|
|
462
462
|
* <p>Specifies if failures in this build group can be ignored.</p>
|
|
463
463
|
* @public
|
|
464
464
|
*/
|
|
465
|
-
ignoreFailure?: boolean;
|
|
465
|
+
ignoreFailure?: boolean | undefined;
|
|
466
466
|
/**
|
|
467
467
|
* <p>A <code>BuildSummary</code> object that contains a summary of the current build
|
|
468
468
|
* group.</p>
|
|
469
469
|
* @public
|
|
470
470
|
*/
|
|
471
|
-
currentBuildSummary?: BuildSummary;
|
|
471
|
+
currentBuildSummary?: BuildSummary | undefined;
|
|
472
472
|
/**
|
|
473
473
|
* <p>An array of <code>BuildSummary</code> objects that contain summaries of previous
|
|
474
474
|
* build groups.</p>
|
|
475
475
|
* @public
|
|
476
476
|
*/
|
|
477
|
-
priorBuildSummaryList?: BuildSummary[];
|
|
477
|
+
priorBuildSummaryList?: BuildSummary[] | undefined;
|
|
478
478
|
}
|
|
479
479
|
/**
|
|
480
480
|
* @public
|
|
@@ -541,7 +541,7 @@ export interface ProjectCache {
|
|
|
541
541
|
* </ul>
|
|
542
542
|
* @public
|
|
543
543
|
*/
|
|
544
|
-
location?: string;
|
|
544
|
+
location?: string | undefined;
|
|
545
545
|
/**
|
|
546
546
|
* <p>An array of strings that specify the local cache modes. You can use one or more local
|
|
547
547
|
* cache modes at the same time. This is only used for <code>LOCAL</code> cache
|
|
@@ -603,7 +603,7 @@ export interface ProjectCache {
|
|
|
603
603
|
* </dl>
|
|
604
604
|
* @public
|
|
605
605
|
*/
|
|
606
|
-
modes?: CacheMode[];
|
|
606
|
+
modes?: CacheMode[] | undefined;
|
|
607
607
|
}
|
|
608
608
|
/**
|
|
609
609
|
* @public
|
|
@@ -626,22 +626,22 @@ export interface ComputeConfiguration {
|
|
|
626
626
|
* <p>The number of vCPUs of the instance type included in your fleet.</p>
|
|
627
627
|
* @public
|
|
628
628
|
*/
|
|
629
|
-
vCpu?: number;
|
|
629
|
+
vCpu?: number | undefined;
|
|
630
630
|
/**
|
|
631
631
|
* <p>The amount of memory of the instance type included in your fleet.</p>
|
|
632
632
|
* @public
|
|
633
633
|
*/
|
|
634
|
-
memory?: number;
|
|
634
|
+
memory?: number | undefined;
|
|
635
635
|
/**
|
|
636
636
|
* <p>The amount of disk space of the instance type included in your fleet.</p>
|
|
637
637
|
* @public
|
|
638
638
|
*/
|
|
639
|
-
disk?: number;
|
|
639
|
+
disk?: number | undefined;
|
|
640
640
|
/**
|
|
641
641
|
* <p>The machine type of the instance type included in your fleet.</p>
|
|
642
642
|
* @public
|
|
643
643
|
*/
|
|
644
|
-
machineType?: MachineType;
|
|
644
|
+
machineType?: MachineType | undefined;
|
|
645
645
|
}
|
|
646
646
|
/**
|
|
647
647
|
* @public
|
|
@@ -728,7 +728,7 @@ export interface EnvironmentVariable {
|
|
|
728
728
|
* </ul>
|
|
729
729
|
* @public
|
|
730
730
|
*/
|
|
731
|
-
type?: EnvironmentVariableType;
|
|
731
|
+
type?: EnvironmentVariableType | undefined;
|
|
732
732
|
}
|
|
733
733
|
/**
|
|
734
734
|
* <p>Information about the compute fleet of the build project. For more
|
|
@@ -741,7 +741,7 @@ export interface ProjectFleet {
|
|
|
741
741
|
* <p>Specifies the compute fleet ARN for the build project.</p>
|
|
742
742
|
* @public
|
|
743
743
|
*/
|
|
744
|
-
fleetArn?: string;
|
|
744
|
+
fleetArn?: string | undefined;
|
|
745
745
|
}
|
|
746
746
|
/**
|
|
747
747
|
* @public
|
|
@@ -806,12 +806,15 @@ export interface RegistryCredential {
|
|
|
806
806
|
*/
|
|
807
807
|
export declare const EnvironmentType: {
|
|
808
808
|
readonly ARM_CONTAINER: "ARM_CONTAINER";
|
|
809
|
+
readonly ARM_EC2: "ARM_EC2";
|
|
809
810
|
readonly ARM_LAMBDA_CONTAINER: "ARM_LAMBDA_CONTAINER";
|
|
810
811
|
readonly LINUX_CONTAINER: "LINUX_CONTAINER";
|
|
812
|
+
readonly LINUX_EC2: "LINUX_EC2";
|
|
811
813
|
readonly LINUX_GPU_CONTAINER: "LINUX_GPU_CONTAINER";
|
|
812
814
|
readonly LINUX_LAMBDA_CONTAINER: "LINUX_LAMBDA_CONTAINER";
|
|
813
815
|
readonly MAC_ARM: "MAC_ARM";
|
|
814
816
|
readonly WINDOWS_CONTAINER: "WINDOWS_CONTAINER";
|
|
817
|
+
readonly WINDOWS_EC2: "WINDOWS_EC2";
|
|
815
818
|
readonly WINDOWS_SERVER_2019_CONTAINER: "WINDOWS_SERVER_2019_CONTAINER";
|
|
816
819
|
};
|
|
817
820
|
/**
|
|
@@ -999,18 +1002,18 @@ export interface ProjectEnvironment {
|
|
|
999
1002
|
* <p>The compute configuration of the build project. This is only required if <code>computeType</code> is set to <code>ATTRIBUTE_BASED_COMPUTE</code>.</p>
|
|
1000
1003
|
* @public
|
|
1001
1004
|
*/
|
|
1002
|
-
computeConfiguration?: ComputeConfiguration;
|
|
1005
|
+
computeConfiguration?: ComputeConfiguration | undefined;
|
|
1003
1006
|
/**
|
|
1004
1007
|
* <p>A ProjectFleet object to use for this build project.</p>
|
|
1005
1008
|
* @public
|
|
1006
1009
|
*/
|
|
1007
|
-
fleet?: ProjectFleet;
|
|
1010
|
+
fleet?: ProjectFleet | undefined;
|
|
1008
1011
|
/**
|
|
1009
1012
|
* <p>A set of environment variables to make available to builds for this build
|
|
1010
1013
|
* project.</p>
|
|
1011
1014
|
* @public
|
|
1012
1015
|
*/
|
|
1013
|
-
environmentVariables?: EnvironmentVariable[];
|
|
1016
|
+
environmentVariables?: EnvironmentVariable[] | undefined;
|
|
1014
1017
|
/**
|
|
1015
1018
|
* <p>Enables running the Docker daemon inside a Docker container. Set to true only if the
|
|
1016
1019
|
* build project is used to build Docker images. Otherwise, a build that attempts to
|
|
@@ -1035,19 +1038,19 @@ export interface ProjectEnvironment {
|
|
|
1035
1038
|
* </p>
|
|
1036
1039
|
* @public
|
|
1037
1040
|
*/
|
|
1038
|
-
privilegedMode?: boolean;
|
|
1041
|
+
privilegedMode?: boolean | undefined;
|
|
1039
1042
|
/**
|
|
1040
1043
|
* <p>The ARN of the Amazon S3 bucket, path prefix, and object key that contains the PEM-encoded
|
|
1041
1044
|
* certificate for the build project. For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/create-project-cli.html#cli.environment.certificate">certificate</a> in the
|
|
1042
1045
|
* <i>CodeBuild User Guide</i>.</p>
|
|
1043
1046
|
* @public
|
|
1044
1047
|
*/
|
|
1045
|
-
certificate?: string;
|
|
1048
|
+
certificate?: string | undefined;
|
|
1046
1049
|
/**
|
|
1047
1050
|
* <p> The credentials for access to a private registry.</p>
|
|
1048
1051
|
* @public
|
|
1049
1052
|
*/
|
|
1050
|
-
registryCredential?: RegistryCredential;
|
|
1053
|
+
registryCredential?: RegistryCredential | undefined;
|
|
1051
1054
|
/**
|
|
1052
1055
|
* <p> The type of credentials CodeBuild uses to pull images in your build. There are two valid
|
|
1053
1056
|
* values: </p>
|
|
@@ -1068,7 +1071,7 @@ export interface ProjectEnvironment {
|
|
|
1068
1071
|
* </p>
|
|
1069
1072
|
* @public
|
|
1070
1073
|
*/
|
|
1071
|
-
imagePullCredentialsType?: ImagePullCredentialsType;
|
|
1074
|
+
imagePullCredentialsType?: ImagePullCredentialsType | undefined;
|
|
1072
1075
|
}
|
|
1073
1076
|
/**
|
|
1074
1077
|
* @public
|
|
@@ -1093,7 +1096,7 @@ export interface ProjectFileSystemLocation {
|
|
|
1093
1096
|
* <p> The type of the file system. The one supported type is <code>EFS</code>. </p>
|
|
1094
1097
|
* @public
|
|
1095
1098
|
*/
|
|
1096
|
-
type?: FileSystemType;
|
|
1099
|
+
type?: FileSystemType | undefined;
|
|
1097
1100
|
/**
|
|
1098
1101
|
* <p>A string that specifies the location of the file system created by Amazon EFS. Its
|
|
1099
1102
|
* format is <code>efs-dns-name:/directory-path</code>. You can find the DNS name of file
|
|
@@ -1107,12 +1110,12 @@ export interface ProjectFileSystemLocation {
|
|
|
1107
1110
|
* CodeBuild mounts the entire file system. </p>
|
|
1108
1111
|
* @public
|
|
1109
1112
|
*/
|
|
1110
|
-
location?: string;
|
|
1113
|
+
location?: string | undefined;
|
|
1111
1114
|
/**
|
|
1112
1115
|
* <p>The location in the container where you mount the file system. </p>
|
|
1113
1116
|
* @public
|
|
1114
1117
|
*/
|
|
1115
|
-
mountPoint?: string;
|
|
1118
|
+
mountPoint?: string | undefined;
|
|
1116
1119
|
/**
|
|
1117
1120
|
* <p>The name used to access a file system created by Amazon EFS. CodeBuild creates an
|
|
1118
1121
|
* environment variable by appending the <code>identifier</code> in all capital letters to
|
|
@@ -1122,7 +1125,7 @@ export interface ProjectFileSystemLocation {
|
|
|
1122
1125
|
* <p> The <code>identifier</code> is used to mount your file system. </p>
|
|
1123
1126
|
* @public
|
|
1124
1127
|
*/
|
|
1125
|
-
identifier?: string;
|
|
1128
|
+
identifier?: string | undefined;
|
|
1126
1129
|
/**
|
|
1127
1130
|
* <p> The mount options for a file system created by Amazon EFS. The default mount options
|
|
1128
1131
|
* used by CodeBuild are
|
|
@@ -1131,7 +1134,7 @@ export interface ProjectFileSystemLocation {
|
|
|
1131
1134
|
* Options</a>. </p>
|
|
1132
1135
|
* @public
|
|
1133
1136
|
*/
|
|
1134
|
-
mountOptions?: string;
|
|
1137
|
+
mountOptions?: string | undefined;
|
|
1135
1138
|
}
|
|
1136
1139
|
/**
|
|
1137
1140
|
* @public
|
|
@@ -1170,13 +1173,13 @@ export interface CloudWatchLogsConfig {
|
|
|
1170
1173
|
* with Log Groups and Log Streams</a>. </p>
|
|
1171
1174
|
* @public
|
|
1172
1175
|
*/
|
|
1173
|
-
groupName?: string;
|
|
1176
|
+
groupName?: string | undefined;
|
|
1174
1177
|
/**
|
|
1175
1178
|
* <p> The prefix of the stream name of the CloudWatch Logs. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html">Working
|
|
1176
1179
|
* with Log Groups and Log Streams</a>. </p>
|
|
1177
1180
|
* @public
|
|
1178
1181
|
*/
|
|
1179
|
-
streamName?: string;
|
|
1182
|
+
streamName?: string | undefined;
|
|
1180
1183
|
}
|
|
1181
1184
|
/**
|
|
1182
1185
|
* <p> Information about S3 logs for a build project. </p>
|
|
@@ -1206,13 +1209,13 @@ export interface S3LogsConfig {
|
|
|
1206
1209
|
* <code>arn:aws:s3:::my-bucket/build-log</code>. </p>
|
|
1207
1210
|
* @public
|
|
1208
1211
|
*/
|
|
1209
|
-
location?: string;
|
|
1212
|
+
location?: string | undefined;
|
|
1210
1213
|
/**
|
|
1211
1214
|
* <p> Set to true if you do not want your S3 build log output encrypted. By default S3
|
|
1212
1215
|
* build logs are encrypted. </p>
|
|
1213
1216
|
* @public
|
|
1214
1217
|
*/
|
|
1215
|
-
encryptionDisabled?: boolean;
|
|
1218
|
+
encryptionDisabled?: boolean | undefined;
|
|
1216
1219
|
/**
|
|
1217
1220
|
* <p>Specifies the bucket owner's access for objects that another account uploads to their
|
|
1218
1221
|
* Amazon S3 bucket. By default, only the account that uploads the objects to the bucket has
|
|
@@ -1258,7 +1261,7 @@ export interface S3LogsConfig {
|
|
|
1258
1261
|
* </dl>
|
|
1259
1262
|
* @public
|
|
1260
1263
|
*/
|
|
1261
|
-
bucketOwnerAccess?: BucketOwnerAccess;
|
|
1264
|
+
bucketOwnerAccess?: BucketOwnerAccess | undefined;
|
|
1262
1265
|
}
|
|
1263
1266
|
/**
|
|
1264
1267
|
* <p> Information about logs for a build project. These can be logs in CloudWatch Logs, built in a
|
|
@@ -1270,13 +1273,13 @@ export interface LogsConfig {
|
|
|
1270
1273
|
* <p> Information about CloudWatch Logs for a build project. CloudWatch Logs are enabled by default. </p>
|
|
1271
1274
|
* @public
|
|
1272
1275
|
*/
|
|
1273
|
-
cloudWatchLogs?: CloudWatchLogsConfig;
|
|
1276
|
+
cloudWatchLogs?: CloudWatchLogsConfig | undefined;
|
|
1274
1277
|
/**
|
|
1275
1278
|
* <p> Information about logs built to an S3 bucket for a build project. S3 logs are not
|
|
1276
1279
|
* enabled by default. </p>
|
|
1277
1280
|
* @public
|
|
1278
1281
|
*/
|
|
1279
|
-
s3Logs?: S3LogsConfig;
|
|
1282
|
+
s3Logs?: S3LogsConfig | undefined;
|
|
1280
1283
|
}
|
|
1281
1284
|
/**
|
|
1282
1285
|
* <p>Additional information about a build phase that has an error. You can use this
|
|
@@ -1288,13 +1291,13 @@ export interface PhaseContext {
|
|
|
1288
1291
|
* <p>The status code for the context of the build phase.</p>
|
|
1289
1292
|
* @public
|
|
1290
1293
|
*/
|
|
1291
|
-
statusCode?: string;
|
|
1294
|
+
statusCode?: string | undefined;
|
|
1292
1295
|
/**
|
|
1293
1296
|
* <p>An explanation of the build phase's context. This might include a command ID and an
|
|
1294
1297
|
* exit code.</p>
|
|
1295
1298
|
* @public
|
|
1296
1299
|
*/
|
|
1297
|
-
message?: string;
|
|
1300
|
+
message?: string | undefined;
|
|
1298
1301
|
}
|
|
1299
1302
|
/**
|
|
1300
1303
|
* @public
|
|
@@ -1353,7 +1356,7 @@ export interface BuildBatchPhase {
|
|
|
1353
1356
|
* </dl>
|
|
1354
1357
|
* @public
|
|
1355
1358
|
*/
|
|
1356
|
-
phaseType?: BuildBatchPhaseType;
|
|
1359
|
+
phaseType?: BuildBatchPhaseType | undefined;
|
|
1357
1360
|
/**
|
|
1358
1361
|
* <p>The current status of the batch build phase. Valid values include:</p>
|
|
1359
1362
|
* <dl>
|
|
@@ -1384,29 +1387,29 @@ export interface BuildBatchPhase {
|
|
|
1384
1387
|
* </dl>
|
|
1385
1388
|
* @public
|
|
1386
1389
|
*/
|
|
1387
|
-
phaseStatus?: StatusType;
|
|
1390
|
+
phaseStatus?: StatusType | undefined;
|
|
1388
1391
|
/**
|
|
1389
1392
|
* <p>When the batch build phase started, expressed in Unix time format.</p>
|
|
1390
1393
|
* @public
|
|
1391
1394
|
*/
|
|
1392
|
-
startTime?: Date;
|
|
1395
|
+
startTime?: Date | undefined;
|
|
1393
1396
|
/**
|
|
1394
1397
|
* <p>When the batch build phase ended, expressed in Unix time format.</p>
|
|
1395
1398
|
* @public
|
|
1396
1399
|
*/
|
|
1397
|
-
endTime?: Date;
|
|
1400
|
+
endTime?: Date | undefined;
|
|
1398
1401
|
/**
|
|
1399
1402
|
* <p>How long, in seconds, between the starting and ending times of the batch build's
|
|
1400
1403
|
* phase.</p>
|
|
1401
1404
|
* @public
|
|
1402
1405
|
*/
|
|
1403
|
-
durationInSeconds?: number;
|
|
1406
|
+
durationInSeconds?: number | undefined;
|
|
1404
1407
|
/**
|
|
1405
1408
|
* <p>Additional information about the batch build phase. Especially to help troubleshoot a
|
|
1406
1409
|
* failed batch build.</p>
|
|
1407
1410
|
* @public
|
|
1408
1411
|
*/
|
|
1409
|
-
contexts?: PhaseContext[];
|
|
1412
|
+
contexts?: PhaseContext[] | undefined;
|
|
1410
1413
|
}
|
|
1411
1414
|
/**
|
|
1412
1415
|
* @public
|
|
@@ -1436,7 +1439,7 @@ export interface SourceAuth {
|
|
|
1436
1439
|
* <p>The resource value that applies to the specified authorization type.</p>
|
|
1437
1440
|
* @public
|
|
1438
1441
|
*/
|
|
1439
|
-
resource?: string;
|
|
1442
|
+
resource?: string | undefined;
|
|
1440
1443
|
}
|
|
1441
1444
|
/**
|
|
1442
1445
|
* <p>Contains information that defines how the CodeBuild build project reports the build status
|
|
@@ -1461,7 +1464,7 @@ export interface BuildStatusConfig {
|
|
|
1461
1464
|
* </dl>
|
|
1462
1465
|
* @public
|
|
1463
1466
|
*/
|
|
1464
|
-
context?: string;
|
|
1467
|
+
context?: string | undefined;
|
|
1465
1468
|
/**
|
|
1466
1469
|
* <p>Specifies the target url of the build status CodeBuild sends to the source provider. The
|
|
1467
1470
|
* usage of this parameter depends on the source provider.</p>
|
|
@@ -1479,7 +1482,7 @@ export interface BuildStatusConfig {
|
|
|
1479
1482
|
* </dl>
|
|
1480
1483
|
* @public
|
|
1481
1484
|
*/
|
|
1482
|
-
targetUrl?: string;
|
|
1485
|
+
targetUrl?: string | undefined;
|
|
1483
1486
|
}
|
|
1484
1487
|
/**
|
|
1485
1488
|
* <p> Information about the Git submodules configuration for an CodeBuild build project.
|
|
@@ -1637,17 +1640,17 @@ export interface ProjectSource {
|
|
|
1637
1640
|
* </p>
|
|
1638
1641
|
* @public
|
|
1639
1642
|
*/
|
|
1640
|
-
location?: string;
|
|
1643
|
+
location?: string | undefined;
|
|
1641
1644
|
/**
|
|
1642
1645
|
* <p>Information about the Git clone depth for the build project.</p>
|
|
1643
1646
|
* @public
|
|
1644
1647
|
*/
|
|
1645
|
-
gitCloneDepth?: number;
|
|
1648
|
+
gitCloneDepth?: number | undefined;
|
|
1646
1649
|
/**
|
|
1647
1650
|
* <p> Information about the Git submodules configuration for the build project. </p>
|
|
1648
1651
|
* @public
|
|
1649
1652
|
*/
|
|
1650
|
-
gitSubmodulesConfig?: GitSubmodulesConfig;
|
|
1653
|
+
gitSubmodulesConfig?: GitSubmodulesConfig | undefined;
|
|
1651
1654
|
/**
|
|
1652
1655
|
* <p>The buildspec file declaration to use for the builds in this build project.</p>
|
|
1653
1656
|
* <p> If this value is set, it can be either an inline buildspec definition, the path to an
|
|
@@ -1660,13 +1663,13 @@ export interface ProjectSource {
|
|
|
1660
1663
|
* its root directory. For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#build-spec-ref-name-storage">Buildspec File Name and Storage Location</a>. </p>
|
|
1661
1664
|
* @public
|
|
1662
1665
|
*/
|
|
1663
|
-
buildspec?: string;
|
|
1666
|
+
buildspec?: string | undefined;
|
|
1664
1667
|
/**
|
|
1665
1668
|
* <p>Information about the authorization settings for CodeBuild to access the source code to be
|
|
1666
1669
|
* built.</p>
|
|
1667
1670
|
* @public
|
|
1668
1671
|
*/
|
|
1669
|
-
auth?: SourceAuth;
|
|
1672
|
+
auth?: SourceAuth | undefined;
|
|
1670
1673
|
/**
|
|
1671
1674
|
* <p> Set to true to report the status of a build's start and finish to your source
|
|
1672
1675
|
* provider. This option is valid only when your source provider is GitHub, GitHub
|
|
@@ -1681,7 +1684,7 @@ export interface ProjectSource {
|
|
|
1681
1684
|
* effect.</p>
|
|
1682
1685
|
* @public
|
|
1683
1686
|
*/
|
|
1684
|
-
reportBuildStatus?: boolean;
|
|
1687
|
+
reportBuildStatus?: boolean | undefined;
|
|
1685
1688
|
/**
|
|
1686
1689
|
* <p>Contains information that defines how the build project reports the build status to
|
|
1687
1690
|
* the source provider. This option is only used when the source provider is
|
|
@@ -1689,19 +1692,19 @@ export interface ProjectSource {
|
|
|
1689
1692
|
* <code>BITBUCKET</code>.</p>
|
|
1690
1693
|
* @public
|
|
1691
1694
|
*/
|
|
1692
|
-
buildStatusConfig?: BuildStatusConfig;
|
|
1695
|
+
buildStatusConfig?: BuildStatusConfig | undefined;
|
|
1693
1696
|
/**
|
|
1694
1697
|
* <p>Enable this flag to ignore SSL warnings while connecting to the project source
|
|
1695
1698
|
* code.</p>
|
|
1696
1699
|
* @public
|
|
1697
1700
|
*/
|
|
1698
|
-
insecureSsl?: boolean;
|
|
1701
|
+
insecureSsl?: boolean | undefined;
|
|
1699
1702
|
/**
|
|
1700
1703
|
* <p>An identifier for this project source. The identifier can only contain
|
|
1701
1704
|
* alphanumeric characters and underscores, and must be less than 128 characters in length. </p>
|
|
1702
1705
|
* @public
|
|
1703
1706
|
*/
|
|
1704
|
-
sourceIdentifier?: string;
|
|
1707
|
+
sourceIdentifier?: string | undefined;
|
|
1705
1708
|
}
|
|
1706
1709
|
/**
|
|
1707
1710
|
* <p> A source identifier and its corresponding version. </p>
|
|
@@ -1758,17 +1761,17 @@ export interface VpcConfig {
|
|
|
1758
1761
|
* <p>The ID of the Amazon VPC.</p>
|
|
1759
1762
|
* @public
|
|
1760
1763
|
*/
|
|
1761
|
-
vpcId?: string;
|
|
1764
|
+
vpcId?: string | undefined;
|
|
1762
1765
|
/**
|
|
1763
1766
|
* <p>A list of one or more subnet IDs in your Amazon VPC.</p>
|
|
1764
1767
|
* @public
|
|
1765
1768
|
*/
|
|
1766
|
-
subnets?: string[];
|
|
1769
|
+
subnets?: string[] | undefined;
|
|
1767
1770
|
/**
|
|
1768
1771
|
* <p>A list of one or more security groups IDs in your Amazon VPC.</p>
|
|
1769
1772
|
* @public
|
|
1770
1773
|
*/
|
|
1771
|
-
securityGroupIds?: string[];
|
|
1774
|
+
securityGroupIds?: string[] | undefined;
|
|
1772
1775
|
}
|
|
1773
1776
|
/**
|
|
1774
1777
|
* <p>Contains information about a batch build.</p>
|
|
@@ -1779,37 +1782,37 @@ export interface BuildBatch {
|
|
|
1779
1782
|
* <p>The identifier of the batch build.</p>
|
|
1780
1783
|
* @public
|
|
1781
1784
|
*/
|
|
1782
|
-
id?: string;
|
|
1785
|
+
id?: string | undefined;
|
|
1783
1786
|
/**
|
|
1784
1787
|
* <p>The ARN of the batch build.</p>
|
|
1785
1788
|
* @public
|
|
1786
1789
|
*/
|
|
1787
|
-
arn?: string;
|
|
1790
|
+
arn?: string | undefined;
|
|
1788
1791
|
/**
|
|
1789
1792
|
* <p>The date and time that the batch build started.</p>
|
|
1790
1793
|
* @public
|
|
1791
1794
|
*/
|
|
1792
|
-
startTime?: Date;
|
|
1795
|
+
startTime?: Date | undefined;
|
|
1793
1796
|
/**
|
|
1794
1797
|
* <p>The date and time that the batch build ended.</p>
|
|
1795
1798
|
* @public
|
|
1796
1799
|
*/
|
|
1797
|
-
endTime?: Date;
|
|
1800
|
+
endTime?: Date | undefined;
|
|
1798
1801
|
/**
|
|
1799
1802
|
* <p>The current phase of the batch build.</p>
|
|
1800
1803
|
* @public
|
|
1801
1804
|
*/
|
|
1802
|
-
currentPhase?: string;
|
|
1805
|
+
currentPhase?: string | undefined;
|
|
1803
1806
|
/**
|
|
1804
1807
|
* <p>The status of the batch build.</p>
|
|
1805
1808
|
* @public
|
|
1806
1809
|
*/
|
|
1807
|
-
buildBatchStatus?: StatusType;
|
|
1810
|
+
buildBatchStatus?: StatusType | undefined;
|
|
1808
1811
|
/**
|
|
1809
1812
|
* <p>The identifier of the version of the source code to be built.</p>
|
|
1810
1813
|
* @public
|
|
1811
1814
|
*/
|
|
1812
|
-
sourceVersion?: string;
|
|
1815
|
+
sourceVersion?: string | undefined;
|
|
1813
1816
|
/**
|
|
1814
1817
|
* <p>The identifier of the resolved version of this batch build's source code.</p>
|
|
1815
1818
|
* <ul>
|
|
@@ -1825,29 +1828,29 @@ export interface BuildBatch {
|
|
|
1825
1828
|
* </ul>
|
|
1826
1829
|
* @public
|
|
1827
1830
|
*/
|
|
1828
|
-
resolvedSourceVersion?: string;
|
|
1831
|
+
resolvedSourceVersion?: string | undefined;
|
|
1829
1832
|
/**
|
|
1830
1833
|
* <p>The name of the batch build project.</p>
|
|
1831
1834
|
* @public
|
|
1832
1835
|
*/
|
|
1833
|
-
projectName?: string;
|
|
1836
|
+
projectName?: string | undefined;
|
|
1834
1837
|
/**
|
|
1835
1838
|
* <p>An array of <code>BuildBatchPhase</code> objects the specify the phases of the
|
|
1836
1839
|
* batch build.</p>
|
|
1837
1840
|
* @public
|
|
1838
1841
|
*/
|
|
1839
|
-
phases?: BuildBatchPhase[];
|
|
1842
|
+
phases?: BuildBatchPhase[] | undefined;
|
|
1840
1843
|
/**
|
|
1841
1844
|
* <p>Information about the build input source code for the build project.</p>
|
|
1842
1845
|
* @public
|
|
1843
1846
|
*/
|
|
1844
|
-
source?: ProjectSource;
|
|
1847
|
+
source?: ProjectSource | undefined;
|
|
1845
1848
|
/**
|
|
1846
1849
|
* <p>An array of <code>ProjectSource</code> objects that define the sources for the batch
|
|
1847
1850
|
* build.</p>
|
|
1848
1851
|
* @public
|
|
1849
1852
|
*/
|
|
1850
|
-
secondarySources?: ProjectSource[];
|
|
1853
|
+
secondarySources?: ProjectSource[] | undefined;
|
|
1851
1854
|
/**
|
|
1852
1855
|
* <p>An array of <code>ProjectSourceVersion</code> objects. Each
|
|
1853
1856
|
* <code>ProjectSourceVersion</code> must be one of: </p>
|
|
@@ -1876,56 +1879,56 @@ export interface BuildBatch {
|
|
|
1876
1879
|
* </ul>
|
|
1877
1880
|
* @public
|
|
1878
1881
|
*/
|
|
1879
|
-
secondarySourceVersions?: ProjectSourceVersion[];
|
|
1882
|
+
secondarySourceVersions?: ProjectSourceVersion[] | undefined;
|
|
1880
1883
|
/**
|
|
1881
1884
|
* <p>A <code>BuildArtifacts</code> object the defines the build artifacts for this batch build.</p>
|
|
1882
1885
|
* @public
|
|
1883
1886
|
*/
|
|
1884
|
-
artifacts?: BuildArtifacts;
|
|
1887
|
+
artifacts?: BuildArtifacts | undefined;
|
|
1885
1888
|
/**
|
|
1886
1889
|
* <p>An array of <code>BuildArtifacts</code> objects the define the build artifacts
|
|
1887
1890
|
* for this batch build.</p>
|
|
1888
1891
|
* @public
|
|
1889
1892
|
*/
|
|
1890
|
-
secondaryArtifacts?: BuildArtifacts[];
|
|
1893
|
+
secondaryArtifacts?: BuildArtifacts[] | undefined;
|
|
1891
1894
|
/**
|
|
1892
1895
|
* <p>Information about the cache for the build project.</p>
|
|
1893
1896
|
* @public
|
|
1894
1897
|
*/
|
|
1895
|
-
cache?: ProjectCache;
|
|
1898
|
+
cache?: ProjectCache | undefined;
|
|
1896
1899
|
/**
|
|
1897
1900
|
* <p>Information about the build environment of the build project.</p>
|
|
1898
1901
|
* @public
|
|
1899
1902
|
*/
|
|
1900
|
-
environment?: ProjectEnvironment;
|
|
1903
|
+
environment?: ProjectEnvironment | undefined;
|
|
1901
1904
|
/**
|
|
1902
1905
|
* <p>The name of a service role used for builds in the batch.</p>
|
|
1903
1906
|
* @public
|
|
1904
1907
|
*/
|
|
1905
|
-
serviceRole?: string;
|
|
1908
|
+
serviceRole?: string | undefined;
|
|
1906
1909
|
/**
|
|
1907
1910
|
* <p> Information about logs for a build project. These can be logs in CloudWatch Logs, built in a
|
|
1908
1911
|
* specified S3 bucket, or both. </p>
|
|
1909
1912
|
* @public
|
|
1910
1913
|
*/
|
|
1911
|
-
logConfig?: LogsConfig;
|
|
1914
|
+
logConfig?: LogsConfig | undefined;
|
|
1912
1915
|
/**
|
|
1913
1916
|
* <p>Specifies the maximum amount of time, in minutes, that the build in a batch must be
|
|
1914
1917
|
* completed in.</p>
|
|
1915
1918
|
* @public
|
|
1916
1919
|
*/
|
|
1917
|
-
buildTimeoutInMinutes?: number;
|
|
1920
|
+
buildTimeoutInMinutes?: number | undefined;
|
|
1918
1921
|
/**
|
|
1919
1922
|
* <p>Specifies the amount of time, in minutes, that the batch build is allowed to be queued
|
|
1920
1923
|
* before it times out.</p>
|
|
1921
1924
|
* @public
|
|
1922
1925
|
*/
|
|
1923
|
-
queuedTimeoutInMinutes?: number;
|
|
1926
|
+
queuedTimeoutInMinutes?: number | undefined;
|
|
1924
1927
|
/**
|
|
1925
1928
|
* <p>Indicates if the batch build is complete.</p>
|
|
1926
1929
|
* @public
|
|
1927
1930
|
*/
|
|
1928
|
-
complete?: boolean;
|
|
1931
|
+
complete?: boolean | undefined;
|
|
1929
1932
|
/**
|
|
1930
1933
|
* <p>The entity that started the batch build. Valid values include:</p>
|
|
1931
1934
|
* <ul>
|
|
@@ -1943,12 +1946,12 @@ export interface BuildBatch {
|
|
|
1943
1946
|
* </ul>
|
|
1944
1947
|
* @public
|
|
1945
1948
|
*/
|
|
1946
|
-
initiator?: string;
|
|
1949
|
+
initiator?: string | undefined;
|
|
1947
1950
|
/**
|
|
1948
1951
|
* <p>Information about the VPC configuration that CodeBuild accesses.</p>
|
|
1949
1952
|
* @public
|
|
1950
1953
|
*/
|
|
1951
|
-
vpcConfig?: VpcConfig;
|
|
1954
|
+
vpcConfig?: VpcConfig | undefined;
|
|
1952
1955
|
/**
|
|
1953
1956
|
* <p>The Key Management Service customer master key (CMK) to be used for encrypting the batch build output
|
|
1954
1957
|
* artifacts.</p>
|
|
@@ -1960,7 +1963,7 @@ export interface BuildBatch {
|
|
|
1960
1963
|
* the format <code>alias/<alias-name></code>).</p>
|
|
1961
1964
|
* @public
|
|
1962
1965
|
*/
|
|
1963
|
-
encryptionKey?: string;
|
|
1966
|
+
encryptionKey?: string | undefined;
|
|
1964
1967
|
/**
|
|
1965
1968
|
* <p>The number of the batch build. For each project, the <code>buildBatchNumber</code> of its
|
|
1966
1969
|
* first batch build is <code>1</code>. The <code>buildBatchNumber</code> of each subsequent
|
|
@@ -1968,7 +1971,7 @@ export interface BuildBatch {
|
|
|
1968
1971
|
* <code>buildBatchNumber</code> of other batch builds does not change.</p>
|
|
1969
1972
|
* @public
|
|
1970
1973
|
*/
|
|
1971
|
-
buildBatchNumber?: number;
|
|
1974
|
+
buildBatchNumber?: number | undefined;
|
|
1972
1975
|
/**
|
|
1973
1976
|
* <p>An array of <code>ProjectFileSystemLocation</code> objects for the batch build
|
|
1974
1977
|
* project. A <code>ProjectFileSystemLocation</code> object specifies the
|
|
@@ -1977,24 +1980,24 @@ export interface BuildBatch {
|
|
|
1977
1980
|
* Elastic File System. </p>
|
|
1978
1981
|
* @public
|
|
1979
1982
|
*/
|
|
1980
|
-
fileSystemLocations?: ProjectFileSystemLocation[];
|
|
1983
|
+
fileSystemLocations?: ProjectFileSystemLocation[] | undefined;
|
|
1981
1984
|
/**
|
|
1982
1985
|
* <p>Contains configuration information about a batch build project.</p>
|
|
1983
1986
|
* @public
|
|
1984
1987
|
*/
|
|
1985
|
-
buildBatchConfig?: ProjectBuildBatchConfig;
|
|
1988
|
+
buildBatchConfig?: ProjectBuildBatchConfig | undefined;
|
|
1986
1989
|
/**
|
|
1987
1990
|
* <p>An array of <code>BuildGroup</code> objects that define the build groups for the
|
|
1988
1991
|
* batch build.</p>
|
|
1989
1992
|
* @public
|
|
1990
1993
|
*/
|
|
1991
|
-
buildGroups?: BuildGroup[];
|
|
1994
|
+
buildGroups?: BuildGroup[] | undefined;
|
|
1992
1995
|
/**
|
|
1993
1996
|
* <p>Specifies if session debugging is enabled for this batch build. For more information, see
|
|
1994
1997
|
* <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/session-manager.html">Viewing a running build in Session Manager</a>. Batch session debugging is not supported for matrix batch builds.</p>
|
|
1995
1998
|
* @public
|
|
1996
1999
|
*/
|
|
1997
|
-
debugSessionEnabled?: boolean;
|
|
2000
|
+
debugSessionEnabled?: boolean | undefined;
|
|
1998
2001
|
}
|
|
1999
2002
|
/**
|
|
2000
2003
|
* @public
|
|
@@ -2005,12 +2008,12 @@ export interface BatchGetBuildBatchesOutput {
|
|
|
2005
2008
|
* builds.</p>
|
|
2006
2009
|
* @public
|
|
2007
2010
|
*/
|
|
2008
|
-
buildBatches?: BuildBatch[];
|
|
2011
|
+
buildBatches?: BuildBatch[] | undefined;
|
|
2009
2012
|
/**
|
|
2010
2013
|
* <p>An array that contains the identifiers of any batch builds that are not found.</p>
|
|
2011
2014
|
* @public
|
|
2012
2015
|
*/
|
|
2013
|
-
buildBatchesNotFound?: string[];
|
|
2016
|
+
buildBatchesNotFound?: string[] | undefined;
|
|
2014
2017
|
}
|
|
2015
2018
|
/**
|
|
2016
2019
|
* @public
|
|
@@ -2032,14 +2035,14 @@ export interface DebugSession {
|
|
|
2032
2035
|
* <p>Specifies if session debugging is enabled for this build.</p>
|
|
2033
2036
|
* @public
|
|
2034
2037
|
*/
|
|
2035
|
-
sessionEnabled?: boolean;
|
|
2038
|
+
sessionEnabled?: boolean | undefined;
|
|
2036
2039
|
/**
|
|
2037
2040
|
* <p>Contains the identifier of the Session Manager session used for the build. To work with
|
|
2038
2041
|
* the paused build, you open this session to examine, control, and resume the
|
|
2039
2042
|
* build.</p>
|
|
2040
2043
|
* @public
|
|
2041
2044
|
*/
|
|
2042
|
-
sessionTarget?: string;
|
|
2045
|
+
sessionTarget?: string | undefined;
|
|
2043
2046
|
}
|
|
2044
2047
|
/**
|
|
2045
2048
|
* <p>Contains information about an exported environment variable. </p>
|
|
@@ -2060,12 +2063,12 @@ export interface ExportedEnvironmentVariable {
|
|
|
2060
2063
|
* <p>The name of the exported environment variable.</p>
|
|
2061
2064
|
* @public
|
|
2062
2065
|
*/
|
|
2063
|
-
name?: string;
|
|
2066
|
+
name?: string | undefined;
|
|
2064
2067
|
/**
|
|
2065
2068
|
* <p>The value assigned to the exported environment variable.</p>
|
|
2066
2069
|
* @public
|
|
2067
2070
|
*/
|
|
2068
|
-
value?: string;
|
|
2071
|
+
value?: string | undefined;
|
|
2069
2072
|
}
|
|
2070
2073
|
/**
|
|
2071
2074
|
* <p>Information about build logs in CloudWatch Logs.</p>
|
|
@@ -2076,45 +2079,45 @@ export interface LogsLocation {
|
|
|
2076
2079
|
* <p>The name of the CloudWatch Logs group for the build logs.</p>
|
|
2077
2080
|
* @public
|
|
2078
2081
|
*/
|
|
2079
|
-
groupName?: string;
|
|
2082
|
+
groupName?: string | undefined;
|
|
2080
2083
|
/**
|
|
2081
2084
|
* <p>The name of the CloudWatch Logs stream for the build logs.</p>
|
|
2082
2085
|
* @public
|
|
2083
2086
|
*/
|
|
2084
|
-
streamName?: string;
|
|
2087
|
+
streamName?: string | undefined;
|
|
2085
2088
|
/**
|
|
2086
2089
|
* <p>The URL to an individual build log in CloudWatch Logs. The log stream is created during the PROVISIONING phase of a build and the <code>deeplink</code> will not be valid until it is created.</p>
|
|
2087
2090
|
* @public
|
|
2088
2091
|
*/
|
|
2089
|
-
deepLink?: string;
|
|
2092
|
+
deepLink?: string | undefined;
|
|
2090
2093
|
/**
|
|
2091
2094
|
* <p> The URL to a build log in an S3 bucket. </p>
|
|
2092
2095
|
* @public
|
|
2093
2096
|
*/
|
|
2094
|
-
s3DeepLink?: string;
|
|
2097
|
+
s3DeepLink?: string | undefined;
|
|
2095
2098
|
/**
|
|
2096
2099
|
* <p>The ARN of the CloudWatch Logs stream for a build execution. Its format is <code>arn:$\{Partition\}:logs:$\{Region\}:$\{Account\}:log-group:$\{LogGroupName\}:log-stream:$\{LogStreamName\}</code>.
|
|
2097
2100
|
* The CloudWatch Logs stream is created during the PROVISIONING phase of a build and the ARN will not be valid until it is created. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazoncloudwatchlogs.html#amazoncloudwatchlogs-resources-for-iam-policies">Resources Defined by CloudWatch Logs</a>.</p>
|
|
2098
2101
|
* @public
|
|
2099
2102
|
*/
|
|
2100
|
-
cloudWatchLogsArn?: string;
|
|
2103
|
+
cloudWatchLogsArn?: string | undefined;
|
|
2101
2104
|
/**
|
|
2102
2105
|
* <p> The ARN of S3 logs for a build project. Its format is
|
|
2103
2106
|
* <code>arn:$\{Partition\}:s3:::$\{BucketName\}/$\{ObjectName\}</code>. For more
|
|
2104
2107
|
* information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazons3.html#amazons3-resources-for-iam-policies">Resources Defined by Amazon S3</a>. </p>
|
|
2105
2108
|
* @public
|
|
2106
2109
|
*/
|
|
2107
|
-
s3LogsArn?: string;
|
|
2110
|
+
s3LogsArn?: string | undefined;
|
|
2108
2111
|
/**
|
|
2109
2112
|
* <p> Information about CloudWatch Logs for a build project. </p>
|
|
2110
2113
|
* @public
|
|
2111
2114
|
*/
|
|
2112
|
-
cloudWatchLogs?: CloudWatchLogsConfig;
|
|
2115
|
+
cloudWatchLogs?: CloudWatchLogsConfig | undefined;
|
|
2113
2116
|
/**
|
|
2114
2117
|
* <p> Information about S3 logs for a build project. </p>
|
|
2115
2118
|
* @public
|
|
2116
2119
|
*/
|
|
2117
|
-
s3Logs?: S3LogsConfig;
|
|
2120
|
+
s3Logs?: S3LogsConfig | undefined;
|
|
2118
2121
|
}
|
|
2119
2122
|
/**
|
|
2120
2123
|
* <p>Describes a network interface.</p>
|
|
@@ -2125,12 +2128,12 @@ export interface NetworkInterface {
|
|
|
2125
2128
|
* <p>The ID of the subnet.</p>
|
|
2126
2129
|
* @public
|
|
2127
2130
|
*/
|
|
2128
|
-
subnetId?: string;
|
|
2131
|
+
subnetId?: string | undefined;
|
|
2129
2132
|
/**
|
|
2130
2133
|
* <p>The ID of the network interface.</p>
|
|
2131
2134
|
* @public
|
|
2132
2135
|
*/
|
|
2133
|
-
networkInterfaceId?: string;
|
|
2136
|
+
networkInterfaceId?: string | undefined;
|
|
2134
2137
|
}
|
|
2135
2138
|
/**
|
|
2136
2139
|
* @public
|
|
@@ -2209,7 +2212,7 @@ export interface BuildPhase {
|
|
|
2209
2212
|
* </dl>
|
|
2210
2213
|
* @public
|
|
2211
2214
|
*/
|
|
2212
|
-
phaseType?: BuildPhaseType;
|
|
2215
|
+
phaseType?: BuildPhaseType | undefined;
|
|
2213
2216
|
/**
|
|
2214
2217
|
* <p>The current status of the build phase. Valid values include:</p>
|
|
2215
2218
|
* <dl>
|
|
@@ -2240,29 +2243,29 @@ export interface BuildPhase {
|
|
|
2240
2243
|
* </dl>
|
|
2241
2244
|
* @public
|
|
2242
2245
|
*/
|
|
2243
|
-
phaseStatus?: StatusType;
|
|
2246
|
+
phaseStatus?: StatusType | undefined;
|
|
2244
2247
|
/**
|
|
2245
2248
|
* <p>When the build phase started, expressed in Unix time format.</p>
|
|
2246
2249
|
* @public
|
|
2247
2250
|
*/
|
|
2248
|
-
startTime?: Date;
|
|
2251
|
+
startTime?: Date | undefined;
|
|
2249
2252
|
/**
|
|
2250
2253
|
* <p>When the build phase ended, expressed in Unix time format.</p>
|
|
2251
2254
|
* @public
|
|
2252
2255
|
*/
|
|
2253
|
-
endTime?: Date;
|
|
2256
|
+
endTime?: Date | undefined;
|
|
2254
2257
|
/**
|
|
2255
2258
|
* <p>How long, in seconds, between the starting and ending times of the build's
|
|
2256
2259
|
* phase.</p>
|
|
2257
2260
|
* @public
|
|
2258
2261
|
*/
|
|
2259
|
-
durationInSeconds?: number;
|
|
2262
|
+
durationInSeconds?: number | undefined;
|
|
2260
2263
|
/**
|
|
2261
2264
|
* <p>Additional information about a build phase, especially to help troubleshoot a failed
|
|
2262
2265
|
* build.</p>
|
|
2263
2266
|
* @public
|
|
2264
2267
|
*/
|
|
2265
|
-
contexts?: PhaseContext[];
|
|
2268
|
+
contexts?: PhaseContext[] | undefined;
|
|
2266
2269
|
}
|
|
2267
2270
|
/**
|
|
2268
2271
|
* <p>Information about a build.</p>
|
|
@@ -2273,12 +2276,12 @@ export interface Build {
|
|
|
2273
2276
|
* <p>The unique ID for the build.</p>
|
|
2274
2277
|
* @public
|
|
2275
2278
|
*/
|
|
2276
|
-
id?: string;
|
|
2279
|
+
id?: string | undefined;
|
|
2277
2280
|
/**
|
|
2278
2281
|
* <p>The Amazon Resource Name (ARN) of the build.</p>
|
|
2279
2282
|
* @public
|
|
2280
2283
|
*/
|
|
2281
|
-
arn?: string;
|
|
2284
|
+
arn?: string | undefined;
|
|
2282
2285
|
/**
|
|
2283
2286
|
* <p>The number of the build. For each project, the <code>buildNumber</code> of its first
|
|
2284
2287
|
* build is <code>1</code>. The <code>buildNumber</code> of each subsequent build is
|
|
@@ -2286,22 +2289,22 @@ export interface Build {
|
|
|
2286
2289
|
* other builds does not change.</p>
|
|
2287
2290
|
* @public
|
|
2288
2291
|
*/
|
|
2289
|
-
buildNumber?: number;
|
|
2292
|
+
buildNumber?: number | undefined;
|
|
2290
2293
|
/**
|
|
2291
2294
|
* <p>When the build process started, expressed in Unix time format.</p>
|
|
2292
2295
|
* @public
|
|
2293
2296
|
*/
|
|
2294
|
-
startTime?: Date;
|
|
2297
|
+
startTime?: Date | undefined;
|
|
2295
2298
|
/**
|
|
2296
2299
|
* <p>When the build process ended, expressed in Unix time format.</p>
|
|
2297
2300
|
* @public
|
|
2298
2301
|
*/
|
|
2299
|
-
endTime?: Date;
|
|
2302
|
+
endTime?: Date | undefined;
|
|
2300
2303
|
/**
|
|
2301
2304
|
* <p>The current build phase.</p>
|
|
2302
2305
|
* @public
|
|
2303
2306
|
*/
|
|
2304
|
-
currentPhase?: string;
|
|
2307
|
+
currentPhase?: string | undefined;
|
|
2305
2308
|
/**
|
|
2306
2309
|
* <p>The current status of the build. Valid values include:</p>
|
|
2307
2310
|
* <ul>
|
|
@@ -2332,7 +2335,7 @@ export interface Build {
|
|
|
2332
2335
|
* </ul>
|
|
2333
2336
|
* @public
|
|
2334
2337
|
*/
|
|
2335
|
-
buildStatus?: StatusType;
|
|
2338
|
+
buildStatus?: StatusType | undefined;
|
|
2336
2339
|
/**
|
|
2337
2340
|
* <p>Any version identifier for the version of the source code to be built. If
|
|
2338
2341
|
* <code>sourceVersion</code> is specified at the project level, then this
|
|
@@ -2341,7 +2344,7 @@ export interface Build {
|
|
|
2341
2344
|
* with CodeBuild</a> in the <i>CodeBuild User Guide</i>. </p>
|
|
2342
2345
|
* @public
|
|
2343
2346
|
*/
|
|
2344
|
-
sourceVersion?: string;
|
|
2347
|
+
sourceVersion?: string | undefined;
|
|
2345
2348
|
/**
|
|
2346
2349
|
* <p> An identifier for the version of this build's source code. </p>
|
|
2347
2350
|
* <ul>
|
|
@@ -2357,28 +2360,28 @@ export interface Build {
|
|
|
2357
2360
|
* </ul>
|
|
2358
2361
|
* @public
|
|
2359
2362
|
*/
|
|
2360
|
-
resolvedSourceVersion?: string;
|
|
2363
|
+
resolvedSourceVersion?: string | undefined;
|
|
2361
2364
|
/**
|
|
2362
2365
|
* <p>The name of the CodeBuild project.</p>
|
|
2363
2366
|
* @public
|
|
2364
2367
|
*/
|
|
2365
|
-
projectName?: string;
|
|
2368
|
+
projectName?: string | undefined;
|
|
2366
2369
|
/**
|
|
2367
2370
|
* <p>Information about all previous build phases that are complete and information about
|
|
2368
2371
|
* any current build phase that is not yet complete.</p>
|
|
2369
2372
|
* @public
|
|
2370
2373
|
*/
|
|
2371
|
-
phases?: BuildPhase[];
|
|
2374
|
+
phases?: BuildPhase[] | undefined;
|
|
2372
2375
|
/**
|
|
2373
2376
|
* <p>Information about the source code to be built.</p>
|
|
2374
2377
|
* @public
|
|
2375
2378
|
*/
|
|
2376
|
-
source?: ProjectSource;
|
|
2379
|
+
source?: ProjectSource | undefined;
|
|
2377
2380
|
/**
|
|
2378
2381
|
* <p> An array of <code>ProjectSource</code> objects. </p>
|
|
2379
2382
|
* @public
|
|
2380
2383
|
*/
|
|
2381
|
-
secondarySources?: ProjectSource[];
|
|
2384
|
+
secondarySources?: ProjectSource[] | undefined;
|
|
2382
2385
|
/**
|
|
2383
2386
|
* <p> An array of <code>ProjectSourceVersion</code> objects. Each
|
|
2384
2387
|
* <code>ProjectSourceVersion</code> must be one of: </p>
|
|
@@ -2407,53 +2410,53 @@ export interface Build {
|
|
|
2407
2410
|
* </ul>
|
|
2408
2411
|
* @public
|
|
2409
2412
|
*/
|
|
2410
|
-
secondarySourceVersions?: ProjectSourceVersion[];
|
|
2413
|
+
secondarySourceVersions?: ProjectSourceVersion[] | undefined;
|
|
2411
2414
|
/**
|
|
2412
2415
|
* <p>Information about the output artifacts for the build.</p>
|
|
2413
2416
|
* @public
|
|
2414
2417
|
*/
|
|
2415
|
-
artifacts?: BuildArtifacts;
|
|
2418
|
+
artifacts?: BuildArtifacts | undefined;
|
|
2416
2419
|
/**
|
|
2417
2420
|
* <p> An array of <code>ProjectArtifacts</code> objects. </p>
|
|
2418
2421
|
* @public
|
|
2419
2422
|
*/
|
|
2420
|
-
secondaryArtifacts?: BuildArtifacts[];
|
|
2423
|
+
secondaryArtifacts?: BuildArtifacts[] | undefined;
|
|
2421
2424
|
/**
|
|
2422
2425
|
* <p>Information about the cache for the build.</p>
|
|
2423
2426
|
* @public
|
|
2424
2427
|
*/
|
|
2425
|
-
cache?: ProjectCache;
|
|
2428
|
+
cache?: ProjectCache | undefined;
|
|
2426
2429
|
/**
|
|
2427
2430
|
* <p>Information about the build environment for this build.</p>
|
|
2428
2431
|
* @public
|
|
2429
2432
|
*/
|
|
2430
|
-
environment?: ProjectEnvironment;
|
|
2433
|
+
environment?: ProjectEnvironment | undefined;
|
|
2431
2434
|
/**
|
|
2432
2435
|
* <p>The name of a service role used for this build.</p>
|
|
2433
2436
|
* @public
|
|
2434
2437
|
*/
|
|
2435
|
-
serviceRole?: string;
|
|
2438
|
+
serviceRole?: string | undefined;
|
|
2436
2439
|
/**
|
|
2437
2440
|
* <p>Information about the build's logs in CloudWatch Logs.</p>
|
|
2438
2441
|
* @public
|
|
2439
2442
|
*/
|
|
2440
|
-
logs?: LogsLocation;
|
|
2443
|
+
logs?: LogsLocation | undefined;
|
|
2441
2444
|
/**
|
|
2442
2445
|
* <p>How long, in minutes, from 5 to 2160 (36 hours), for CodeBuild to wait before timing out this build if it does not
|
|
2443
2446
|
* get marked as completed.</p>
|
|
2444
2447
|
* @public
|
|
2445
2448
|
*/
|
|
2446
|
-
timeoutInMinutes?: number;
|
|
2449
|
+
timeoutInMinutes?: number | undefined;
|
|
2447
2450
|
/**
|
|
2448
2451
|
* <p> The number of minutes a build is allowed to be queued before it times out. </p>
|
|
2449
2452
|
* @public
|
|
2450
2453
|
*/
|
|
2451
|
-
queuedTimeoutInMinutes?: number;
|
|
2454
|
+
queuedTimeoutInMinutes?: number | undefined;
|
|
2452
2455
|
/**
|
|
2453
2456
|
* <p>Whether the build is complete. True if complete; otherwise, false.</p>
|
|
2454
2457
|
* @public
|
|
2455
2458
|
*/
|
|
2456
|
-
buildComplete?: boolean;
|
|
2459
|
+
buildComplete?: boolean | undefined;
|
|
2457
2460
|
/**
|
|
2458
2461
|
* <p>The entity that started the build. Valid values include:</p>
|
|
2459
2462
|
* <ul>
|
|
@@ -2472,7 +2475,7 @@ export interface Build {
|
|
|
2472
2475
|
* </ul>
|
|
2473
2476
|
* @public
|
|
2474
2477
|
*/
|
|
2475
|
-
initiator?: string;
|
|
2478
|
+
initiator?: string | undefined;
|
|
2476
2479
|
/**
|
|
2477
2480
|
* <p>If your CodeBuild project accesses resources in an Amazon VPC, you provide this parameter
|
|
2478
2481
|
* that identifies the VPC ID and the list of security group IDs and subnet IDs. The
|
|
@@ -2480,12 +2483,12 @@ export interface Build {
|
|
|
2480
2483
|
* security group and one subnet ID.</p>
|
|
2481
2484
|
* @public
|
|
2482
2485
|
*/
|
|
2483
|
-
vpcConfig?: VpcConfig;
|
|
2486
|
+
vpcConfig?: VpcConfig | undefined;
|
|
2484
2487
|
/**
|
|
2485
2488
|
* <p>Describes a network interface.</p>
|
|
2486
2489
|
* @public
|
|
2487
2490
|
*/
|
|
2488
|
-
networkInterface?: NetworkInterface;
|
|
2491
|
+
networkInterface?: NetworkInterface | undefined;
|
|
2489
2492
|
/**
|
|
2490
2493
|
* <p>The Key Management Service customer master key (CMK) to be used for encrypting the build output
|
|
2491
2494
|
* artifacts.</p>
|
|
@@ -2497,7 +2500,7 @@ export interface Build {
|
|
|
2497
2500
|
* the format <code>alias/<alias-name></code>).</p>
|
|
2498
2501
|
* @public
|
|
2499
2502
|
*/
|
|
2500
|
-
encryptionKey?: string;
|
|
2503
|
+
encryptionKey?: string | undefined;
|
|
2501
2504
|
/**
|
|
2502
2505
|
* <p>A list of exported environment variables for this build.</p>
|
|
2503
2506
|
* <p>Exported environment variables are used in conjunction with CodePipeline to export
|
|
@@ -2505,12 +2508,12 @@ export interface Build {
|
|
|
2505
2508
|
* For more information, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/actions-variables.html">Working with variables</a> in the <i>CodePipeline User Guide</i>.</p>
|
|
2506
2509
|
* @public
|
|
2507
2510
|
*/
|
|
2508
|
-
exportedEnvironmentVariables?: ExportedEnvironmentVariable[];
|
|
2511
|
+
exportedEnvironmentVariables?: ExportedEnvironmentVariable[] | undefined;
|
|
2509
2512
|
/**
|
|
2510
2513
|
* <p> An array of the ARNs associated with this build's reports. </p>
|
|
2511
2514
|
* @public
|
|
2512
2515
|
*/
|
|
2513
|
-
reportArns?: string[];
|
|
2516
|
+
reportArns?: string[] | undefined;
|
|
2514
2517
|
/**
|
|
2515
2518
|
* <p>
|
|
2516
2519
|
* An array of <code>ProjectFileSystemLocation</code> objects for a CodeBuild build project. A <code>ProjectFileSystemLocation</code> object
|
|
@@ -2519,22 +2522,22 @@ export interface Build {
|
|
|
2519
2522
|
* </p>
|
|
2520
2523
|
* @public
|
|
2521
2524
|
*/
|
|
2522
|
-
fileSystemLocations?: ProjectFileSystemLocation[];
|
|
2525
|
+
fileSystemLocations?: ProjectFileSystemLocation[] | undefined;
|
|
2523
2526
|
/**
|
|
2524
2527
|
* <p>Contains information about the debug session for this build.</p>
|
|
2525
2528
|
* @public
|
|
2526
2529
|
*/
|
|
2527
|
-
debugSession?: DebugSession;
|
|
2530
|
+
debugSession?: DebugSession | undefined;
|
|
2528
2531
|
/**
|
|
2529
2532
|
* <p>The ARN of the batch build that this build is a member of, if applicable.</p>
|
|
2530
2533
|
* @public
|
|
2531
2534
|
*/
|
|
2532
|
-
buildBatchArn?: string;
|
|
2535
|
+
buildBatchArn?: string | undefined;
|
|
2533
2536
|
/**
|
|
2534
2537
|
* <p>Information about the auto-retry configuration for the build.</p>
|
|
2535
2538
|
* @public
|
|
2536
2539
|
*/
|
|
2537
|
-
autoRetryConfig?: AutoRetryConfig;
|
|
2540
|
+
autoRetryConfig?: AutoRetryConfig | undefined;
|
|
2538
2541
|
}
|
|
2539
2542
|
/**
|
|
2540
2543
|
* @public
|
|
@@ -2544,12 +2547,12 @@ export interface BatchGetBuildsOutput {
|
|
|
2544
2547
|
* <p>Information about the requested builds.</p>
|
|
2545
2548
|
* @public
|
|
2546
2549
|
*/
|
|
2547
|
-
builds?: Build[];
|
|
2550
|
+
builds?: Build[] | undefined;
|
|
2548
2551
|
/**
|
|
2549
2552
|
* <p>The IDs of builds for which information could not be found.</p>
|
|
2550
2553
|
* @public
|
|
2551
2554
|
*/
|
|
2552
|
-
buildsNotFound?: string[];
|
|
2555
|
+
buildsNotFound?: string[] | undefined;
|
|
2553
2556
|
}
|
|
2554
2557
|
/**
|
|
2555
2558
|
* @public
|
|
@@ -2639,12 +2642,12 @@ export interface ProxyConfiguration {
|
|
|
2639
2642
|
* <p>The default behavior of outgoing traffic.</p>
|
|
2640
2643
|
* @public
|
|
2641
2644
|
*/
|
|
2642
|
-
defaultBehavior?: FleetProxyRuleBehavior;
|
|
2645
|
+
defaultBehavior?: FleetProxyRuleBehavior | undefined;
|
|
2643
2646
|
/**
|
|
2644
2647
|
* <p>An array of <code>FleetProxyRule</code> objects that represent the specified destination domains or IPs to allow or deny network access control to.</p>
|
|
2645
2648
|
* @public
|
|
2646
2649
|
*/
|
|
2647
|
-
orderedProxyRules?: FleetProxyRule[];
|
|
2650
|
+
orderedProxyRules?: FleetProxyRule[] | undefined;
|
|
2648
2651
|
}
|
|
2649
2652
|
/**
|
|
2650
2653
|
* @public
|
|
@@ -2677,12 +2680,12 @@ export interface TargetTrackingScalingConfiguration {
|
|
|
2677
2680
|
* <p>The metric type to determine auto-scaling.</p>
|
|
2678
2681
|
* @public
|
|
2679
2682
|
*/
|
|
2680
|
-
metricType?: FleetScalingMetricType;
|
|
2683
|
+
metricType?: FleetScalingMetricType | undefined;
|
|
2681
2684
|
/**
|
|
2682
2685
|
* <p>The value of <code>metricType</code> when to start scaling.</p>
|
|
2683
2686
|
* @public
|
|
2684
2687
|
*/
|
|
2685
|
-
targetValue?: number;
|
|
2688
|
+
targetValue?: number | undefined;
|
|
2686
2689
|
}
|
|
2687
2690
|
/**
|
|
2688
2691
|
* <p>The scaling configuration output of a compute fleet.</p>
|
|
@@ -2693,22 +2696,22 @@ export interface ScalingConfigurationOutput {
|
|
|
2693
2696
|
* <p>The scaling type for a compute fleet.</p>
|
|
2694
2697
|
* @public
|
|
2695
2698
|
*/
|
|
2696
|
-
scalingType?: FleetScalingType;
|
|
2699
|
+
scalingType?: FleetScalingType | undefined;
|
|
2697
2700
|
/**
|
|
2698
2701
|
* <p>A list of <code>TargetTrackingScalingConfiguration</code> objects.</p>
|
|
2699
2702
|
* @public
|
|
2700
2703
|
*/
|
|
2701
|
-
targetTrackingScalingConfigs?: TargetTrackingScalingConfiguration[];
|
|
2704
|
+
targetTrackingScalingConfigs?: TargetTrackingScalingConfiguration[] | undefined;
|
|
2702
2705
|
/**
|
|
2703
2706
|
* <p>The maximum number of instances in the fleet when auto-scaling.</p>
|
|
2704
2707
|
* @public
|
|
2705
2708
|
*/
|
|
2706
|
-
maxCapacity?: number;
|
|
2709
|
+
maxCapacity?: number | undefined;
|
|
2707
2710
|
/**
|
|
2708
2711
|
* <p>The desired number of instances in the fleet when auto-scaling.</p>
|
|
2709
2712
|
* @public
|
|
2710
2713
|
*/
|
|
2711
|
-
desiredCapacity?: number;
|
|
2714
|
+
desiredCapacity?: number | undefined;
|
|
2712
2715
|
}
|
|
2713
2716
|
/**
|
|
2714
2717
|
* @public
|
|
@@ -2786,7 +2789,7 @@ export interface FleetStatus {
|
|
|
2786
2789
|
* </ul>
|
|
2787
2790
|
* @public
|
|
2788
2791
|
*/
|
|
2789
|
-
statusCode?: FleetStatusCode;
|
|
2792
|
+
statusCode?: FleetStatusCode | undefined;
|
|
2790
2793
|
/**
|
|
2791
2794
|
* <p>Additional information about a compute fleet. Valid values include:</p>
|
|
2792
2795
|
* <ul>
|
|
@@ -2801,12 +2804,12 @@ export interface FleetStatus {
|
|
|
2801
2804
|
* </ul>
|
|
2802
2805
|
* @public
|
|
2803
2806
|
*/
|
|
2804
|
-
context?: FleetContextCode;
|
|
2807
|
+
context?: FleetContextCode | undefined;
|
|
2805
2808
|
/**
|
|
2806
2809
|
* <p>A message associated with the status of a compute fleet.</p>
|
|
2807
2810
|
* @public
|
|
2808
2811
|
*/
|
|
2809
|
-
message?: string;
|
|
2812
|
+
message?: string | undefined;
|
|
2810
2813
|
}
|
|
2811
2814
|
/**
|
|
2812
2815
|
* <p>A tag, consisting of a key and a value.</p>
|
|
@@ -2818,12 +2821,12 @@ export interface Tag {
|
|
|
2818
2821
|
* <p>The tag's key.</p>
|
|
2819
2822
|
* @public
|
|
2820
2823
|
*/
|
|
2821
|
-
key?: string;
|
|
2824
|
+
key?: string | undefined;
|
|
2822
2825
|
/**
|
|
2823
2826
|
* <p>The tag's value.</p>
|
|
2824
2827
|
* @public
|
|
2825
2828
|
*/
|
|
2826
|
-
value?: string;
|
|
2829
|
+
value?: string | undefined;
|
|
2827
2830
|
}
|
|
2828
2831
|
/**
|
|
2829
2832
|
* <p>A set of dedicated instances for your build environment.</p>
|
|
@@ -2834,37 +2837,37 @@ export interface Fleet {
|
|
|
2834
2837
|
* <p>The ARN of the compute fleet.</p>
|
|
2835
2838
|
* @public
|
|
2836
2839
|
*/
|
|
2837
|
-
arn?: string;
|
|
2840
|
+
arn?: string | undefined;
|
|
2838
2841
|
/**
|
|
2839
2842
|
* <p>The name of the compute fleet.</p>
|
|
2840
2843
|
* @public
|
|
2841
2844
|
*/
|
|
2842
|
-
name?: string;
|
|
2845
|
+
name?: string | undefined;
|
|
2843
2846
|
/**
|
|
2844
2847
|
* <p>The ID of the compute fleet.</p>
|
|
2845
2848
|
* @public
|
|
2846
2849
|
*/
|
|
2847
|
-
id?: string;
|
|
2850
|
+
id?: string | undefined;
|
|
2848
2851
|
/**
|
|
2849
2852
|
* <p>The time at which the compute fleet was created.</p>
|
|
2850
2853
|
* @public
|
|
2851
2854
|
*/
|
|
2852
|
-
created?: Date;
|
|
2855
|
+
created?: Date | undefined;
|
|
2853
2856
|
/**
|
|
2854
2857
|
* <p>The time at which the compute fleet was last modified.</p>
|
|
2855
2858
|
* @public
|
|
2856
2859
|
*/
|
|
2857
|
-
lastModified?: Date;
|
|
2860
|
+
lastModified?: Date | undefined;
|
|
2858
2861
|
/**
|
|
2859
2862
|
* <p>The status of the compute fleet.</p>
|
|
2860
2863
|
* @public
|
|
2861
2864
|
*/
|
|
2862
|
-
status?: FleetStatus;
|
|
2865
|
+
status?: FleetStatus | undefined;
|
|
2863
2866
|
/**
|
|
2864
2867
|
* <p>The initial number of machines allocated to the compute fleet, which defines the number of builds that can run in parallel.</p>
|
|
2865
2868
|
* @public
|
|
2866
2869
|
*/
|
|
2867
|
-
baseCapacity?: number;
|
|
2870
|
+
baseCapacity?: number | undefined;
|
|
2868
2871
|
/**
|
|
2869
2872
|
* <p>The environment type of the compute fleet.</p>
|
|
2870
2873
|
* <ul>
|
|
@@ -2875,6 +2878,13 @@ export interface Fleet {
|
|
|
2875
2878
|
* EU (Frankfurt), and South America (São Paulo).</p>
|
|
2876
2879
|
* </li>
|
|
2877
2880
|
* <li>
|
|
2881
|
+
* <p>The environment type <code>ARM_EC2</code> is available only in regions
|
|
2882
|
+
* US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
2883
|
+
* EU (Frankfurt), Asia Pacific (Tokyo),
|
|
2884
|
+
* Asia Pacific (Singapore), Asia Pacific (Sydney), South America (São Paulo), and
|
|
2885
|
+
* Asia Pacific (Mumbai).</p>
|
|
2886
|
+
* </li>
|
|
2887
|
+
* <li>
|
|
2878
2888
|
* <p>The environment type <code>LINUX_CONTAINER</code> is available only in regions
|
|
2879
2889
|
* US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
2880
2890
|
* EU (Frankfurt), Asia Pacific (Tokyo),
|
|
@@ -2882,6 +2892,13 @@ export interface Fleet {
|
|
|
2882
2892
|
* Asia Pacific (Mumbai).</p>
|
|
2883
2893
|
* </li>
|
|
2884
2894
|
* <li>
|
|
2895
|
+
* <p>The environment type <code>LINUX_EC2</code> is available only in regions
|
|
2896
|
+
* US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
2897
|
+
* EU (Frankfurt), Asia Pacific (Tokyo),
|
|
2898
|
+
* Asia Pacific (Singapore), Asia Pacific (Sydney), South America (São Paulo), and
|
|
2899
|
+
* Asia Pacific (Mumbai).</p>
|
|
2900
|
+
* </li>
|
|
2901
|
+
* <li>
|
|
2885
2902
|
* <p>The environment type <code>LINUX_GPU_CONTAINER</code> is available only in
|
|
2886
2903
|
* regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
2887
2904
|
* EU (Frankfurt), Asia Pacific (Tokyo), and Asia Pacific (Sydney).</p>
|
|
@@ -2896,6 +2913,13 @@ export interface Fleet {
|
|
|
2896
2913
|
* regions US East (N. Virginia), US East (Ohio), US West (Oregon), and Asia Pacific (Sydney).</p>
|
|
2897
2914
|
* </li>
|
|
2898
2915
|
* <li>
|
|
2916
|
+
* <p>The environment type <code>WINDOWS_EC2</code> is available only in regions
|
|
2917
|
+
* US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
2918
|
+
* EU (Frankfurt), Asia Pacific (Tokyo),
|
|
2919
|
+
* Asia Pacific (Singapore), Asia Pacific (Sydney), South America (São Paulo), and
|
|
2920
|
+
* Asia Pacific (Mumbai).</p>
|
|
2921
|
+
* </li>
|
|
2922
|
+
* <li>
|
|
2899
2923
|
* <p>The environment type <code>WINDOWS_SERVER_2019_CONTAINER</code> is available only in regions
|
|
2900
2924
|
* US East (N. Virginia), US East (Ohio), US West (Oregon), Asia Pacific (Sydney),
|
|
2901
2925
|
* Asia Pacific (Tokyo), Asia Pacific (Mumbai) and
|
|
@@ -2912,7 +2936,7 @@ export interface Fleet {
|
|
|
2912
2936
|
* user guide</i>.</p>
|
|
2913
2937
|
* @public
|
|
2914
2938
|
*/
|
|
2915
|
-
environmentType?: EnvironmentType;
|
|
2939
|
+
environmentType?: EnvironmentType | undefined;
|
|
2916
2940
|
/**
|
|
2917
2941
|
* <p>Information about the compute resources the compute fleet uses. Available values
|
|
2918
2942
|
* include:</p>
|
|
@@ -3013,17 +3037,17 @@ export interface Fleet {
|
|
|
3013
3037
|
* </p>
|
|
3014
3038
|
* @public
|
|
3015
3039
|
*/
|
|
3016
|
-
computeType?: ComputeType;
|
|
3040
|
+
computeType?: ComputeType | undefined;
|
|
3017
3041
|
/**
|
|
3018
3042
|
* <p>The compute configuration of the compute fleet. This is only required if <code>computeType</code> is set to <code>ATTRIBUTE_BASED_COMPUTE</code>.</p>
|
|
3019
3043
|
* @public
|
|
3020
3044
|
*/
|
|
3021
|
-
computeConfiguration?: ComputeConfiguration;
|
|
3045
|
+
computeConfiguration?: ComputeConfiguration | undefined;
|
|
3022
3046
|
/**
|
|
3023
3047
|
* <p>The scaling configuration of the compute fleet.</p>
|
|
3024
3048
|
* @public
|
|
3025
3049
|
*/
|
|
3026
|
-
scalingConfiguration?: ScalingConfigurationOutput;
|
|
3050
|
+
scalingConfiguration?: ScalingConfigurationOutput | undefined;
|
|
3027
3051
|
/**
|
|
3028
3052
|
* <p>The compute fleet overflow behavior.</p>
|
|
3029
3053
|
* <ul>
|
|
@@ -3043,35 +3067,35 @@ export interface Fleet {
|
|
|
3043
3067
|
* </ul>
|
|
3044
3068
|
* @public
|
|
3045
3069
|
*/
|
|
3046
|
-
overflowBehavior?: FleetOverflowBehavior;
|
|
3070
|
+
overflowBehavior?: FleetOverflowBehavior | undefined;
|
|
3047
3071
|
/**
|
|
3048
3072
|
* <p>Information about the VPC configuration that CodeBuild accesses.</p>
|
|
3049
3073
|
* @public
|
|
3050
3074
|
*/
|
|
3051
|
-
vpcConfig?: VpcConfig;
|
|
3075
|
+
vpcConfig?: VpcConfig | undefined;
|
|
3052
3076
|
/**
|
|
3053
3077
|
* <p>The proxy configuration of the compute fleet.</p>
|
|
3054
3078
|
* @public
|
|
3055
3079
|
*/
|
|
3056
|
-
proxyConfiguration?: ProxyConfiguration;
|
|
3080
|
+
proxyConfiguration?: ProxyConfiguration | undefined;
|
|
3057
3081
|
/**
|
|
3058
3082
|
* <p>The Amazon Machine Image (AMI) of the compute fleet.</p>
|
|
3059
3083
|
* @public
|
|
3060
3084
|
*/
|
|
3061
|
-
imageId?: string;
|
|
3085
|
+
imageId?: string | undefined;
|
|
3062
3086
|
/**
|
|
3063
3087
|
* <p>The service role associated with the compute fleet. For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/auth-and-access-control-iam-identity-based-access-control.html#customer-managed-policies-example-permission-policy-fleet-service-role.html">
|
|
3064
3088
|
* Allow a user to add a permission policy for a fleet service role</a> in the <i>CodeBuild User Guide</i>.</p>
|
|
3065
3089
|
* @public
|
|
3066
3090
|
*/
|
|
3067
|
-
fleetServiceRole?: string;
|
|
3091
|
+
fleetServiceRole?: string | undefined;
|
|
3068
3092
|
/**
|
|
3069
3093
|
* <p>A list of tag key and value pairs associated with this compute fleet.</p>
|
|
3070
3094
|
* <p>These tags are available for use by Amazon Web Services services that support CodeBuild build project
|
|
3071
3095
|
* tags.</p>
|
|
3072
3096
|
* @public
|
|
3073
3097
|
*/
|
|
3074
|
-
tags?: Tag[];
|
|
3098
|
+
tags?: Tag[] | undefined;
|
|
3075
3099
|
}
|
|
3076
3100
|
/**
|
|
3077
3101
|
* @public
|
|
@@ -3081,12 +3105,12 @@ export interface BatchGetFleetsOutput {
|
|
|
3081
3105
|
* <p>Information about the requested compute fleets.</p>
|
|
3082
3106
|
* @public
|
|
3083
3107
|
*/
|
|
3084
|
-
fleets?: Fleet[];
|
|
3108
|
+
fleets?: Fleet[] | undefined;
|
|
3085
3109
|
/**
|
|
3086
3110
|
* <p>The names of compute fleets for which information could not be found.</p>
|
|
3087
3111
|
* @public
|
|
3088
3112
|
*/
|
|
3089
|
-
fleetsNotFound?: string[];
|
|
3113
|
+
fleetsNotFound?: string[] | undefined;
|
|
3090
3114
|
}
|
|
3091
3115
|
/**
|
|
3092
3116
|
* @public
|
|
@@ -3149,7 +3173,7 @@ export interface ProjectArtifacts {
|
|
|
3149
3173
|
* </ul>
|
|
3150
3174
|
* @public
|
|
3151
3175
|
*/
|
|
3152
|
-
location?: string;
|
|
3176
|
+
location?: string | undefined;
|
|
3153
3177
|
/**
|
|
3154
3178
|
* <p>Along with <code>namespaceType</code> and <code>name</code>, the pattern that CodeBuild
|
|
3155
3179
|
* uses to name and store the output artifact:</p>
|
|
@@ -3175,7 +3199,7 @@ export interface ProjectArtifacts {
|
|
|
3175
3199
|
* <code>MyArtifacts/MyArtifact.zip</code>.</p>
|
|
3176
3200
|
* @public
|
|
3177
3201
|
*/
|
|
3178
|
-
path?: string;
|
|
3202
|
+
path?: string | undefined;
|
|
3179
3203
|
/**
|
|
3180
3204
|
* <p>Along with <code>path</code> and <code>name</code>, the pattern that CodeBuild uses to
|
|
3181
3205
|
* determine the name and location to store the output artifact:</p>
|
|
@@ -3211,7 +3235,7 @@ export interface ProjectArtifacts {
|
|
|
3211
3235
|
* <code>MyArtifacts/<build-ID>/MyArtifact.zip</code>.</p>
|
|
3212
3236
|
* @public
|
|
3213
3237
|
*/
|
|
3214
|
-
namespaceType?: ArtifactNamespace;
|
|
3238
|
+
namespaceType?: ArtifactNamespace | undefined;
|
|
3215
3239
|
/**
|
|
3216
3240
|
* <p>Along with <code>path</code> and <code>namespaceType</code>, the pattern that CodeBuild
|
|
3217
3241
|
* uses to name and store the output artifact:</p>
|
|
@@ -3253,7 +3277,7 @@ export interface ProjectArtifacts {
|
|
|
3253
3277
|
* </ul>
|
|
3254
3278
|
* @public
|
|
3255
3279
|
*/
|
|
3256
|
-
name?: string;
|
|
3280
|
+
name?: string | undefined;
|
|
3257
3281
|
/**
|
|
3258
3282
|
* <p>The type of build output artifact to create:</p>
|
|
3259
3283
|
* <ul>
|
|
@@ -3285,7 +3309,7 @@ export interface ProjectArtifacts {
|
|
|
3285
3309
|
* </ul>
|
|
3286
3310
|
* @public
|
|
3287
3311
|
*/
|
|
3288
|
-
packaging?: ArtifactPackaging;
|
|
3312
|
+
packaging?: ArtifactPackaging | undefined;
|
|
3289
3313
|
/**
|
|
3290
3314
|
* <p> If this flag is set, a name specified in the buildspec file overrides the artifact
|
|
3291
3315
|
* name. The name specified in a buildspec file is calculated at build time and uses the
|
|
@@ -3293,19 +3317,19 @@ export interface ProjectArtifacts {
|
|
|
3293
3317
|
* name so that it is always unique. </p>
|
|
3294
3318
|
* @public
|
|
3295
3319
|
*/
|
|
3296
|
-
overrideArtifactName?: boolean;
|
|
3320
|
+
overrideArtifactName?: boolean | undefined;
|
|
3297
3321
|
/**
|
|
3298
3322
|
* <p> Set to true if you do not want your output artifacts encrypted. This option is valid
|
|
3299
3323
|
* only if your artifacts type is Amazon S3. If this is set with another artifacts type, an
|
|
3300
3324
|
* invalidInputException is thrown. </p>
|
|
3301
3325
|
* @public
|
|
3302
3326
|
*/
|
|
3303
|
-
encryptionDisabled?: boolean;
|
|
3327
|
+
encryptionDisabled?: boolean | undefined;
|
|
3304
3328
|
/**
|
|
3305
3329
|
* <p> An identifier for this artifact definition. </p>
|
|
3306
3330
|
* @public
|
|
3307
3331
|
*/
|
|
3308
|
-
artifactIdentifier?: string;
|
|
3332
|
+
artifactIdentifier?: string | undefined;
|
|
3309
3333
|
/**
|
|
3310
3334
|
* <p>Specifies the bucket owner's access for objects that another account uploads to their
|
|
3311
3335
|
* Amazon S3 bucket. By default, only the account that uploads the objects to the bucket has
|
|
@@ -3351,7 +3375,7 @@ export interface ProjectArtifacts {
|
|
|
3351
3375
|
* </dl>
|
|
3352
3376
|
* @public
|
|
3353
3377
|
*/
|
|
3354
|
-
bucketOwnerAccess?: BucketOwnerAccess;
|
|
3378
|
+
bucketOwnerAccess?: BucketOwnerAccess | undefined;
|
|
3355
3379
|
}
|
|
3356
3380
|
/**
|
|
3357
3381
|
* <p>Information about the build badge for the build project.</p>
|
|
@@ -3363,13 +3387,13 @@ export interface ProjectBadge {
|
|
|
3363
3387
|
* badge.</p>
|
|
3364
3388
|
* @public
|
|
3365
3389
|
*/
|
|
3366
|
-
badgeEnabled?: boolean;
|
|
3390
|
+
badgeEnabled?: boolean | undefined;
|
|
3367
3391
|
/**
|
|
3368
3392
|
* <p>The publicly-accessible URL through which you can access the build badge for your
|
|
3369
3393
|
* project. </p>
|
|
3370
3394
|
* @public
|
|
3371
3395
|
*/
|
|
3372
|
-
badgeRequestUrl?: string;
|
|
3396
|
+
badgeRequestUrl?: string | undefined;
|
|
3373
3397
|
}
|
|
3374
3398
|
/**
|
|
3375
3399
|
* @public
|
|
@@ -3586,7 +3610,7 @@ export interface WebhookFilter {
|
|
|
3586
3610
|
* the <code>pattern</code> triggers a build. </p>
|
|
3587
3611
|
* @public
|
|
3588
3612
|
*/
|
|
3589
|
-
excludeMatchedPattern?: boolean;
|
|
3613
|
+
excludeMatchedPattern?: boolean | undefined;
|
|
3590
3614
|
}
|
|
3591
3615
|
/**
|
|
3592
3616
|
* @public
|
|
@@ -3615,7 +3639,7 @@ export interface ScopeConfiguration {
|
|
|
3615
3639
|
* <p>The domain of the GitHub Enterprise organization or the GitLab Self Managed group. Note that this parameter is only required if your project's source type is GITHUB_ENTERPRISE or GITLAB_SELF_MANAGED.</p>
|
|
3616
3640
|
* @public
|
|
3617
3641
|
*/
|
|
3618
|
-
domain?: string;
|
|
3642
|
+
domain?: string | undefined;
|
|
3619
3643
|
/**
|
|
3620
3644
|
* <p>The type of scope for a GitHub or GitLab webhook.</p>
|
|
3621
3645
|
* @public
|
|
@@ -3632,12 +3656,12 @@ export interface Webhook {
|
|
|
3632
3656
|
* <p>The URL to the webhook.</p>
|
|
3633
3657
|
* @public
|
|
3634
3658
|
*/
|
|
3635
|
-
url?: string;
|
|
3659
|
+
url?: string | undefined;
|
|
3636
3660
|
/**
|
|
3637
3661
|
* <p>The CodeBuild endpoint where webhook events are sent.</p>
|
|
3638
3662
|
* @public
|
|
3639
3663
|
*/
|
|
3640
|
-
payloadUrl?: string;
|
|
3664
|
+
payloadUrl?: string | undefined;
|
|
3641
3665
|
/**
|
|
3642
3666
|
* <p>The secret token of the associated repository. </p>
|
|
3643
3667
|
* <note>
|
|
@@ -3645,7 +3669,7 @@ export interface Webhook {
|
|
|
3645
3669
|
* </note>
|
|
3646
3670
|
* @public
|
|
3647
3671
|
*/
|
|
3648
|
-
secret?: string;
|
|
3672
|
+
secret?: string | undefined;
|
|
3649
3673
|
/**
|
|
3650
3674
|
* <p>A regular expression used to determine which repository branches are built when a
|
|
3651
3675
|
* webhook is triggered. If the name of a branch matches the regular expression, then it is
|
|
@@ -3656,7 +3680,7 @@ export interface Webhook {
|
|
|
3656
3680
|
* </note>
|
|
3657
3681
|
* @public
|
|
3658
3682
|
*/
|
|
3659
|
-
branchFilter?: string;
|
|
3683
|
+
branchFilter?: string | undefined;
|
|
3660
3684
|
/**
|
|
3661
3685
|
* <p>An array of arrays of <code>WebhookFilter</code> objects used to determine which
|
|
3662
3686
|
* webhooks are triggered. At least one <code>WebhookFilter</code> in the array must
|
|
@@ -3666,12 +3690,12 @@ export interface Webhook {
|
|
|
3666
3690
|
* filters must pass. </p>
|
|
3667
3691
|
* @public
|
|
3668
3692
|
*/
|
|
3669
|
-
filterGroups?: WebhookFilter[][];
|
|
3693
|
+
filterGroups?: WebhookFilter[][] | undefined;
|
|
3670
3694
|
/**
|
|
3671
3695
|
* <p>Specifies the type of build this webhook will trigger.</p>
|
|
3672
3696
|
* @public
|
|
3673
3697
|
*/
|
|
3674
|
-
buildType?: WebhookBuildType;
|
|
3698
|
+
buildType?: WebhookBuildType | undefined;
|
|
3675
3699
|
/**
|
|
3676
3700
|
* <p>If manualCreation is true, CodeBuild doesn't create a webhook in GitHub and instead returns <code>payloadUrl</code> and
|
|
3677
3701
|
* <code>secret</code> values for the webhook. The <code>payloadUrl</code> and <code>secret</code> values in the output can
|
|
@@ -3681,13 +3705,13 @@ export interface Webhook {
|
|
|
3681
3705
|
* </note>
|
|
3682
3706
|
* @public
|
|
3683
3707
|
*/
|
|
3684
|
-
manualCreation?: boolean;
|
|
3708
|
+
manualCreation?: boolean | undefined;
|
|
3685
3709
|
/**
|
|
3686
3710
|
* <p>A timestamp that indicates the last time a repository's secret token was modified.
|
|
3687
3711
|
* </p>
|
|
3688
3712
|
* @public
|
|
3689
3713
|
*/
|
|
3690
|
-
lastModifiedSecret?: Date;
|
|
3714
|
+
lastModifiedSecret?: Date | undefined;
|
|
3691
3715
|
/**
|
|
3692
3716
|
* <p>The scope configuration for global or organization webhooks.</p>
|
|
3693
3717
|
* <note>
|
|
@@ -3695,7 +3719,7 @@ export interface Webhook {
|
|
|
3695
3719
|
* </note>
|
|
3696
3720
|
* @public
|
|
3697
3721
|
*/
|
|
3698
|
-
scopeConfiguration?: ScopeConfiguration;
|
|
3722
|
+
scopeConfiguration?: ScopeConfiguration | undefined;
|
|
3699
3723
|
}
|
|
3700
3724
|
/**
|
|
3701
3725
|
* <p>Information about a build project.</p>
|
|
@@ -3706,27 +3730,27 @@ export interface Project {
|
|
|
3706
3730
|
* <p>The name of the build project.</p>
|
|
3707
3731
|
* @public
|
|
3708
3732
|
*/
|
|
3709
|
-
name?: string;
|
|
3733
|
+
name?: string | undefined;
|
|
3710
3734
|
/**
|
|
3711
3735
|
* <p>The Amazon Resource Name (ARN) of the build project.</p>
|
|
3712
3736
|
* @public
|
|
3713
3737
|
*/
|
|
3714
|
-
arn?: string;
|
|
3738
|
+
arn?: string | undefined;
|
|
3715
3739
|
/**
|
|
3716
3740
|
* <p>A description that makes the build project easy to identify.</p>
|
|
3717
3741
|
* @public
|
|
3718
3742
|
*/
|
|
3719
|
-
description?: string;
|
|
3743
|
+
description?: string | undefined;
|
|
3720
3744
|
/**
|
|
3721
3745
|
* <p>Information about the build input source code for this build project.</p>
|
|
3722
3746
|
* @public
|
|
3723
3747
|
*/
|
|
3724
|
-
source?: ProjectSource;
|
|
3748
|
+
source?: ProjectSource | undefined;
|
|
3725
3749
|
/**
|
|
3726
3750
|
* <p>An array of <code>ProjectSource</code> objects. </p>
|
|
3727
3751
|
* @public
|
|
3728
3752
|
*/
|
|
3729
|
-
secondarySources?: ProjectSource[];
|
|
3753
|
+
secondarySources?: ProjectSource[] | undefined;
|
|
3730
3754
|
/**
|
|
3731
3755
|
* <p>A version of the build input to be built for this project. If not specified, the
|
|
3732
3756
|
* latest version is used. If specified, it must be one of:</p>
|
|
@@ -3763,51 +3787,51 @@ export interface Project {
|
|
|
3763
3787
|
* </p>
|
|
3764
3788
|
* @public
|
|
3765
3789
|
*/
|
|
3766
|
-
sourceVersion?: string;
|
|
3790
|
+
sourceVersion?: string | undefined;
|
|
3767
3791
|
/**
|
|
3768
3792
|
* <p>An array of <code>ProjectSourceVersion</code> objects. If
|
|
3769
3793
|
* <code>secondarySourceVersions</code> is specified at the build level, then they take
|
|
3770
3794
|
* over these <code>secondarySourceVersions</code> (at the project level). </p>
|
|
3771
3795
|
* @public
|
|
3772
3796
|
*/
|
|
3773
|
-
secondarySourceVersions?: ProjectSourceVersion[];
|
|
3797
|
+
secondarySourceVersions?: ProjectSourceVersion[] | undefined;
|
|
3774
3798
|
/**
|
|
3775
3799
|
* <p>Information about the build output artifacts for the build project.</p>
|
|
3776
3800
|
* @public
|
|
3777
3801
|
*/
|
|
3778
|
-
artifacts?: ProjectArtifacts;
|
|
3802
|
+
artifacts?: ProjectArtifacts | undefined;
|
|
3779
3803
|
/**
|
|
3780
3804
|
* <p>An array of <code>ProjectArtifacts</code> objects. </p>
|
|
3781
3805
|
* @public
|
|
3782
3806
|
*/
|
|
3783
|
-
secondaryArtifacts?: ProjectArtifacts[];
|
|
3807
|
+
secondaryArtifacts?: ProjectArtifacts[] | undefined;
|
|
3784
3808
|
/**
|
|
3785
3809
|
* <p>Information about the cache for the build project.</p>
|
|
3786
3810
|
* @public
|
|
3787
3811
|
*/
|
|
3788
|
-
cache?: ProjectCache;
|
|
3812
|
+
cache?: ProjectCache | undefined;
|
|
3789
3813
|
/**
|
|
3790
3814
|
* <p>Information about the build environment for this build project.</p>
|
|
3791
3815
|
* @public
|
|
3792
3816
|
*/
|
|
3793
|
-
environment?: ProjectEnvironment;
|
|
3817
|
+
environment?: ProjectEnvironment | undefined;
|
|
3794
3818
|
/**
|
|
3795
3819
|
* <p>The ARN of the IAM role that enables CodeBuild to interact with dependent Amazon Web Services services
|
|
3796
3820
|
* on behalf of the Amazon Web Services account.</p>
|
|
3797
3821
|
* @public
|
|
3798
3822
|
*/
|
|
3799
|
-
serviceRole?: string;
|
|
3823
|
+
serviceRole?: string | undefined;
|
|
3800
3824
|
/**
|
|
3801
3825
|
* <p>How long, in minutes, from 5 to 2160 (36 hours), for CodeBuild to wait before timing out any
|
|
3802
3826
|
* related build that did not get marked as completed. The default is 60 minutes.</p>
|
|
3803
3827
|
* @public
|
|
3804
3828
|
*/
|
|
3805
|
-
timeoutInMinutes?: number;
|
|
3829
|
+
timeoutInMinutes?: number | undefined;
|
|
3806
3830
|
/**
|
|
3807
3831
|
* <p>The number of minutes a build is allowed to be queued before it times out. </p>
|
|
3808
3832
|
* @public
|
|
3809
3833
|
*/
|
|
3810
|
-
queuedTimeoutInMinutes?: number;
|
|
3834
|
+
queuedTimeoutInMinutes?: number | undefined;
|
|
3811
3835
|
/**
|
|
3812
3836
|
* <p>The Key Management Service customer master key (CMK) to be used for encrypting the build output
|
|
3813
3837
|
* artifacts.</p>
|
|
@@ -3821,47 +3845,47 @@ export interface Project {
|
|
|
3821
3845
|
* </p>
|
|
3822
3846
|
* @public
|
|
3823
3847
|
*/
|
|
3824
|
-
encryptionKey?: string;
|
|
3848
|
+
encryptionKey?: string | undefined;
|
|
3825
3849
|
/**
|
|
3826
3850
|
* <p>A list of tag key and value pairs associated with this build project.</p>
|
|
3827
3851
|
* <p>These tags are available for use by Amazon Web Services services that support CodeBuild build project
|
|
3828
3852
|
* tags.</p>
|
|
3829
3853
|
* @public
|
|
3830
3854
|
*/
|
|
3831
|
-
tags?: Tag[];
|
|
3855
|
+
tags?: Tag[] | undefined;
|
|
3832
3856
|
/**
|
|
3833
3857
|
* <p>When the build project was created, expressed in Unix time format.</p>
|
|
3834
3858
|
* @public
|
|
3835
3859
|
*/
|
|
3836
|
-
created?: Date;
|
|
3860
|
+
created?: Date | undefined;
|
|
3837
3861
|
/**
|
|
3838
3862
|
* <p>When the build project's settings were last modified, expressed in Unix time
|
|
3839
3863
|
* format.</p>
|
|
3840
3864
|
* @public
|
|
3841
3865
|
*/
|
|
3842
|
-
lastModified?: Date;
|
|
3866
|
+
lastModified?: Date | undefined;
|
|
3843
3867
|
/**
|
|
3844
3868
|
* <p>Information about a webhook that connects repository events to a build project in
|
|
3845
3869
|
* CodeBuild.</p>
|
|
3846
3870
|
* @public
|
|
3847
3871
|
*/
|
|
3848
|
-
webhook?: Webhook;
|
|
3872
|
+
webhook?: Webhook | undefined;
|
|
3849
3873
|
/**
|
|
3850
3874
|
* <p>Information about the VPC configuration that CodeBuild accesses.</p>
|
|
3851
3875
|
* @public
|
|
3852
3876
|
*/
|
|
3853
|
-
vpcConfig?: VpcConfig;
|
|
3877
|
+
vpcConfig?: VpcConfig | undefined;
|
|
3854
3878
|
/**
|
|
3855
3879
|
* <p>Information about the build badge for the build project.</p>
|
|
3856
3880
|
* @public
|
|
3857
3881
|
*/
|
|
3858
|
-
badge?: ProjectBadge;
|
|
3882
|
+
badge?: ProjectBadge | undefined;
|
|
3859
3883
|
/**
|
|
3860
3884
|
* <p>Information about logs for the build project. A project can create logs in CloudWatch Logs, an
|
|
3861
3885
|
* S3 bucket, or both. </p>
|
|
3862
3886
|
* @public
|
|
3863
3887
|
*/
|
|
3864
|
-
logsConfig?: LogsConfig;
|
|
3888
|
+
logsConfig?: LogsConfig | undefined;
|
|
3865
3889
|
/**
|
|
3866
3890
|
* <p>
|
|
3867
3891
|
* An array of <code>ProjectFileSystemLocation</code> objects for a CodeBuild build project. A <code>ProjectFileSystemLocation</code> object
|
|
@@ -3870,21 +3894,21 @@ export interface Project {
|
|
|
3870
3894
|
* </p>
|
|
3871
3895
|
* @public
|
|
3872
3896
|
*/
|
|
3873
|
-
fileSystemLocations?: ProjectFileSystemLocation[];
|
|
3897
|
+
fileSystemLocations?: ProjectFileSystemLocation[] | undefined;
|
|
3874
3898
|
/**
|
|
3875
3899
|
* <p>A <a>ProjectBuildBatchConfig</a>
|
|
3876
3900
|
* object that defines the batch build
|
|
3877
3901
|
* options for the project.</p>
|
|
3878
3902
|
* @public
|
|
3879
3903
|
*/
|
|
3880
|
-
buildBatchConfig?: ProjectBuildBatchConfig;
|
|
3904
|
+
buildBatchConfig?: ProjectBuildBatchConfig | undefined;
|
|
3881
3905
|
/**
|
|
3882
3906
|
* <p>The maximum number of concurrent builds that are allowed for this project.</p>
|
|
3883
3907
|
* <p>New builds are only started if the current number of builds is less than or equal to this limit.
|
|
3884
3908
|
* If the current build count meets this limit, new builds are throttled and are not run.</p>
|
|
3885
3909
|
* @public
|
|
3886
3910
|
*/
|
|
3887
|
-
concurrentBuildLimit?: number;
|
|
3911
|
+
concurrentBuildLimit?: number | undefined;
|
|
3888
3912
|
/**
|
|
3889
3913
|
* <p>Specifies the visibility of the project's builds. Possible values are:</p>
|
|
3890
3914
|
* <dl>
|
|
@@ -3899,25 +3923,25 @@ export interface Project {
|
|
|
3899
3923
|
* </dl>
|
|
3900
3924
|
* @public
|
|
3901
3925
|
*/
|
|
3902
|
-
projectVisibility?: ProjectVisibilityType;
|
|
3926
|
+
projectVisibility?: ProjectVisibilityType | undefined;
|
|
3903
3927
|
/**
|
|
3904
3928
|
* <p>Contains the project identifier used with the public build APIs. </p>
|
|
3905
3929
|
* @public
|
|
3906
3930
|
*/
|
|
3907
|
-
publicProjectAlias?: string;
|
|
3931
|
+
publicProjectAlias?: string | undefined;
|
|
3908
3932
|
/**
|
|
3909
3933
|
* <p>The ARN of the IAM role that enables CodeBuild to access the CloudWatch Logs and Amazon S3 artifacts for
|
|
3910
3934
|
* the project's builds.</p>
|
|
3911
3935
|
* @public
|
|
3912
3936
|
*/
|
|
3913
|
-
resourceAccessRole?: string;
|
|
3937
|
+
resourceAccessRole?: string | undefined;
|
|
3914
3938
|
/**
|
|
3915
3939
|
* <p>The maximum number of additional automatic retries after a failed build. For example, if the
|
|
3916
3940
|
* auto-retry limit is set to 2, CodeBuild will call the <code>RetryBuild</code> API to automatically
|
|
3917
3941
|
* retry your build for up to 2 additional times.</p>
|
|
3918
3942
|
* @public
|
|
3919
3943
|
*/
|
|
3920
|
-
autoRetryLimit?: number;
|
|
3944
|
+
autoRetryLimit?: number | undefined;
|
|
3921
3945
|
}
|
|
3922
3946
|
/**
|
|
3923
3947
|
* @public
|
|
@@ -3927,12 +3951,12 @@ export interface BatchGetProjectsOutput {
|
|
|
3927
3951
|
* <p>Information about the requested build projects.</p>
|
|
3928
3952
|
* @public
|
|
3929
3953
|
*/
|
|
3930
|
-
projects?: Project[];
|
|
3954
|
+
projects?: Project[] | undefined;
|
|
3931
3955
|
/**
|
|
3932
3956
|
* <p>The names of build projects for which information could not be found.</p>
|
|
3933
3957
|
* @public
|
|
3934
3958
|
*/
|
|
3935
|
-
projectsNotFound?: string[];
|
|
3959
|
+
projectsNotFound?: string[] | undefined;
|
|
3936
3960
|
}
|
|
3937
3961
|
/**
|
|
3938
3962
|
* @public
|
|
@@ -3979,18 +4003,18 @@ export interface S3ReportExportConfig {
|
|
|
3979
4003
|
* <p> The name of the S3 bucket where the raw data of a report are exported. </p>
|
|
3980
4004
|
* @public
|
|
3981
4005
|
*/
|
|
3982
|
-
bucket?: string;
|
|
4006
|
+
bucket?: string | undefined;
|
|
3983
4007
|
/**
|
|
3984
4008
|
* <p>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
|
|
3985
4009
|
* that is owned by an account other than the account running the build.</p>
|
|
3986
4010
|
* @public
|
|
3987
4011
|
*/
|
|
3988
|
-
bucketOwner?: string;
|
|
4012
|
+
bucketOwner?: string | undefined;
|
|
3989
4013
|
/**
|
|
3990
4014
|
* <p> The path to the exported report's raw data results. </p>
|
|
3991
4015
|
* @public
|
|
3992
4016
|
*/
|
|
3993
|
-
path?: string;
|
|
4017
|
+
path?: string | undefined;
|
|
3994
4018
|
/**
|
|
3995
4019
|
* <p> The type of build output artifact to create. Valid values include: </p>
|
|
3996
4020
|
* <ul>
|
|
@@ -4007,17 +4031,17 @@ export interface S3ReportExportConfig {
|
|
|
4007
4031
|
* </ul>
|
|
4008
4032
|
* @public
|
|
4009
4033
|
*/
|
|
4010
|
-
packaging?: ReportPackagingType;
|
|
4034
|
+
packaging?: ReportPackagingType | undefined;
|
|
4011
4035
|
/**
|
|
4012
4036
|
* <p> The encryption key for the report's encrypted raw data. </p>
|
|
4013
4037
|
* @public
|
|
4014
4038
|
*/
|
|
4015
|
-
encryptionKey?: string;
|
|
4039
|
+
encryptionKey?: string | undefined;
|
|
4016
4040
|
/**
|
|
4017
4041
|
* <p> A boolean value that specifies if the results of a report are encrypted. </p>
|
|
4018
4042
|
* @public
|
|
4019
4043
|
*/
|
|
4020
|
-
encryptionDisabled?: boolean;
|
|
4044
|
+
encryptionDisabled?: boolean | undefined;
|
|
4021
4045
|
}
|
|
4022
4046
|
/**
|
|
4023
4047
|
* <p> Information about the location where the run of a report is exported. </p>
|
|
@@ -4038,13 +4062,13 @@ export interface ReportExportConfig {
|
|
|
4038
4062
|
* </ul>
|
|
4039
4063
|
* @public
|
|
4040
4064
|
*/
|
|
4041
|
-
exportConfigType?: ReportExportConfigType;
|
|
4065
|
+
exportConfigType?: ReportExportConfigType | undefined;
|
|
4042
4066
|
/**
|
|
4043
4067
|
* <p> A <code>S3ReportExportConfig</code> object that contains information about the S3
|
|
4044
4068
|
* bucket where the run of a report is exported. </p>
|
|
4045
4069
|
* @public
|
|
4046
4070
|
*/
|
|
4047
|
-
s3Destination?: S3ReportExportConfig;
|
|
4071
|
+
s3Destination?: S3ReportExportConfig | undefined;
|
|
4048
4072
|
}
|
|
4049
4073
|
/**
|
|
4050
4074
|
* @public
|
|
@@ -4082,13 +4106,13 @@ export interface ReportGroup {
|
|
|
4082
4106
|
* </p>
|
|
4083
4107
|
* @public
|
|
4084
4108
|
*/
|
|
4085
|
-
arn?: string;
|
|
4109
|
+
arn?: string | undefined;
|
|
4086
4110
|
/**
|
|
4087
4111
|
* <p>The name of the <code>ReportGroup</code>.
|
|
4088
4112
|
* </p>
|
|
4089
4113
|
* @public
|
|
4090
4114
|
*/
|
|
4091
|
-
name?: string;
|
|
4115
|
+
name?: string | undefined;
|
|
4092
4116
|
/**
|
|
4093
4117
|
* <p>The type of the <code>ReportGroup</code>. This can be one of the following
|
|
4094
4118
|
* values:</p>
|
|
@@ -4104,30 +4128,30 @@ export interface ReportGroup {
|
|
|
4104
4128
|
* </dl>
|
|
4105
4129
|
* @public
|
|
4106
4130
|
*/
|
|
4107
|
-
type?: ReportType;
|
|
4131
|
+
type?: ReportType | undefined;
|
|
4108
4132
|
/**
|
|
4109
4133
|
* <p>Information about the destination where the raw data of this <code>ReportGroup</code>
|
|
4110
4134
|
* is exported. </p>
|
|
4111
4135
|
* @public
|
|
4112
4136
|
*/
|
|
4113
|
-
exportConfig?: ReportExportConfig;
|
|
4137
|
+
exportConfig?: ReportExportConfig | undefined;
|
|
4114
4138
|
/**
|
|
4115
4139
|
* <p>The date and time this <code>ReportGroup</code> was created. </p>
|
|
4116
4140
|
* @public
|
|
4117
4141
|
*/
|
|
4118
|
-
created?: Date;
|
|
4142
|
+
created?: Date | undefined;
|
|
4119
4143
|
/**
|
|
4120
4144
|
* <p>The date and time this <code>ReportGroup</code> was last modified. </p>
|
|
4121
4145
|
* @public
|
|
4122
4146
|
*/
|
|
4123
|
-
lastModified?: Date;
|
|
4147
|
+
lastModified?: Date | undefined;
|
|
4124
4148
|
/**
|
|
4125
4149
|
* <p>A list of tag key and value pairs associated with this report group. </p>
|
|
4126
4150
|
* <p>These tags are available for use by Amazon Web Services services that support CodeBuild report group
|
|
4127
4151
|
* tags.</p>
|
|
4128
4152
|
* @public
|
|
4129
4153
|
*/
|
|
4130
|
-
tags?: Tag[];
|
|
4154
|
+
tags?: Tag[] | undefined;
|
|
4131
4155
|
/**
|
|
4132
4156
|
* <p>The status of the report group. This property is read-only.</p>
|
|
4133
4157
|
* <p>This can be one of the following values:</p>
|
|
@@ -4143,7 +4167,7 @@ export interface ReportGroup {
|
|
|
4143
4167
|
* </dl>
|
|
4144
4168
|
* @public
|
|
4145
4169
|
*/
|
|
4146
|
-
status?: ReportGroupStatusType;
|
|
4170
|
+
status?: ReportGroupStatusType | undefined;
|
|
4147
4171
|
}
|
|
4148
4172
|
/**
|
|
4149
4173
|
* @public
|
|
@@ -4155,14 +4179,14 @@ export interface BatchGetReportGroupsOutput {
|
|
|
4155
4179
|
* </p>
|
|
4156
4180
|
* @public
|
|
4157
4181
|
*/
|
|
4158
|
-
reportGroups?: ReportGroup[];
|
|
4182
|
+
reportGroups?: ReportGroup[] | undefined;
|
|
4159
4183
|
/**
|
|
4160
4184
|
* <p>
|
|
4161
4185
|
* An array of ARNs passed to <code>BatchGetReportGroups</code> that are not associated with a <code>ReportGroup</code>.
|
|
4162
4186
|
* </p>
|
|
4163
4187
|
* @public
|
|
4164
4188
|
*/
|
|
4165
|
-
reportGroupsNotFound?: string[];
|
|
4189
|
+
reportGroupsNotFound?: string[] | undefined;
|
|
4166
4190
|
}
|
|
4167
4191
|
/**
|
|
4168
4192
|
* @public
|
|
@@ -4189,32 +4213,32 @@ export interface CodeCoverageReportSummary {
|
|
|
4189
4213
|
* <p>The percentage of lines that are covered by your tests.</p>
|
|
4190
4214
|
* @public
|
|
4191
4215
|
*/
|
|
4192
|
-
lineCoveragePercentage?: number;
|
|
4216
|
+
lineCoveragePercentage?: number | undefined;
|
|
4193
4217
|
/**
|
|
4194
4218
|
* <p>The number of lines that are covered by your tests.</p>
|
|
4195
4219
|
* @public
|
|
4196
4220
|
*/
|
|
4197
|
-
linesCovered?: number;
|
|
4221
|
+
linesCovered?: number | undefined;
|
|
4198
4222
|
/**
|
|
4199
4223
|
* <p>The number of lines that are not covered by your tests.</p>
|
|
4200
4224
|
* @public
|
|
4201
4225
|
*/
|
|
4202
|
-
linesMissed?: number;
|
|
4226
|
+
linesMissed?: number | undefined;
|
|
4203
4227
|
/**
|
|
4204
4228
|
* <p>The percentage of branches that are covered by your tests.</p>
|
|
4205
4229
|
* @public
|
|
4206
4230
|
*/
|
|
4207
|
-
branchCoveragePercentage?: number;
|
|
4231
|
+
branchCoveragePercentage?: number | undefined;
|
|
4208
4232
|
/**
|
|
4209
4233
|
* <p>The number of conditional branches that are covered by your tests.</p>
|
|
4210
4234
|
* @public
|
|
4211
4235
|
*/
|
|
4212
|
-
branchesCovered?: number;
|
|
4236
|
+
branchesCovered?: number | undefined;
|
|
4213
4237
|
/**
|
|
4214
4238
|
* <p>The number of conditional branches that are not covered by your tests.</p>
|
|
4215
4239
|
* @public
|
|
4216
4240
|
*/
|
|
4217
|
-
branchesMissed?: number;
|
|
4241
|
+
branchesMissed?: number | undefined;
|
|
4218
4242
|
}
|
|
4219
4243
|
/**
|
|
4220
4244
|
* @public
|
|
@@ -4267,7 +4291,7 @@ export interface Report {
|
|
|
4267
4291
|
* <p> The ARN of the report run. </p>
|
|
4268
4292
|
* @public
|
|
4269
4293
|
*/
|
|
4270
|
-
arn?: string;
|
|
4294
|
+
arn?: string | undefined;
|
|
4271
4295
|
/**
|
|
4272
4296
|
* <p>The type of the report that was run.</p>
|
|
4273
4297
|
* <dl>
|
|
@@ -4282,62 +4306,62 @@ export interface Report {
|
|
|
4282
4306
|
* </dl>
|
|
4283
4307
|
* @public
|
|
4284
4308
|
*/
|
|
4285
|
-
type?: ReportType;
|
|
4309
|
+
type?: ReportType | undefined;
|
|
4286
4310
|
/**
|
|
4287
4311
|
* <p> The name of the report that was run. </p>
|
|
4288
4312
|
* @public
|
|
4289
4313
|
*/
|
|
4290
|
-
name?: string;
|
|
4314
|
+
name?: string | undefined;
|
|
4291
4315
|
/**
|
|
4292
4316
|
* <p> The ARN of the report group associated with this report. </p>
|
|
4293
4317
|
* @public
|
|
4294
4318
|
*/
|
|
4295
|
-
reportGroupArn?: string;
|
|
4319
|
+
reportGroupArn?: string | undefined;
|
|
4296
4320
|
/**
|
|
4297
4321
|
* <p> The ARN of the build run that generated this report. </p>
|
|
4298
4322
|
* @public
|
|
4299
4323
|
*/
|
|
4300
|
-
executionId?: string;
|
|
4324
|
+
executionId?: string | undefined;
|
|
4301
4325
|
/**
|
|
4302
4326
|
* <p> The status of this report. </p>
|
|
4303
4327
|
* @public
|
|
4304
4328
|
*/
|
|
4305
|
-
status?: ReportStatusType;
|
|
4329
|
+
status?: ReportStatusType | undefined;
|
|
4306
4330
|
/**
|
|
4307
4331
|
* <p> The date and time this report run occurred. </p>
|
|
4308
4332
|
* @public
|
|
4309
4333
|
*/
|
|
4310
|
-
created?: Date;
|
|
4334
|
+
created?: Date | undefined;
|
|
4311
4335
|
/**
|
|
4312
4336
|
* <p> The date and time a report expires. A report expires 30 days after it is created. An
|
|
4313
4337
|
* expired report is not available to view in CodeBuild. </p>
|
|
4314
4338
|
* @public
|
|
4315
4339
|
*/
|
|
4316
|
-
expired?: Date;
|
|
4340
|
+
expired?: Date | undefined;
|
|
4317
4341
|
/**
|
|
4318
4342
|
* <p> Information about where the raw data used to generate this report was exported.
|
|
4319
4343
|
* </p>
|
|
4320
4344
|
* @public
|
|
4321
4345
|
*/
|
|
4322
|
-
exportConfig?: ReportExportConfig;
|
|
4346
|
+
exportConfig?: ReportExportConfig | undefined;
|
|
4323
4347
|
/**
|
|
4324
4348
|
* <p> A boolean that specifies if this report run is truncated. The list of test cases is
|
|
4325
4349
|
* truncated after the maximum number of test cases is reached. </p>
|
|
4326
4350
|
* @public
|
|
4327
4351
|
*/
|
|
4328
|
-
truncated?: boolean;
|
|
4352
|
+
truncated?: boolean | undefined;
|
|
4329
4353
|
/**
|
|
4330
4354
|
* <p> A <code>TestReportSummary</code> object that contains information about this test
|
|
4331
4355
|
* report. </p>
|
|
4332
4356
|
* @public
|
|
4333
4357
|
*/
|
|
4334
|
-
testSummary?: TestReportSummary;
|
|
4358
|
+
testSummary?: TestReportSummary | undefined;
|
|
4335
4359
|
/**
|
|
4336
4360
|
* <p>A <code>CodeCoverageReportSummary</code> object that contains a code coverage summary for
|
|
4337
4361
|
* this report.</p>
|
|
4338
4362
|
* @public
|
|
4339
4363
|
*/
|
|
4340
|
-
codeCoverageSummary?: CodeCoverageReportSummary;
|
|
4364
|
+
codeCoverageSummary?: CodeCoverageReportSummary | undefined;
|
|
4341
4365
|
}
|
|
4342
4366
|
/**
|
|
4343
4367
|
* @public
|
|
@@ -4349,14 +4373,14 @@ export interface BatchGetReportsOutput {
|
|
|
4349
4373
|
* </p>
|
|
4350
4374
|
* @public
|
|
4351
4375
|
*/
|
|
4352
|
-
reports?: Report[];
|
|
4376
|
+
reports?: Report[] | undefined;
|
|
4353
4377
|
/**
|
|
4354
4378
|
* <p>
|
|
4355
4379
|
* An array of ARNs passed to <code>BatchGetReportGroups</code> that are not associated with a <code>Report</code>.
|
|
4356
4380
|
* </p>
|
|
4357
4381
|
* @public
|
|
4358
4382
|
*/
|
|
4359
|
-
reportsNotFound?: string[];
|
|
4383
|
+
reportsNotFound?: string[] | undefined;
|
|
4360
4384
|
}
|
|
4361
4385
|
/**
|
|
4362
4386
|
* <p>Specifies filters when retrieving batch builds.</p>
|
|
@@ -4368,7 +4392,7 @@ export interface BuildBatchFilter {
|
|
|
4368
4392
|
* be retrieved.</p>
|
|
4369
4393
|
* @public
|
|
4370
4394
|
*/
|
|
4371
|
-
status?: StatusType;
|
|
4395
|
+
status?: StatusType | undefined;
|
|
4372
4396
|
}
|
|
4373
4397
|
/**
|
|
4374
4398
|
* <p>The scaling configuration input of a compute fleet.</p>
|
|
@@ -4379,17 +4403,17 @@ export interface ScalingConfigurationInput {
|
|
|
4379
4403
|
* <p>The scaling type for a compute fleet.</p>
|
|
4380
4404
|
* @public
|
|
4381
4405
|
*/
|
|
4382
|
-
scalingType?: FleetScalingType;
|
|
4406
|
+
scalingType?: FleetScalingType | undefined;
|
|
4383
4407
|
/**
|
|
4384
4408
|
* <p>A list of <code>TargetTrackingScalingConfiguration</code> objects.</p>
|
|
4385
4409
|
* @public
|
|
4386
4410
|
*/
|
|
4387
|
-
targetTrackingScalingConfigs?: TargetTrackingScalingConfiguration[];
|
|
4411
|
+
targetTrackingScalingConfigs?: TargetTrackingScalingConfiguration[] | undefined;
|
|
4388
4412
|
/**
|
|
4389
4413
|
* <p>The maximum number of instances in the fleet when auto-scaling.</p>
|
|
4390
4414
|
* @public
|
|
4391
4415
|
*/
|
|
4392
|
-
maxCapacity?: number;
|
|
4416
|
+
maxCapacity?: number | undefined;
|
|
4393
4417
|
}
|
|
4394
4418
|
/**
|
|
4395
4419
|
* @public
|
|
@@ -4415,6 +4439,13 @@ export interface CreateFleetInput {
|
|
|
4415
4439
|
* EU (Frankfurt), and South America (São Paulo).</p>
|
|
4416
4440
|
* </li>
|
|
4417
4441
|
* <li>
|
|
4442
|
+
* <p>The environment type <code>ARM_EC2</code> is available only in regions
|
|
4443
|
+
* US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
4444
|
+
* EU (Frankfurt), Asia Pacific (Tokyo),
|
|
4445
|
+
* Asia Pacific (Singapore), Asia Pacific (Sydney), South America (São Paulo), and
|
|
4446
|
+
* Asia Pacific (Mumbai).</p>
|
|
4447
|
+
* </li>
|
|
4448
|
+
* <li>
|
|
4418
4449
|
* <p>The environment type <code>LINUX_CONTAINER</code> is available only in regions
|
|
4419
4450
|
* US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
4420
4451
|
* EU (Frankfurt), Asia Pacific (Tokyo),
|
|
@@ -4422,6 +4453,13 @@ export interface CreateFleetInput {
|
|
|
4422
4453
|
* Asia Pacific (Mumbai).</p>
|
|
4423
4454
|
* </li>
|
|
4424
4455
|
* <li>
|
|
4456
|
+
* <p>The environment type <code>LINUX_EC2</code> is available only in regions
|
|
4457
|
+
* US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
4458
|
+
* EU (Frankfurt), Asia Pacific (Tokyo),
|
|
4459
|
+
* Asia Pacific (Singapore), Asia Pacific (Sydney), South America (São Paulo), and
|
|
4460
|
+
* Asia Pacific (Mumbai).</p>
|
|
4461
|
+
* </li>
|
|
4462
|
+
* <li>
|
|
4425
4463
|
* <p>The environment type <code>LINUX_GPU_CONTAINER</code> is available only in
|
|
4426
4464
|
* regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
4427
4465
|
* EU (Frankfurt), Asia Pacific (Tokyo), and Asia Pacific (Sydney).</p>
|
|
@@ -4436,6 +4474,13 @@ export interface CreateFleetInput {
|
|
|
4436
4474
|
* regions US East (N. Virginia), US East (Ohio), US West (Oregon), and Asia Pacific (Sydney).</p>
|
|
4437
4475
|
* </li>
|
|
4438
4476
|
* <li>
|
|
4477
|
+
* <p>The environment type <code>WINDOWS_EC2</code> is available only in regions
|
|
4478
|
+
* US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
4479
|
+
* EU (Frankfurt), Asia Pacific (Tokyo),
|
|
4480
|
+
* Asia Pacific (Singapore), Asia Pacific (Sydney), South America (São Paulo), and
|
|
4481
|
+
* Asia Pacific (Mumbai).</p>
|
|
4482
|
+
* </li>
|
|
4483
|
+
* <li>
|
|
4439
4484
|
* <p>The environment type <code>WINDOWS_SERVER_2019_CONTAINER</code> is available only in regions
|
|
4440
4485
|
* US East (N. Virginia), US East (Ohio), US West (Oregon), Asia Pacific (Sydney),
|
|
4441
4486
|
* Asia Pacific (Tokyo), Asia Pacific (Mumbai) and
|
|
@@ -4558,12 +4603,12 @@ export interface CreateFleetInput {
|
|
|
4558
4603
|
* <p>The compute configuration of the compute fleet. This is only required if <code>computeType</code> is set to <code>ATTRIBUTE_BASED_COMPUTE</code>.</p>
|
|
4559
4604
|
* @public
|
|
4560
4605
|
*/
|
|
4561
|
-
computeConfiguration?: ComputeConfiguration;
|
|
4606
|
+
computeConfiguration?: ComputeConfiguration | undefined;
|
|
4562
4607
|
/**
|
|
4563
4608
|
* <p>The scaling configuration of the compute fleet.</p>
|
|
4564
4609
|
* @public
|
|
4565
4610
|
*/
|
|
4566
|
-
scalingConfiguration?: ScalingConfigurationInput;
|
|
4611
|
+
scalingConfiguration?: ScalingConfigurationInput | undefined;
|
|
4567
4612
|
/**
|
|
4568
4613
|
* <p>The compute fleet overflow behavior.</p>
|
|
4569
4614
|
* <ul>
|
|
@@ -4583,35 +4628,35 @@ export interface CreateFleetInput {
|
|
|
4583
4628
|
* </ul>
|
|
4584
4629
|
* @public
|
|
4585
4630
|
*/
|
|
4586
|
-
overflowBehavior?: FleetOverflowBehavior;
|
|
4631
|
+
overflowBehavior?: FleetOverflowBehavior | undefined;
|
|
4587
4632
|
/**
|
|
4588
4633
|
* <p>Information about the VPC configuration that CodeBuild accesses.</p>
|
|
4589
4634
|
* @public
|
|
4590
4635
|
*/
|
|
4591
|
-
vpcConfig?: VpcConfig;
|
|
4636
|
+
vpcConfig?: VpcConfig | undefined;
|
|
4592
4637
|
/**
|
|
4593
4638
|
* <p>The proxy configuration of the compute fleet.</p>
|
|
4594
4639
|
* @public
|
|
4595
4640
|
*/
|
|
4596
|
-
proxyConfiguration?: ProxyConfiguration;
|
|
4641
|
+
proxyConfiguration?: ProxyConfiguration | undefined;
|
|
4597
4642
|
/**
|
|
4598
4643
|
* <p>The Amazon Machine Image (AMI) of the compute fleet.</p>
|
|
4599
4644
|
* @public
|
|
4600
4645
|
*/
|
|
4601
|
-
imageId?: string;
|
|
4646
|
+
imageId?: string | undefined;
|
|
4602
4647
|
/**
|
|
4603
4648
|
* <p>The service role associated with the compute fleet. For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/auth-and-access-control-iam-identity-based-access-control.html#customer-managed-policies-example-permission-policy-fleet-service-role.html">
|
|
4604
4649
|
* Allow a user to add a permission policy for a fleet service role</a> in the <i>CodeBuild User Guide</i>.</p>
|
|
4605
4650
|
* @public
|
|
4606
4651
|
*/
|
|
4607
|
-
fleetServiceRole?: string;
|
|
4652
|
+
fleetServiceRole?: string | undefined;
|
|
4608
4653
|
/**
|
|
4609
4654
|
* <p>A list of tag key and value pairs associated with this compute fleet.</p>
|
|
4610
4655
|
* <p>These tags are available for use by Amazon Web Services services that support CodeBuild build project
|
|
4611
4656
|
* tags.</p>
|
|
4612
4657
|
* @public
|
|
4613
4658
|
*/
|
|
4614
|
-
tags?: Tag[];
|
|
4659
|
+
tags?: Tag[] | undefined;
|
|
4615
4660
|
}
|
|
4616
4661
|
/**
|
|
4617
4662
|
* @public
|
|
@@ -4621,7 +4666,7 @@ export interface CreateFleetOutput {
|
|
|
4621
4666
|
* <p>Information about the compute fleet</p>
|
|
4622
4667
|
* @public
|
|
4623
4668
|
*/
|
|
4624
|
-
fleet?: Fleet;
|
|
4669
|
+
fleet?: Fleet | undefined;
|
|
4625
4670
|
}
|
|
4626
4671
|
/**
|
|
4627
4672
|
* <p>The specified Amazon Web Services resource cannot be created, because an Amazon Web Services resource with the same
|
|
@@ -4649,7 +4694,7 @@ export interface CreateProjectInput {
|
|
|
4649
4694
|
* <p>A description that makes the build project easy to identify.</p>
|
|
4650
4695
|
* @public
|
|
4651
4696
|
*/
|
|
4652
|
-
description?: string;
|
|
4697
|
+
description?: string | undefined;
|
|
4653
4698
|
/**
|
|
4654
4699
|
* <p>Information about the build input source code for the build project.</p>
|
|
4655
4700
|
* @public
|
|
@@ -4659,7 +4704,7 @@ export interface CreateProjectInput {
|
|
|
4659
4704
|
* <p>An array of <code>ProjectSource</code> objects. </p>
|
|
4660
4705
|
* @public
|
|
4661
4706
|
*/
|
|
4662
|
-
secondarySources?: ProjectSource[];
|
|
4707
|
+
secondarySources?: ProjectSource[] | undefined;
|
|
4663
4708
|
/**
|
|
4664
4709
|
* <p>A version of the build input to be built for this project. If not specified, the latest
|
|
4665
4710
|
* version is used. If specified, it must be one of: </p>
|
|
@@ -4696,7 +4741,7 @@ export interface CreateProjectInput {
|
|
|
4696
4741
|
* </p>
|
|
4697
4742
|
* @public
|
|
4698
4743
|
*/
|
|
4699
|
-
sourceVersion?: string;
|
|
4744
|
+
sourceVersion?: string | undefined;
|
|
4700
4745
|
/**
|
|
4701
4746
|
* <p>An array of <code>ProjectSourceVersion</code> objects. If
|
|
4702
4747
|
* <code>secondarySourceVersions</code> is specified at the build level, then they take
|
|
@@ -4704,7 +4749,7 @@ export interface CreateProjectInput {
|
|
|
4704
4749
|
* </p>
|
|
4705
4750
|
* @public
|
|
4706
4751
|
*/
|
|
4707
|
-
secondarySourceVersions?: ProjectSourceVersion[];
|
|
4752
|
+
secondarySourceVersions?: ProjectSourceVersion[] | undefined;
|
|
4708
4753
|
/**
|
|
4709
4754
|
* <p>Information about the build output artifacts for the build project.</p>
|
|
4710
4755
|
* @public
|
|
@@ -4714,13 +4759,13 @@ export interface CreateProjectInput {
|
|
|
4714
4759
|
* <p>An array of <code>ProjectArtifacts</code> objects. </p>
|
|
4715
4760
|
* @public
|
|
4716
4761
|
*/
|
|
4717
|
-
secondaryArtifacts?: ProjectArtifacts[];
|
|
4762
|
+
secondaryArtifacts?: ProjectArtifacts[] | undefined;
|
|
4718
4763
|
/**
|
|
4719
4764
|
* <p>Stores recently used information so that it can be quickly accessed at a later
|
|
4720
4765
|
* time.</p>
|
|
4721
4766
|
* @public
|
|
4722
4767
|
*/
|
|
4723
|
-
cache?: ProjectCache;
|
|
4768
|
+
cache?: ProjectCache | undefined;
|
|
4724
4769
|
/**
|
|
4725
4770
|
* <p>Information about the build environment for the build project.</p>
|
|
4726
4771
|
* @public
|
|
@@ -4737,12 +4782,12 @@ export interface CreateProjectInput {
|
|
|
4737
4782
|
* any build that has not been marked as completed. The default is 60 minutes.</p>
|
|
4738
4783
|
* @public
|
|
4739
4784
|
*/
|
|
4740
|
-
timeoutInMinutes?: number;
|
|
4785
|
+
timeoutInMinutes?: number | undefined;
|
|
4741
4786
|
/**
|
|
4742
4787
|
* <p>The number of minutes a build is allowed to be queued before it times out. </p>
|
|
4743
4788
|
* @public
|
|
4744
4789
|
*/
|
|
4745
|
-
queuedTimeoutInMinutes?: number;
|
|
4790
|
+
queuedTimeoutInMinutes?: number | undefined;
|
|
4746
4791
|
/**
|
|
4747
4792
|
* <p>The Key Management Service customer master key (CMK) to be used for encrypting the build output
|
|
4748
4793
|
* artifacts.</p>
|
|
@@ -4755,14 +4800,14 @@ export interface CreateProjectInput {
|
|
|
4755
4800
|
* </p>
|
|
4756
4801
|
* @public
|
|
4757
4802
|
*/
|
|
4758
|
-
encryptionKey?: string;
|
|
4803
|
+
encryptionKey?: string | undefined;
|
|
4759
4804
|
/**
|
|
4760
4805
|
* <p>A list of tag key and value pairs associated with this build project.</p>
|
|
4761
4806
|
* <p>These tags are available for use by Amazon Web Services services that support CodeBuild build project
|
|
4762
4807
|
* tags.</p>
|
|
4763
4808
|
* @public
|
|
4764
4809
|
*/
|
|
4765
|
-
tags?: Tag[];
|
|
4810
|
+
tags?: Tag[] | undefined;
|
|
4766
4811
|
/**
|
|
4767
4812
|
* <p>VpcConfig enables CodeBuild to access resources in an Amazon VPC.</p>
|
|
4768
4813
|
* <note>
|
|
@@ -4770,19 +4815,19 @@ export interface CreateProjectInput {
|
|
|
4770
4815
|
* </note>
|
|
4771
4816
|
* @public
|
|
4772
4817
|
*/
|
|
4773
|
-
vpcConfig?: VpcConfig;
|
|
4818
|
+
vpcConfig?: VpcConfig | undefined;
|
|
4774
4819
|
/**
|
|
4775
4820
|
* <p>Set this to true to generate a publicly accessible URL for your project's build
|
|
4776
4821
|
* badge.</p>
|
|
4777
4822
|
* @public
|
|
4778
4823
|
*/
|
|
4779
|
-
badgeEnabled?: boolean;
|
|
4824
|
+
badgeEnabled?: boolean | undefined;
|
|
4780
4825
|
/**
|
|
4781
4826
|
* <p>Information about logs for the build project. These can be logs in CloudWatch Logs, logs
|
|
4782
4827
|
* uploaded to a specified S3 bucket, or both. </p>
|
|
4783
4828
|
* @public
|
|
4784
4829
|
*/
|
|
4785
|
-
logsConfig?: LogsConfig;
|
|
4830
|
+
logsConfig?: LogsConfig | undefined;
|
|
4786
4831
|
/**
|
|
4787
4832
|
* <p>
|
|
4788
4833
|
* An array of <code>ProjectFileSystemLocation</code> objects for a CodeBuild build project. A <code>ProjectFileSystemLocation</code> object
|
|
@@ -4791,28 +4836,28 @@ export interface CreateProjectInput {
|
|
|
4791
4836
|
* </p>
|
|
4792
4837
|
* @public
|
|
4793
4838
|
*/
|
|
4794
|
-
fileSystemLocations?: ProjectFileSystemLocation[];
|
|
4839
|
+
fileSystemLocations?: ProjectFileSystemLocation[] | undefined;
|
|
4795
4840
|
/**
|
|
4796
4841
|
* <p>A <a>ProjectBuildBatchConfig</a>
|
|
4797
4842
|
* object that defines the batch build options
|
|
4798
4843
|
* for the project.</p>
|
|
4799
4844
|
* @public
|
|
4800
4845
|
*/
|
|
4801
|
-
buildBatchConfig?: ProjectBuildBatchConfig;
|
|
4846
|
+
buildBatchConfig?: ProjectBuildBatchConfig | undefined;
|
|
4802
4847
|
/**
|
|
4803
4848
|
* <p>The maximum number of concurrent builds that are allowed for this project.</p>
|
|
4804
4849
|
* <p>New builds are only started if the current number of builds is less than or equal to this limit.
|
|
4805
4850
|
* If the current build count meets this limit, new builds are throttled and are not run.</p>
|
|
4806
4851
|
* @public
|
|
4807
4852
|
*/
|
|
4808
|
-
concurrentBuildLimit?: number;
|
|
4853
|
+
concurrentBuildLimit?: number | undefined;
|
|
4809
4854
|
/**
|
|
4810
4855
|
* <p>The maximum number of additional automatic retries after a failed build. For example, if the
|
|
4811
4856
|
* auto-retry limit is set to 2, CodeBuild will call the <code>RetryBuild</code> API to automatically
|
|
4812
4857
|
* retry your build for up to 2 additional times.</p>
|
|
4813
4858
|
* @public
|
|
4814
4859
|
*/
|
|
4815
|
-
autoRetryLimit?: number;
|
|
4860
|
+
autoRetryLimit?: number | undefined;
|
|
4816
4861
|
}
|
|
4817
4862
|
/**
|
|
4818
4863
|
* @public
|
|
@@ -4822,7 +4867,7 @@ export interface CreateProjectOutput {
|
|
|
4822
4867
|
* <p>Information about the build project that was created.</p>
|
|
4823
4868
|
* @public
|
|
4824
4869
|
*/
|
|
4825
|
-
project?: Project;
|
|
4870
|
+
project?: Project | undefined;
|
|
4826
4871
|
}
|
|
4827
4872
|
/**
|
|
4828
4873
|
* @public
|
|
@@ -4857,7 +4902,7 @@ export interface CreateReportGroupInput {
|
|
|
4857
4902
|
* tags.</p>
|
|
4858
4903
|
* @public
|
|
4859
4904
|
*/
|
|
4860
|
-
tags?: Tag[];
|
|
4905
|
+
tags?: Tag[] | undefined;
|
|
4861
4906
|
}
|
|
4862
4907
|
/**
|
|
4863
4908
|
* @public
|
|
@@ -4869,7 +4914,7 @@ export interface CreateReportGroupOutput {
|
|
|
4869
4914
|
* </p>
|
|
4870
4915
|
* @public
|
|
4871
4916
|
*/
|
|
4872
|
-
reportGroup?: ReportGroup;
|
|
4917
|
+
reportGroup?: ReportGroup | undefined;
|
|
4873
4918
|
}
|
|
4874
4919
|
/**
|
|
4875
4920
|
* @public
|
|
@@ -4890,7 +4935,7 @@ export interface CreateWebhookInput {
|
|
|
4890
4935
|
* </note>
|
|
4891
4936
|
* @public
|
|
4892
4937
|
*/
|
|
4893
|
-
branchFilter?: string;
|
|
4938
|
+
branchFilter?: string | undefined;
|
|
4894
4939
|
/**
|
|
4895
4940
|
* <p>An array of arrays of <code>WebhookFilter</code> objects used to determine which
|
|
4896
4941
|
* webhooks are triggered. At least one <code>WebhookFilter</code> in the array must
|
|
@@ -4900,12 +4945,12 @@ export interface CreateWebhookInput {
|
|
|
4900
4945
|
* filters must pass. </p>
|
|
4901
4946
|
* @public
|
|
4902
4947
|
*/
|
|
4903
|
-
filterGroups?: WebhookFilter[][];
|
|
4948
|
+
filterGroups?: WebhookFilter[][] | undefined;
|
|
4904
4949
|
/**
|
|
4905
4950
|
* <p>Specifies the type of build this webhook will trigger.</p>
|
|
4906
4951
|
* @public
|
|
4907
4952
|
*/
|
|
4908
|
-
buildType?: WebhookBuildType;
|
|
4953
|
+
buildType?: WebhookBuildType | undefined;
|
|
4909
4954
|
/**
|
|
4910
4955
|
* <p>If manualCreation is true, CodeBuild doesn't create a webhook in GitHub and instead returns <code>payloadUrl</code> and
|
|
4911
4956
|
* <code>secret</code> values for the webhook. The <code>payloadUrl</code> and <code>secret</code> values in the output can be
|
|
@@ -4916,7 +4961,7 @@ export interface CreateWebhookInput {
|
|
|
4916
4961
|
* </note>
|
|
4917
4962
|
* @public
|
|
4918
4963
|
*/
|
|
4919
|
-
manualCreation?: boolean;
|
|
4964
|
+
manualCreation?: boolean | undefined;
|
|
4920
4965
|
/**
|
|
4921
4966
|
* <p>The scope configuration for global or organization webhooks.</p>
|
|
4922
4967
|
* <note>
|
|
@@ -4924,7 +4969,7 @@ export interface CreateWebhookInput {
|
|
|
4924
4969
|
* </note>
|
|
4925
4970
|
* @public
|
|
4926
4971
|
*/
|
|
4927
|
-
scopeConfiguration?: ScopeConfiguration;
|
|
4972
|
+
scopeConfiguration?: ScopeConfiguration | undefined;
|
|
4928
4973
|
}
|
|
4929
4974
|
/**
|
|
4930
4975
|
* @public
|
|
@@ -4935,7 +4980,7 @@ export interface CreateWebhookOutput {
|
|
|
4935
4980
|
* CodeBuild.</p>
|
|
4936
4981
|
* @public
|
|
4937
4982
|
*/
|
|
4938
|
-
webhook?: Webhook;
|
|
4983
|
+
webhook?: Webhook | undefined;
|
|
4939
4984
|
}
|
|
4940
4985
|
/**
|
|
4941
4986
|
* <p>There was a problem with the underlying OAuth provider.</p>
|
|
@@ -4979,18 +5024,18 @@ export interface DeleteBuildBatchOutput {
|
|
|
4979
5024
|
* <p>The status code.</p>
|
|
4980
5025
|
* @public
|
|
4981
5026
|
*/
|
|
4982
|
-
statusCode?: string;
|
|
5027
|
+
statusCode?: string | undefined;
|
|
4983
5028
|
/**
|
|
4984
5029
|
* <p>An array of strings that contain the identifiers of the builds that were deleted.</p>
|
|
4985
5030
|
* @public
|
|
4986
5031
|
*/
|
|
4987
|
-
buildsDeleted?: string[];
|
|
5032
|
+
buildsDeleted?: string[] | undefined;
|
|
4988
5033
|
/**
|
|
4989
5034
|
* <p>An array of <code>BuildNotDeleted</code> objects that specify the builds that could not be
|
|
4990
5035
|
* deleted.</p>
|
|
4991
5036
|
* @public
|
|
4992
5037
|
*/
|
|
4993
|
-
buildsNotDeleted?: BuildNotDeleted[];
|
|
5038
|
+
buildsNotDeleted?: BuildNotDeleted[] | undefined;
|
|
4994
5039
|
}
|
|
4995
5040
|
/**
|
|
4996
5041
|
* @public
|
|
@@ -5056,7 +5101,7 @@ export interface DeleteReportGroupInput {
|
|
|
5056
5101
|
* an exception is thrown. </p>
|
|
5057
5102
|
* @public
|
|
5058
5103
|
*/
|
|
5059
|
-
deleteReports?: boolean;
|
|
5104
|
+
deleteReports?: boolean | undefined;
|
|
5060
5105
|
}
|
|
5061
5106
|
/**
|
|
5062
5107
|
* @public
|
|
@@ -5096,7 +5141,7 @@ export interface DeleteSourceCredentialsOutput {
|
|
|
5096
5141
|
* <p> The Amazon Resource Name (ARN) of the token. </p>
|
|
5097
5142
|
* @public
|
|
5098
5143
|
*/
|
|
5099
|
-
arn?: string;
|
|
5144
|
+
arn?: string | undefined;
|
|
5100
5145
|
}
|
|
5101
5146
|
/**
|
|
5102
5147
|
* @public
|
|
@@ -5154,17 +5199,17 @@ export interface DescribeCodeCoveragesInput {
|
|
|
5154
5199
|
* return the beginning of the list, exclude this parameter.</p>
|
|
5155
5200
|
* @public
|
|
5156
5201
|
*/
|
|
5157
|
-
nextToken?: string;
|
|
5202
|
+
nextToken?: string | undefined;
|
|
5158
5203
|
/**
|
|
5159
5204
|
* <p>The maximum number of results to return.</p>
|
|
5160
5205
|
* @public
|
|
5161
5206
|
*/
|
|
5162
|
-
maxResults?: number;
|
|
5207
|
+
maxResults?: number | undefined;
|
|
5163
5208
|
/**
|
|
5164
5209
|
* <p>Specifies if the results are sorted in ascending or descending order.</p>
|
|
5165
5210
|
* @public
|
|
5166
5211
|
*/
|
|
5167
|
-
sortOrder?: SortOrderType;
|
|
5212
|
+
sortOrder?: SortOrderType | undefined;
|
|
5168
5213
|
/**
|
|
5169
5214
|
* <p>Specifies how the results are sorted. Possible values are:</p>
|
|
5170
5215
|
* <dl>
|
|
@@ -5179,17 +5224,17 @@ export interface DescribeCodeCoveragesInput {
|
|
|
5179
5224
|
* </dl>
|
|
5180
5225
|
* @public
|
|
5181
5226
|
*/
|
|
5182
|
-
sortBy?: ReportCodeCoverageSortByType;
|
|
5227
|
+
sortBy?: ReportCodeCoverageSortByType | undefined;
|
|
5183
5228
|
/**
|
|
5184
5229
|
* <p>The minimum line coverage percentage to report.</p>
|
|
5185
5230
|
* @public
|
|
5186
5231
|
*/
|
|
5187
|
-
minLineCoveragePercentage?: number;
|
|
5232
|
+
minLineCoveragePercentage?: number | undefined;
|
|
5188
5233
|
/**
|
|
5189
5234
|
* <p>The maximum line coverage percentage to report.</p>
|
|
5190
5235
|
* @public
|
|
5191
5236
|
*/
|
|
5192
|
-
maxLineCoveragePercentage?: number;
|
|
5237
|
+
maxLineCoveragePercentage?: number | undefined;
|
|
5193
5238
|
}
|
|
5194
5239
|
/**
|
|
5195
5240
|
* <p>Contains code coverage report information.</p>
|
|
@@ -5204,52 +5249,52 @@ export interface CodeCoverage {
|
|
|
5204
5249
|
* <p>The identifier of the code coverage report.</p>
|
|
5205
5250
|
* @public
|
|
5206
5251
|
*/
|
|
5207
|
-
id?: string;
|
|
5252
|
+
id?: string | undefined;
|
|
5208
5253
|
/**
|
|
5209
5254
|
* <p>The ARN of the report.</p>
|
|
5210
5255
|
* @public
|
|
5211
5256
|
*/
|
|
5212
|
-
reportARN?: string;
|
|
5257
|
+
reportARN?: string | undefined;
|
|
5213
5258
|
/**
|
|
5214
5259
|
* <p>The path of the test report file.</p>
|
|
5215
5260
|
* @public
|
|
5216
5261
|
*/
|
|
5217
|
-
filePath?: string;
|
|
5262
|
+
filePath?: string | undefined;
|
|
5218
5263
|
/**
|
|
5219
5264
|
* <p>The percentage of lines that are covered by your tests.</p>
|
|
5220
5265
|
* @public
|
|
5221
5266
|
*/
|
|
5222
|
-
lineCoveragePercentage?: number;
|
|
5267
|
+
lineCoveragePercentage?: number | undefined;
|
|
5223
5268
|
/**
|
|
5224
5269
|
* <p>The number of lines that are covered by your tests.</p>
|
|
5225
5270
|
* @public
|
|
5226
5271
|
*/
|
|
5227
|
-
linesCovered?: number;
|
|
5272
|
+
linesCovered?: number | undefined;
|
|
5228
5273
|
/**
|
|
5229
5274
|
* <p>The number of lines that are not covered by your tests.</p>
|
|
5230
5275
|
* @public
|
|
5231
5276
|
*/
|
|
5232
|
-
linesMissed?: number;
|
|
5277
|
+
linesMissed?: number | undefined;
|
|
5233
5278
|
/**
|
|
5234
5279
|
* <p>The percentage of branches that are covered by your tests.</p>
|
|
5235
5280
|
* @public
|
|
5236
5281
|
*/
|
|
5237
|
-
branchCoveragePercentage?: number;
|
|
5282
|
+
branchCoveragePercentage?: number | undefined;
|
|
5238
5283
|
/**
|
|
5239
5284
|
* <p>The number of conditional branches that are covered by your tests.</p>
|
|
5240
5285
|
* @public
|
|
5241
5286
|
*/
|
|
5242
|
-
branchesCovered?: number;
|
|
5287
|
+
branchesCovered?: number | undefined;
|
|
5243
5288
|
/**
|
|
5244
5289
|
* <p>The number of conditional branches that are not covered by your tests.</p>
|
|
5245
5290
|
* @public
|
|
5246
5291
|
*/
|
|
5247
|
-
branchesMissed?: number;
|
|
5292
|
+
branchesMissed?: number | undefined;
|
|
5248
5293
|
/**
|
|
5249
5294
|
* <p>The date and time that the tests were run.</p>
|
|
5250
5295
|
* @public
|
|
5251
5296
|
*/
|
|
5252
|
-
expired?: Date;
|
|
5297
|
+
expired?: Date | undefined;
|
|
5253
5298
|
}
|
|
5254
5299
|
/**
|
|
5255
5300
|
* @public
|
|
@@ -5260,12 +5305,12 @@ export interface DescribeCodeCoveragesOutput {
|
|
|
5260
5305
|
* call to <code>DescribeCodeCoverages</code> to retrieve the next set of items.</p>
|
|
5261
5306
|
* @public
|
|
5262
5307
|
*/
|
|
5263
|
-
nextToken?: string;
|
|
5308
|
+
nextToken?: string | undefined;
|
|
5264
5309
|
/**
|
|
5265
5310
|
* <p>An array of <code>CodeCoverage</code> objects that contain the results.</p>
|
|
5266
5311
|
* @public
|
|
5267
5312
|
*/
|
|
5268
|
-
codeCoverages?: CodeCoverage[];
|
|
5313
|
+
codeCoverages?: CodeCoverage[] | undefined;
|
|
5269
5314
|
}
|
|
5270
5315
|
/**
|
|
5271
5316
|
* <p>A filter used to return specific types of test cases. In order to pass the filter, the
|
|
@@ -5305,14 +5350,14 @@ export interface TestCaseFilter {
|
|
|
5305
5350
|
* </ul>
|
|
5306
5351
|
* @public
|
|
5307
5352
|
*/
|
|
5308
|
-
status?: string;
|
|
5353
|
+
status?: string | undefined;
|
|
5309
5354
|
/**
|
|
5310
5355
|
* <p>A keyword that is used to filter on the <code>name</code> or the <code>prefix</code>
|
|
5311
5356
|
* of the test cases. Only test cases where the keyword is a substring of the
|
|
5312
5357
|
* <code>name</code> or the <code>prefix</code> will be returned.</p>
|
|
5313
5358
|
* @public
|
|
5314
5359
|
*/
|
|
5315
|
-
keyword?: string;
|
|
5360
|
+
keyword?: string | undefined;
|
|
5316
5361
|
}
|
|
5317
5362
|
/**
|
|
5318
5363
|
* @public
|
|
@@ -5335,7 +5380,7 @@ export interface DescribeTestCasesInput {
|
|
|
5335
5380
|
* </p>
|
|
5336
5381
|
* @public
|
|
5337
5382
|
*/
|
|
5338
|
-
nextToken?: string;
|
|
5383
|
+
nextToken?: string | undefined;
|
|
5339
5384
|
/**
|
|
5340
5385
|
* <p>
|
|
5341
5386
|
* The maximum number of paginated test cases returned per response. Use <code>nextToken</code> to iterate pages in
|
|
@@ -5343,14 +5388,14 @@ export interface DescribeTestCasesInput {
|
|
|
5343
5388
|
* </p>
|
|
5344
5389
|
* @public
|
|
5345
5390
|
*/
|
|
5346
|
-
maxResults?: number;
|
|
5391
|
+
maxResults?: number | undefined;
|
|
5347
5392
|
/**
|
|
5348
5393
|
* <p>
|
|
5349
5394
|
* A <code>TestCaseFilter</code> object used to filter the returned reports.
|
|
5350
5395
|
* </p>
|
|
5351
5396
|
* @public
|
|
5352
5397
|
*/
|
|
5353
|
-
filter?: TestCaseFilter;
|
|
5398
|
+
filter?: TestCaseFilter | undefined;
|
|
5354
5399
|
}
|
|
5355
5400
|
/**
|
|
5356
5401
|
* <p> Information about a test case created using a framework such as NUnit or Cucumber. A
|
|
@@ -5362,47 +5407,47 @@ export interface TestCase {
|
|
|
5362
5407
|
* <p> The ARN of the report to which the test case belongs. </p>
|
|
5363
5408
|
* @public
|
|
5364
5409
|
*/
|
|
5365
|
-
reportArn?: string;
|
|
5410
|
+
reportArn?: string | undefined;
|
|
5366
5411
|
/**
|
|
5367
5412
|
* <p> The path to the raw data file that contains the test result. </p>
|
|
5368
5413
|
* @public
|
|
5369
5414
|
*/
|
|
5370
|
-
testRawDataPath?: string;
|
|
5415
|
+
testRawDataPath?: string | undefined;
|
|
5371
5416
|
/**
|
|
5372
5417
|
* <p> A string that is applied to a series of related test cases. CodeBuild generates the
|
|
5373
5418
|
* prefix. The prefix depends on the framework used to generate the tests. </p>
|
|
5374
5419
|
* @public
|
|
5375
5420
|
*/
|
|
5376
|
-
prefix?: string;
|
|
5421
|
+
prefix?: string | undefined;
|
|
5377
5422
|
/**
|
|
5378
5423
|
* <p> The name of the test case. </p>
|
|
5379
5424
|
* @public
|
|
5380
5425
|
*/
|
|
5381
|
-
name?: string;
|
|
5426
|
+
name?: string | undefined;
|
|
5382
5427
|
/**
|
|
5383
5428
|
* <p> The status returned by the test case after it was run. Valid statuses are
|
|
5384
5429
|
* <code>SUCCEEDED</code>, <code>FAILED</code>, <code>ERROR</code>,
|
|
5385
5430
|
* <code>SKIPPED</code>, and <code>UNKNOWN</code>. </p>
|
|
5386
5431
|
* @public
|
|
5387
5432
|
*/
|
|
5388
|
-
status?: string;
|
|
5433
|
+
status?: string | undefined;
|
|
5389
5434
|
/**
|
|
5390
5435
|
* <p> The number of nanoseconds it took to run this test case. </p>
|
|
5391
5436
|
* @public
|
|
5392
5437
|
*/
|
|
5393
|
-
durationInNanoSeconds?: number;
|
|
5438
|
+
durationInNanoSeconds?: number | undefined;
|
|
5394
5439
|
/**
|
|
5395
5440
|
* <p> A message associated with a test case. For example, an error message or stack trace.
|
|
5396
5441
|
* </p>
|
|
5397
5442
|
* @public
|
|
5398
5443
|
*/
|
|
5399
|
-
message?: string;
|
|
5444
|
+
message?: string | undefined;
|
|
5400
5445
|
/**
|
|
5401
5446
|
* <p> The date and time a test case expires. A test case expires 30 days after it is
|
|
5402
5447
|
* created. An expired test case is not available to view in CodeBuild. </p>
|
|
5403
5448
|
* @public
|
|
5404
5449
|
*/
|
|
5405
|
-
expired?: Date;
|
|
5450
|
+
expired?: Date | undefined;
|
|
5406
5451
|
}
|
|
5407
5452
|
/**
|
|
5408
5453
|
* @public
|
|
@@ -5418,14 +5463,14 @@ export interface DescribeTestCasesOutput {
|
|
|
5418
5463
|
* </p>
|
|
5419
5464
|
* @public
|
|
5420
5465
|
*/
|
|
5421
|
-
nextToken?: string;
|
|
5466
|
+
nextToken?: string | undefined;
|
|
5422
5467
|
/**
|
|
5423
5468
|
* <p>
|
|
5424
5469
|
* The returned list of test cases.
|
|
5425
5470
|
* </p>
|
|
5426
5471
|
* @public
|
|
5427
5472
|
*/
|
|
5428
|
-
testCases?: TestCase[];
|
|
5473
|
+
testCases?: TestCase[] | undefined;
|
|
5429
5474
|
}
|
|
5430
5475
|
/**
|
|
5431
5476
|
* @public
|
|
@@ -5461,7 +5506,7 @@ export interface GetReportGroupTrendInput {
|
|
|
5461
5506
|
* <p>If this parameter is omitted, the most recent 100 reports are analyzed.</p>
|
|
5462
5507
|
* @public
|
|
5463
5508
|
*/
|
|
5464
|
-
numOfReports?: number;
|
|
5509
|
+
numOfReports?: number | undefined;
|
|
5465
5510
|
/**
|
|
5466
5511
|
* <p>The test report value to accumulate. This must be one of the following values:</p>
|
|
5467
5512
|
* <dl>
|
|
@@ -5536,12 +5581,12 @@ export interface ReportWithRawData {
|
|
|
5536
5581
|
* <p>The ARN of the report.</p>
|
|
5537
5582
|
* @public
|
|
5538
5583
|
*/
|
|
5539
|
-
reportArn?: string;
|
|
5584
|
+
reportArn?: string | undefined;
|
|
5540
5585
|
/**
|
|
5541
5586
|
* <p>The value of the requested data field from the report.</p>
|
|
5542
5587
|
* @public
|
|
5543
5588
|
*/
|
|
5544
|
-
data?: string;
|
|
5589
|
+
data?: string | undefined;
|
|
5545
5590
|
}
|
|
5546
5591
|
/**
|
|
5547
5592
|
* <p>Contains trend statistics for a set of reports. The actual values depend on the type of
|
|
@@ -5553,17 +5598,17 @@ export interface ReportGroupTrendStats {
|
|
|
5553
5598
|
* <p>Contains the average of all values analyzed.</p>
|
|
5554
5599
|
* @public
|
|
5555
5600
|
*/
|
|
5556
|
-
average?: string;
|
|
5601
|
+
average?: string | undefined;
|
|
5557
5602
|
/**
|
|
5558
5603
|
* <p>Contains the maximum value analyzed.</p>
|
|
5559
5604
|
* @public
|
|
5560
5605
|
*/
|
|
5561
|
-
max?: string;
|
|
5606
|
+
max?: string | undefined;
|
|
5562
5607
|
/**
|
|
5563
5608
|
* <p>Contains the minimum value analyzed.</p>
|
|
5564
5609
|
* @public
|
|
5565
5610
|
*/
|
|
5566
|
-
min?: string;
|
|
5611
|
+
min?: string | undefined;
|
|
5567
5612
|
}
|
|
5568
5613
|
/**
|
|
5569
5614
|
* @public
|
|
@@ -5573,12 +5618,12 @@ export interface GetReportGroupTrendOutput {
|
|
|
5573
5618
|
* <p>Contains the accumulated trend data.</p>
|
|
5574
5619
|
* @public
|
|
5575
5620
|
*/
|
|
5576
|
-
stats?: ReportGroupTrendStats;
|
|
5621
|
+
stats?: ReportGroupTrendStats | undefined;
|
|
5577
5622
|
/**
|
|
5578
5623
|
* <p>An array that contains the raw data for each report.</p>
|
|
5579
5624
|
* @public
|
|
5580
5625
|
*/
|
|
5581
|
-
rawData?: ReportWithRawData[];
|
|
5626
|
+
rawData?: ReportWithRawData[] | undefined;
|
|
5582
5627
|
}
|
|
5583
5628
|
/**
|
|
5584
5629
|
* @public
|
|
@@ -5598,7 +5643,7 @@ export interface GetResourcePolicyOutput {
|
|
|
5598
5643
|
* <p> The resource policy for the resource identified by the input ARN parameter. </p>
|
|
5599
5644
|
* @public
|
|
5600
5645
|
*/
|
|
5601
|
-
policy?: string;
|
|
5646
|
+
policy?: string | undefined;
|
|
5602
5647
|
}
|
|
5603
5648
|
/**
|
|
5604
5649
|
* @public
|
|
@@ -5624,7 +5669,7 @@ export interface ImportSourceCredentialsInput {
|
|
|
5624
5669
|
* is not valid for other types of source providers or connections. </p>
|
|
5625
5670
|
* @public
|
|
5626
5671
|
*/
|
|
5627
|
-
username?: string;
|
|
5672
|
+
username?: string | undefined;
|
|
5628
5673
|
/**
|
|
5629
5674
|
* <p> For GitHub or GitHub Enterprise, this is the personal access token. For Bitbucket,
|
|
5630
5675
|
* this is either the access token or the app password. For the <code>authType</code> CODECONNECTIONS,
|
|
@@ -5650,7 +5695,7 @@ export interface ImportSourceCredentialsInput {
|
|
|
5650
5695
|
* value is <code>true</code>. </p>
|
|
5651
5696
|
* @public
|
|
5652
5697
|
*/
|
|
5653
|
-
shouldOverwrite?: boolean;
|
|
5698
|
+
shouldOverwrite?: boolean | undefined;
|
|
5654
5699
|
}
|
|
5655
5700
|
/**
|
|
5656
5701
|
* @public
|
|
@@ -5660,7 +5705,7 @@ export interface ImportSourceCredentialsOutput {
|
|
|
5660
5705
|
* <p> The Amazon Resource Name (ARN) of the token. </p>
|
|
5661
5706
|
* @public
|
|
5662
5707
|
*/
|
|
5663
|
-
arn?: string;
|
|
5708
|
+
arn?: string | undefined;
|
|
5664
5709
|
}
|
|
5665
5710
|
/**
|
|
5666
5711
|
* @public
|
|
@@ -5685,12 +5730,12 @@ export interface ListBuildBatchesInput {
|
|
|
5685
5730
|
* <p>A <code>BuildBatchFilter</code> object that specifies the filters for the search.</p>
|
|
5686
5731
|
* @public
|
|
5687
5732
|
*/
|
|
5688
|
-
filter?: BuildBatchFilter;
|
|
5733
|
+
filter?: BuildBatchFilter | undefined;
|
|
5689
5734
|
/**
|
|
5690
5735
|
* <p>The maximum number of results to return.</p>
|
|
5691
5736
|
* @public
|
|
5692
5737
|
*/
|
|
5693
|
-
maxResults?: number;
|
|
5738
|
+
maxResults?: number | undefined;
|
|
5694
5739
|
/**
|
|
5695
5740
|
* <p>Specifies the sort order of the returned items. Valid values include:</p>
|
|
5696
5741
|
* <ul>
|
|
@@ -5705,14 +5750,14 @@ export interface ListBuildBatchesInput {
|
|
|
5705
5750
|
* </ul>
|
|
5706
5751
|
* @public
|
|
5707
5752
|
*/
|
|
5708
|
-
sortOrder?: SortOrderType;
|
|
5753
|
+
sortOrder?: SortOrderType | undefined;
|
|
5709
5754
|
/**
|
|
5710
5755
|
* <p>The <code>nextToken</code> value returned from a previous call to
|
|
5711
5756
|
* <code>ListBuildBatches</code>. This specifies the next item to return. To return the
|
|
5712
5757
|
* beginning of the list, exclude this parameter.</p>
|
|
5713
5758
|
* @public
|
|
5714
5759
|
*/
|
|
5715
|
-
nextToken?: string;
|
|
5760
|
+
nextToken?: string | undefined;
|
|
5716
5761
|
}
|
|
5717
5762
|
/**
|
|
5718
5763
|
* @public
|
|
@@ -5722,13 +5767,13 @@ export interface ListBuildBatchesOutput {
|
|
|
5722
5767
|
* <p>An array of strings that contains the batch build identifiers.</p>
|
|
5723
5768
|
* @public
|
|
5724
5769
|
*/
|
|
5725
|
-
ids?: string[];
|
|
5770
|
+
ids?: string[] | undefined;
|
|
5726
5771
|
/**
|
|
5727
5772
|
* <p>If there are more items to return, this contains a token that is passed to a subsequent
|
|
5728
5773
|
* call to <code>ListBuildBatches</code> to retrieve the next set of items.</p>
|
|
5729
5774
|
* @public
|
|
5730
5775
|
*/
|
|
5731
|
-
nextToken?: string;
|
|
5776
|
+
nextToken?: string | undefined;
|
|
5732
5777
|
}
|
|
5733
5778
|
/**
|
|
5734
5779
|
* @public
|
|
@@ -5738,17 +5783,17 @@ export interface ListBuildBatchesForProjectInput {
|
|
|
5738
5783
|
* <p>The name of the project.</p>
|
|
5739
5784
|
* @public
|
|
5740
5785
|
*/
|
|
5741
|
-
projectName?: string;
|
|
5786
|
+
projectName?: string | undefined;
|
|
5742
5787
|
/**
|
|
5743
5788
|
* <p>A <code>BuildBatchFilter</code> object that specifies the filters for the search.</p>
|
|
5744
5789
|
* @public
|
|
5745
5790
|
*/
|
|
5746
|
-
filter?: BuildBatchFilter;
|
|
5791
|
+
filter?: BuildBatchFilter | undefined;
|
|
5747
5792
|
/**
|
|
5748
5793
|
* <p>The maximum number of results to return.</p>
|
|
5749
5794
|
* @public
|
|
5750
5795
|
*/
|
|
5751
|
-
maxResults?: number;
|
|
5796
|
+
maxResults?: number | undefined;
|
|
5752
5797
|
/**
|
|
5753
5798
|
* <p>Specifies the sort order of the returned items. Valid values include:</p>
|
|
5754
5799
|
* <ul>
|
|
@@ -5765,14 +5810,14 @@ export interface ListBuildBatchesForProjectInput {
|
|
|
5765
5810
|
* </ul>
|
|
5766
5811
|
* @public
|
|
5767
5812
|
*/
|
|
5768
|
-
sortOrder?: SortOrderType;
|
|
5813
|
+
sortOrder?: SortOrderType | undefined;
|
|
5769
5814
|
/**
|
|
5770
5815
|
* <p>The <code>nextToken</code> value returned from a previous call to
|
|
5771
5816
|
* <code>ListBuildBatchesForProject</code>. This specifies the next item to return. To return the
|
|
5772
5817
|
* beginning of the list, exclude this parameter.</p>
|
|
5773
5818
|
* @public
|
|
5774
5819
|
*/
|
|
5775
|
-
nextToken?: string;
|
|
5820
|
+
nextToken?: string | undefined;
|
|
5776
5821
|
}
|
|
5777
5822
|
/**
|
|
5778
5823
|
* @public
|
|
@@ -5782,14 +5827,14 @@ export interface ListBuildBatchesForProjectOutput {
|
|
|
5782
5827
|
* <p>An array of strings that contains the batch build identifiers.</p>
|
|
5783
5828
|
* @public
|
|
5784
5829
|
*/
|
|
5785
|
-
ids?: string[];
|
|
5830
|
+
ids?: string[] | undefined;
|
|
5786
5831
|
/**
|
|
5787
5832
|
* <p>If there are more items to return, this contains a token that is passed to a
|
|
5788
5833
|
* subsequent call to <code>ListBuildBatchesForProject</code> to retrieve the next set of
|
|
5789
5834
|
* items.</p>
|
|
5790
5835
|
* @public
|
|
5791
5836
|
*/
|
|
5792
|
-
nextToken?: string;
|
|
5837
|
+
nextToken?: string | undefined;
|
|
5793
5838
|
}
|
|
5794
5839
|
/**
|
|
5795
5840
|
* @public
|
|
@@ -5811,7 +5856,7 @@ export interface ListBuildsInput {
|
|
|
5811
5856
|
* </ul>
|
|
5812
5857
|
* @public
|
|
5813
5858
|
*/
|
|
5814
|
-
sortOrder?: SortOrderType;
|
|
5859
|
+
sortOrder?: SortOrderType | undefined;
|
|
5815
5860
|
/**
|
|
5816
5861
|
* <p>During a previous call, if there are more than 100 items in the list, only the first
|
|
5817
5862
|
* 100 items are returned, along with a unique string called a
|
|
@@ -5821,7 +5866,7 @@ export interface ListBuildsInput {
|
|
|
5821
5866
|
* until no more next tokens are returned.</p>
|
|
5822
5867
|
* @public
|
|
5823
5868
|
*/
|
|
5824
|
-
nextToken?: string;
|
|
5869
|
+
nextToken?: string | undefined;
|
|
5825
5870
|
}
|
|
5826
5871
|
/**
|
|
5827
5872
|
* @public
|
|
@@ -5831,7 +5876,7 @@ export interface ListBuildsOutput {
|
|
|
5831
5876
|
* <p>A list of build IDs, with each build ID representing a single build.</p>
|
|
5832
5877
|
* @public
|
|
5833
5878
|
*/
|
|
5834
|
-
ids?: string[];
|
|
5879
|
+
ids?: string[] | undefined;
|
|
5835
5880
|
/**
|
|
5836
5881
|
* <p>If there are more than 100 items in the list, only the first 100 items are returned,
|
|
5837
5882
|
* along with a unique string called a <i>nextToken</i>. To get the next
|
|
@@ -5839,7 +5884,7 @@ export interface ListBuildsOutput {
|
|
|
5839
5884
|
* call.</p>
|
|
5840
5885
|
* @public
|
|
5841
5886
|
*/
|
|
5842
|
-
nextToken?: string;
|
|
5887
|
+
nextToken?: string | undefined;
|
|
5843
5888
|
}
|
|
5844
5889
|
/**
|
|
5845
5890
|
* @public
|
|
@@ -5868,7 +5913,7 @@ export interface ListBuildsForProjectInput {
|
|
|
5868
5913
|
* error. </p>
|
|
5869
5914
|
* @public
|
|
5870
5915
|
*/
|
|
5871
|
-
sortOrder?: SortOrderType;
|
|
5916
|
+
sortOrder?: SortOrderType | undefined;
|
|
5872
5917
|
/**
|
|
5873
5918
|
* <p>During a previous call, if there are more than 100 items in the list, only the first
|
|
5874
5919
|
* 100 items are returned, along with a unique string called a
|
|
@@ -5878,7 +5923,7 @@ export interface ListBuildsForProjectInput {
|
|
|
5878
5923
|
* until no more next tokens are returned.</p>
|
|
5879
5924
|
* @public
|
|
5880
5925
|
*/
|
|
5881
|
-
nextToken?: string;
|
|
5926
|
+
nextToken?: string | undefined;
|
|
5882
5927
|
}
|
|
5883
5928
|
/**
|
|
5884
5929
|
* @public
|
|
@@ -5889,7 +5934,7 @@ export interface ListBuildsForProjectOutput {
|
|
|
5889
5934
|
* single build.</p>
|
|
5890
5935
|
* @public
|
|
5891
5936
|
*/
|
|
5892
|
-
ids?: string[];
|
|
5937
|
+
ids?: string[] | undefined;
|
|
5893
5938
|
/**
|
|
5894
5939
|
* <p>If there are more than 100 items in the list, only the first 100 items are returned,
|
|
5895
5940
|
* along with a unique string called a <i>nextToken</i>. To get the next
|
|
@@ -5897,7 +5942,7 @@ export interface ListBuildsForProjectOutput {
|
|
|
5897
5942
|
* call.</p>
|
|
5898
5943
|
* @public
|
|
5899
5944
|
*/
|
|
5900
|
-
nextToken?: string;
|
|
5945
|
+
nextToken?: string | undefined;
|
|
5901
5946
|
}
|
|
5902
5947
|
/**
|
|
5903
5948
|
* @public
|
|
@@ -5913,17 +5958,17 @@ export interface EnvironmentImage {
|
|
|
5913
5958
|
* <p>The name of the Docker image.</p>
|
|
5914
5959
|
* @public
|
|
5915
5960
|
*/
|
|
5916
|
-
name?: string;
|
|
5961
|
+
name?: string | undefined;
|
|
5917
5962
|
/**
|
|
5918
5963
|
* <p>The description of the Docker image.</p>
|
|
5919
5964
|
* @public
|
|
5920
5965
|
*/
|
|
5921
|
-
description?: string;
|
|
5966
|
+
description?: string | undefined;
|
|
5922
5967
|
/**
|
|
5923
5968
|
* <p>A list of environment image versions.</p>
|
|
5924
5969
|
* @public
|
|
5925
5970
|
*/
|
|
5926
|
-
versions?: string[];
|
|
5971
|
+
versions?: string[] | undefined;
|
|
5927
5972
|
}
|
|
5928
5973
|
/**
|
|
5929
5974
|
* @public
|
|
@@ -5955,13 +6000,13 @@ export interface EnvironmentLanguage {
|
|
|
5955
6000
|
* <p>The programming language for the Docker images.</p>
|
|
5956
6001
|
* @public
|
|
5957
6002
|
*/
|
|
5958
|
-
language?: LanguageType;
|
|
6003
|
+
language?: LanguageType | undefined;
|
|
5959
6004
|
/**
|
|
5960
6005
|
* <p>The list of Docker images that are related by the specified programming
|
|
5961
6006
|
* language.</p>
|
|
5962
6007
|
* @public
|
|
5963
6008
|
*/
|
|
5964
|
-
images?: EnvironmentImage[];
|
|
6009
|
+
images?: EnvironmentImage[] | undefined;
|
|
5965
6010
|
}
|
|
5966
6011
|
/**
|
|
5967
6012
|
* @public
|
|
@@ -5986,13 +6031,13 @@ export interface EnvironmentPlatform {
|
|
|
5986
6031
|
* <p>The platform's name.</p>
|
|
5987
6032
|
* @public
|
|
5988
6033
|
*/
|
|
5989
|
-
platform?: PlatformType;
|
|
6034
|
+
platform?: PlatformType | undefined;
|
|
5990
6035
|
/**
|
|
5991
6036
|
* <p>The list of programming languages that are available for the specified
|
|
5992
6037
|
* platform.</p>
|
|
5993
6038
|
* @public
|
|
5994
6039
|
*/
|
|
5995
|
-
languages?: EnvironmentLanguage[];
|
|
6040
|
+
languages?: EnvironmentLanguage[] | undefined;
|
|
5996
6041
|
}
|
|
5997
6042
|
/**
|
|
5998
6043
|
* @public
|
|
@@ -6003,7 +6048,7 @@ export interface ListCuratedEnvironmentImagesOutput {
|
|
|
6003
6048
|
* CodeBuild.</p>
|
|
6004
6049
|
* @public
|
|
6005
6050
|
*/
|
|
6006
|
-
platforms?: EnvironmentPlatform[];
|
|
6051
|
+
platforms?: EnvironmentPlatform[] | undefined;
|
|
6007
6052
|
}
|
|
6008
6053
|
/**
|
|
6009
6054
|
* @public
|
|
@@ -6031,13 +6076,13 @@ export interface ListFleetsInput {
|
|
|
6031
6076
|
* until no more next tokens are returned.</p>
|
|
6032
6077
|
* @public
|
|
6033
6078
|
*/
|
|
6034
|
-
nextToken?: string;
|
|
6079
|
+
nextToken?: string | undefined;
|
|
6035
6080
|
/**
|
|
6036
6081
|
* <p>The maximum number of paginated compute fleets returned per response. Use
|
|
6037
6082
|
* <code>nextToken</code> to iterate pages in the list of returned compute fleets.</p>
|
|
6038
6083
|
* @public
|
|
6039
6084
|
*/
|
|
6040
|
-
maxResults?: number;
|
|
6085
|
+
maxResults?: number | undefined;
|
|
6041
6086
|
/**
|
|
6042
6087
|
* <p>The order in which to list compute fleets. Valid values include:</p>
|
|
6043
6088
|
* <ul>
|
|
@@ -6054,7 +6099,7 @@ export interface ListFleetsInput {
|
|
|
6054
6099
|
* names.</p>
|
|
6055
6100
|
* @public
|
|
6056
6101
|
*/
|
|
6057
|
-
sortOrder?: SortOrderType;
|
|
6102
|
+
sortOrder?: SortOrderType | undefined;
|
|
6058
6103
|
/**
|
|
6059
6104
|
* <p>The criterion to be used to list compute fleet names. Valid values include:</p>
|
|
6060
6105
|
* <ul>
|
|
@@ -6077,7 +6122,7 @@ export interface ListFleetsInput {
|
|
|
6077
6122
|
* based on the preceding criteria.</p>
|
|
6078
6123
|
* @public
|
|
6079
6124
|
*/
|
|
6080
|
-
sortBy?: FleetSortByType;
|
|
6125
|
+
sortBy?: FleetSortByType | undefined;
|
|
6081
6126
|
}
|
|
6082
6127
|
/**
|
|
6083
6128
|
* @public
|
|
@@ -6090,12 +6135,12 @@ export interface ListFleetsOutput {
|
|
|
6090
6135
|
* call.</p>
|
|
6091
6136
|
* @public
|
|
6092
6137
|
*/
|
|
6093
|
-
nextToken?: string;
|
|
6138
|
+
nextToken?: string | undefined;
|
|
6094
6139
|
/**
|
|
6095
6140
|
* <p>The list of compute fleet names.</p>
|
|
6096
6141
|
* @public
|
|
6097
6142
|
*/
|
|
6098
|
-
fleets?: string[];
|
|
6143
|
+
fleets?: string[] | undefined;
|
|
6099
6144
|
}
|
|
6100
6145
|
/**
|
|
6101
6146
|
* @public
|
|
@@ -6136,7 +6181,7 @@ export interface ListProjectsInput {
|
|
|
6136
6181
|
* based on the preceding criteria.</p>
|
|
6137
6182
|
* @public
|
|
6138
6183
|
*/
|
|
6139
|
-
sortBy?: ProjectSortByType;
|
|
6184
|
+
sortBy?: ProjectSortByType | undefined;
|
|
6140
6185
|
/**
|
|
6141
6186
|
* <p>The order in which to list build projects. Valid values include:</p>
|
|
6142
6187
|
* <ul>
|
|
@@ -6153,7 +6198,7 @@ export interface ListProjectsInput {
|
|
|
6153
6198
|
* names.</p>
|
|
6154
6199
|
* @public
|
|
6155
6200
|
*/
|
|
6156
|
-
sortOrder?: SortOrderType;
|
|
6201
|
+
sortOrder?: SortOrderType | undefined;
|
|
6157
6202
|
/**
|
|
6158
6203
|
* <p>During a previous call, if there are more than 100 items in the list, only the first
|
|
6159
6204
|
* 100 items are returned, along with a unique string called a
|
|
@@ -6163,7 +6208,7 @@ export interface ListProjectsInput {
|
|
|
6163
6208
|
* until no more next tokens are returned.</p>
|
|
6164
6209
|
* @public
|
|
6165
6210
|
*/
|
|
6166
|
-
nextToken?: string;
|
|
6211
|
+
nextToken?: string | undefined;
|
|
6167
6212
|
}
|
|
6168
6213
|
/**
|
|
6169
6214
|
* @public
|
|
@@ -6176,13 +6221,13 @@ export interface ListProjectsOutput {
|
|
|
6176
6221
|
* call.</p>
|
|
6177
6222
|
* @public
|
|
6178
6223
|
*/
|
|
6179
|
-
nextToken?: string;
|
|
6224
|
+
nextToken?: string | undefined;
|
|
6180
6225
|
/**
|
|
6181
6226
|
* <p>The list of build project names, with each build project name representing a single
|
|
6182
6227
|
* build project.</p>
|
|
6183
6228
|
* @public
|
|
6184
6229
|
*/
|
|
6185
|
-
projects?: string[];
|
|
6230
|
+
projects?: string[] | undefined;
|
|
6186
6231
|
}
|
|
6187
6232
|
/**
|
|
6188
6233
|
* @public
|
|
@@ -6208,7 +6253,7 @@ export interface ListReportGroupsInput {
|
|
|
6208
6253
|
* </p>
|
|
6209
6254
|
* @public
|
|
6210
6255
|
*/
|
|
6211
|
-
sortOrder?: SortOrderType;
|
|
6256
|
+
sortOrder?: SortOrderType | undefined;
|
|
6212
6257
|
/**
|
|
6213
6258
|
* <p>
|
|
6214
6259
|
* The criterion to be used to list build report groups. Valid values include:
|
|
@@ -6230,7 +6275,7 @@ export interface ListReportGroupsInput {
|
|
|
6230
6275
|
* </ul>
|
|
6231
6276
|
* @public
|
|
6232
6277
|
*/
|
|
6233
|
-
sortBy?: ReportGroupSortByType;
|
|
6278
|
+
sortBy?: ReportGroupSortByType | undefined;
|
|
6234
6279
|
/**
|
|
6235
6280
|
* <p>
|
|
6236
6281
|
* During a previous call, the maximum number of items that can be returned is the value specified in
|
|
@@ -6241,7 +6286,7 @@ export interface ListReportGroupsInput {
|
|
|
6241
6286
|
* </p>
|
|
6242
6287
|
* @public
|
|
6243
6288
|
*/
|
|
6244
|
-
nextToken?: string;
|
|
6289
|
+
nextToken?: string | undefined;
|
|
6245
6290
|
/**
|
|
6246
6291
|
* <p>
|
|
6247
6292
|
* The maximum number of paginated report groups returned per response. Use <code>nextToken</code> to iterate pages in
|
|
@@ -6249,7 +6294,7 @@ export interface ListReportGroupsInput {
|
|
|
6249
6294
|
* </p>
|
|
6250
6295
|
* @public
|
|
6251
6296
|
*/
|
|
6252
|
-
maxResults?: number;
|
|
6297
|
+
maxResults?: number | undefined;
|
|
6253
6298
|
}
|
|
6254
6299
|
/**
|
|
6255
6300
|
* @public
|
|
@@ -6265,14 +6310,14 @@ export interface ListReportGroupsOutput {
|
|
|
6265
6310
|
* </p>
|
|
6266
6311
|
* @public
|
|
6267
6312
|
*/
|
|
6268
|
-
nextToken?: string;
|
|
6313
|
+
nextToken?: string | undefined;
|
|
6269
6314
|
/**
|
|
6270
6315
|
* <p>
|
|
6271
6316
|
* The list of ARNs for the report groups in the current Amazon Web Services account.
|
|
6272
6317
|
* </p>
|
|
6273
6318
|
* @public
|
|
6274
6319
|
*/
|
|
6275
|
-
reportGroups?: string[];
|
|
6320
|
+
reportGroups?: string[] | undefined;
|
|
6276
6321
|
}
|
|
6277
6322
|
/**
|
|
6278
6323
|
* <p> A filter used to return reports with the status specified by the input
|
|
@@ -6284,7 +6329,7 @@ export interface ReportFilter {
|
|
|
6284
6329
|
* <p> The status used to filter reports. You can filter using one status only. </p>
|
|
6285
6330
|
* @public
|
|
6286
6331
|
*/
|
|
6287
|
-
status?: ReportStatusType;
|
|
6332
|
+
status?: ReportStatusType | undefined;
|
|
6288
6333
|
}
|
|
6289
6334
|
/**
|
|
6290
6335
|
* @public
|
|
@@ -6308,7 +6353,7 @@ export interface ListReportsInput {
|
|
|
6308
6353
|
* </ul>
|
|
6309
6354
|
* @public
|
|
6310
6355
|
*/
|
|
6311
|
-
sortOrder?: SortOrderType;
|
|
6356
|
+
sortOrder?: SortOrderType | undefined;
|
|
6312
6357
|
/**
|
|
6313
6358
|
* <p>
|
|
6314
6359
|
* During a previous call, the maximum number of items that can be returned is the value specified in
|
|
@@ -6319,7 +6364,7 @@ export interface ListReportsInput {
|
|
|
6319
6364
|
* </p>
|
|
6320
6365
|
* @public
|
|
6321
6366
|
*/
|
|
6322
|
-
nextToken?: string;
|
|
6367
|
+
nextToken?: string | undefined;
|
|
6323
6368
|
/**
|
|
6324
6369
|
* <p>
|
|
6325
6370
|
* The maximum number of paginated reports returned per response. Use <code>nextToken</code> to iterate pages in
|
|
@@ -6327,14 +6372,14 @@ export interface ListReportsInput {
|
|
|
6327
6372
|
* </p>
|
|
6328
6373
|
* @public
|
|
6329
6374
|
*/
|
|
6330
|
-
maxResults?: number;
|
|
6375
|
+
maxResults?: number | undefined;
|
|
6331
6376
|
/**
|
|
6332
6377
|
* <p>
|
|
6333
6378
|
* A <code>ReportFilter</code> object used to filter the returned reports.
|
|
6334
6379
|
* </p>
|
|
6335
6380
|
* @public
|
|
6336
6381
|
*/
|
|
6337
|
-
filter?: ReportFilter;
|
|
6382
|
+
filter?: ReportFilter | undefined;
|
|
6338
6383
|
}
|
|
6339
6384
|
/**
|
|
6340
6385
|
* @public
|
|
@@ -6350,14 +6395,14 @@ export interface ListReportsOutput {
|
|
|
6350
6395
|
* </p>
|
|
6351
6396
|
* @public
|
|
6352
6397
|
*/
|
|
6353
|
-
nextToken?: string;
|
|
6398
|
+
nextToken?: string | undefined;
|
|
6354
6399
|
/**
|
|
6355
6400
|
* <p>
|
|
6356
6401
|
* The list of returned ARNs for the reports in the current Amazon Web Services account.
|
|
6357
6402
|
* </p>
|
|
6358
6403
|
* @public
|
|
6359
6404
|
*/
|
|
6360
|
-
reports?: string[];
|
|
6405
|
+
reports?: string[] | undefined;
|
|
6361
6406
|
}
|
|
6362
6407
|
/**
|
|
6363
6408
|
* @public
|
|
@@ -6380,14 +6425,14 @@ export interface ListReportsForReportGroupInput {
|
|
|
6380
6425
|
* </p>
|
|
6381
6426
|
* @public
|
|
6382
6427
|
*/
|
|
6383
|
-
nextToken?: string;
|
|
6428
|
+
nextToken?: string | undefined;
|
|
6384
6429
|
/**
|
|
6385
6430
|
* <p>
|
|
6386
6431
|
* Use to specify whether the results are returned in ascending or descending order.
|
|
6387
6432
|
* </p>
|
|
6388
6433
|
* @public
|
|
6389
6434
|
*/
|
|
6390
|
-
sortOrder?: SortOrderType;
|
|
6435
|
+
sortOrder?: SortOrderType | undefined;
|
|
6391
6436
|
/**
|
|
6392
6437
|
* <p>
|
|
6393
6438
|
* The maximum number of paginated reports in this report group returned per response. Use <code>nextToken</code> to iterate pages in
|
|
@@ -6395,14 +6440,14 @@ export interface ListReportsForReportGroupInput {
|
|
|
6395
6440
|
* </p>
|
|
6396
6441
|
* @public
|
|
6397
6442
|
*/
|
|
6398
|
-
maxResults?: number;
|
|
6443
|
+
maxResults?: number | undefined;
|
|
6399
6444
|
/**
|
|
6400
6445
|
* <p>
|
|
6401
6446
|
* A <code>ReportFilter</code> object used to filter the returned reports.
|
|
6402
6447
|
* </p>
|
|
6403
6448
|
* @public
|
|
6404
6449
|
*/
|
|
6405
|
-
filter?: ReportFilter;
|
|
6450
|
+
filter?: ReportFilter | undefined;
|
|
6406
6451
|
}
|
|
6407
6452
|
/**
|
|
6408
6453
|
* @public
|
|
@@ -6418,14 +6463,14 @@ export interface ListReportsForReportGroupOutput {
|
|
|
6418
6463
|
* </p>
|
|
6419
6464
|
* @public
|
|
6420
6465
|
*/
|
|
6421
|
-
nextToken?: string;
|
|
6466
|
+
nextToken?: string | undefined;
|
|
6422
6467
|
/**
|
|
6423
6468
|
* <p>
|
|
6424
6469
|
* The list of report ARNs.
|
|
6425
6470
|
* </p>
|
|
6426
6471
|
* @public
|
|
6427
6472
|
*/
|
|
6428
|
-
reports?: string[];
|
|
6473
|
+
reports?: string[] | undefined;
|
|
6429
6474
|
}
|
|
6430
6475
|
/**
|
|
6431
6476
|
* @public
|
|
@@ -6459,7 +6504,7 @@ export interface ListSharedProjectsInput {
|
|
|
6459
6504
|
* </ul>
|
|
6460
6505
|
* @public
|
|
6461
6506
|
*/
|
|
6462
|
-
sortBy?: SharedResourceSortByType;
|
|
6507
|
+
sortBy?: SharedResourceSortByType | undefined;
|
|
6463
6508
|
/**
|
|
6464
6509
|
* <p>The order in which to list shared build projects. Valid values include:</p>
|
|
6465
6510
|
* <ul>
|
|
@@ -6474,14 +6519,14 @@ export interface ListSharedProjectsInput {
|
|
|
6474
6519
|
* </ul>
|
|
6475
6520
|
* @public
|
|
6476
6521
|
*/
|
|
6477
|
-
sortOrder?: SortOrderType;
|
|
6522
|
+
sortOrder?: SortOrderType | undefined;
|
|
6478
6523
|
/**
|
|
6479
6524
|
* <p> The maximum number of paginated shared build projects returned per response. Use
|
|
6480
6525
|
* <code>nextToken</code> to iterate pages in the list of returned <code>Project</code>
|
|
6481
6526
|
* objects. The default value is 100. </p>
|
|
6482
6527
|
* @public
|
|
6483
6528
|
*/
|
|
6484
|
-
maxResults?: number;
|
|
6529
|
+
maxResults?: number | undefined;
|
|
6485
6530
|
/**
|
|
6486
6531
|
* <p> During a previous call, the maximum number of items that can be returned is the value
|
|
6487
6532
|
* specified in <code>maxResults</code>. If there more items in the list, then a unique
|
|
@@ -6491,7 +6536,7 @@ export interface ListSharedProjectsInput {
|
|
|
6491
6536
|
* token that is returned, until no more next tokens are returned. </p>
|
|
6492
6537
|
* @public
|
|
6493
6538
|
*/
|
|
6494
|
-
nextToken?: string;
|
|
6539
|
+
nextToken?: string | undefined;
|
|
6495
6540
|
}
|
|
6496
6541
|
/**
|
|
6497
6542
|
* @public
|
|
@@ -6506,13 +6551,13 @@ export interface ListSharedProjectsOutput {
|
|
|
6506
6551
|
* token that is returned, until no more next tokens are returned. </p>
|
|
6507
6552
|
* @public
|
|
6508
6553
|
*/
|
|
6509
|
-
nextToken?: string;
|
|
6554
|
+
nextToken?: string | undefined;
|
|
6510
6555
|
/**
|
|
6511
6556
|
* <p> The list of ARNs for the build projects shared with the current Amazon Web Services account or user.
|
|
6512
6557
|
* </p>
|
|
6513
6558
|
* @public
|
|
6514
6559
|
*/
|
|
6515
|
-
projects?: string[];
|
|
6560
|
+
projects?: string[] | undefined;
|
|
6516
6561
|
}
|
|
6517
6562
|
/**
|
|
6518
6563
|
* @public
|
|
@@ -6532,7 +6577,7 @@ export interface ListSharedReportGroupsInput {
|
|
|
6532
6577
|
* </ul>
|
|
6533
6578
|
* @public
|
|
6534
6579
|
*/
|
|
6535
|
-
sortOrder?: SortOrderType;
|
|
6580
|
+
sortOrder?: SortOrderType | undefined;
|
|
6536
6581
|
/**
|
|
6537
6582
|
* <p> The criterion to be used to list report groups shared with the current Amazon Web Services account or
|
|
6538
6583
|
* user. Valid values include: </p>
|
|
@@ -6549,7 +6594,7 @@ export interface ListSharedReportGroupsInput {
|
|
|
6549
6594
|
* </ul>
|
|
6550
6595
|
* @public
|
|
6551
6596
|
*/
|
|
6552
|
-
sortBy?: SharedResourceSortByType;
|
|
6597
|
+
sortBy?: SharedResourceSortByType | undefined;
|
|
6553
6598
|
/**
|
|
6554
6599
|
* <p> During a previous call, the maximum number of items that can be returned is the value
|
|
6555
6600
|
* specified in <code>maxResults</code>. If there more items in the list, then a unique
|
|
@@ -6559,14 +6604,14 @@ export interface ListSharedReportGroupsInput {
|
|
|
6559
6604
|
* token that is returned, until no more next tokens are returned. </p>
|
|
6560
6605
|
* @public
|
|
6561
6606
|
*/
|
|
6562
|
-
nextToken?: string;
|
|
6607
|
+
nextToken?: string | undefined;
|
|
6563
6608
|
/**
|
|
6564
6609
|
* <p> The maximum number of paginated shared report groups per response. Use
|
|
6565
6610
|
* <code>nextToken</code> to iterate pages in the list of returned
|
|
6566
6611
|
* <code>ReportGroup</code> objects. The default value is 100. </p>
|
|
6567
6612
|
* @public
|
|
6568
6613
|
*/
|
|
6569
|
-
maxResults?: number;
|
|
6614
|
+
maxResults?: number | undefined;
|
|
6570
6615
|
}
|
|
6571
6616
|
/**
|
|
6572
6617
|
* @public
|
|
@@ -6581,13 +6626,13 @@ export interface ListSharedReportGroupsOutput {
|
|
|
6581
6626
|
* token that is returned, until no more next tokens are returned. </p>
|
|
6582
6627
|
* @public
|
|
6583
6628
|
*/
|
|
6584
|
-
nextToken?: string;
|
|
6629
|
+
nextToken?: string | undefined;
|
|
6585
6630
|
/**
|
|
6586
6631
|
* <p> The list of ARNs for the report groups shared with the current Amazon Web Services account or user.
|
|
6587
6632
|
* </p>
|
|
6588
6633
|
* @public
|
|
6589
6634
|
*/
|
|
6590
|
-
reportGroups?: string[];
|
|
6635
|
+
reportGroups?: string[] | undefined;
|
|
6591
6636
|
}
|
|
6592
6637
|
/**
|
|
6593
6638
|
* @public
|
|
@@ -6604,24 +6649,24 @@ export interface SourceCredentialsInfo {
|
|
|
6604
6649
|
* <p> The Amazon Resource Name (ARN) of the token. </p>
|
|
6605
6650
|
* @public
|
|
6606
6651
|
*/
|
|
6607
|
-
arn?: string;
|
|
6652
|
+
arn?: string | undefined;
|
|
6608
6653
|
/**
|
|
6609
6654
|
* <p> The type of source provider. The valid options are GITHUB, GITHUB_ENTERPRISE, GITLAB, GITLAB_SELF_MANAGED, or
|
|
6610
6655
|
* BITBUCKET. </p>
|
|
6611
6656
|
* @public
|
|
6612
6657
|
*/
|
|
6613
|
-
serverType?: ServerType;
|
|
6658
|
+
serverType?: ServerType | undefined;
|
|
6614
6659
|
/**
|
|
6615
6660
|
* <p> The type of authentication used by the credentials. Valid options are OAUTH,
|
|
6616
6661
|
* BASIC_AUTH, PERSONAL_ACCESS_TOKEN, CODECONNECTIONS, or SECRETS_MANAGER. </p>
|
|
6617
6662
|
* @public
|
|
6618
6663
|
*/
|
|
6619
|
-
authType?: AuthType;
|
|
6664
|
+
authType?: AuthType | undefined;
|
|
6620
6665
|
/**
|
|
6621
6666
|
* <p>The connection ARN if your authType is CODECONNECTIONS or SECRETS_MANAGER.</p>
|
|
6622
6667
|
* @public
|
|
6623
6668
|
*/
|
|
6624
|
-
resource?: string;
|
|
6669
|
+
resource?: string | undefined;
|
|
6625
6670
|
}
|
|
6626
6671
|
/**
|
|
6627
6672
|
* @public
|
|
@@ -6633,7 +6678,7 @@ export interface ListSourceCredentialsOutput {
|
|
|
6633
6678
|
* ARN, and type of source provider for one set of credentials. </p>
|
|
6634
6679
|
* @public
|
|
6635
6680
|
*/
|
|
6636
|
-
sourceCredentialsInfos?: SourceCredentialsInfo[];
|
|
6681
|
+
sourceCredentialsInfos?: SourceCredentialsInfo[] | undefined;
|
|
6637
6682
|
}
|
|
6638
6683
|
/**
|
|
6639
6684
|
* @public
|
|
@@ -6662,7 +6707,7 @@ export interface PutResourcePolicyOutput {
|
|
|
6662
6707
|
* associated with a resource policy. </p>
|
|
6663
6708
|
* @public
|
|
6664
6709
|
*/
|
|
6665
|
-
resourceArn?: string;
|
|
6710
|
+
resourceArn?: string | undefined;
|
|
6666
6711
|
}
|
|
6667
6712
|
/**
|
|
6668
6713
|
* @public
|
|
@@ -6672,7 +6717,7 @@ export interface RetryBuildInput {
|
|
|
6672
6717
|
* <p>Specifies the identifier of the build to restart.</p>
|
|
6673
6718
|
* @public
|
|
6674
6719
|
*/
|
|
6675
|
-
id?: string;
|
|
6720
|
+
id?: string | undefined;
|
|
6676
6721
|
/**
|
|
6677
6722
|
* <p>A unique, case sensitive identifier you provide to ensure the idempotency of the
|
|
6678
6723
|
* <code>RetryBuild</code> request. The token is included in the
|
|
@@ -6681,7 +6726,7 @@ export interface RetryBuildInput {
|
|
|
6681
6726
|
* CodeBuild returns a parameter mismatch error.</p>
|
|
6682
6727
|
* @public
|
|
6683
6728
|
*/
|
|
6684
|
-
idempotencyToken?: string;
|
|
6729
|
+
idempotencyToken?: string | undefined;
|
|
6685
6730
|
}
|
|
6686
6731
|
/**
|
|
6687
6732
|
* @public
|
|
@@ -6691,7 +6736,7 @@ export interface RetryBuildOutput {
|
|
|
6691
6736
|
* <p>Information about a build.</p>
|
|
6692
6737
|
* @public
|
|
6693
6738
|
*/
|
|
6694
|
-
build?: Build;
|
|
6739
|
+
build?: Build | undefined;
|
|
6695
6740
|
}
|
|
6696
6741
|
/**
|
|
6697
6742
|
* @public
|
|
@@ -6713,7 +6758,7 @@ export interface RetryBuildBatchInput {
|
|
|
6713
6758
|
* <p>Specifies the identifier of the batch build to restart.</p>
|
|
6714
6759
|
* @public
|
|
6715
6760
|
*/
|
|
6716
|
-
id?: string;
|
|
6761
|
+
id?: string | undefined;
|
|
6717
6762
|
/**
|
|
6718
6763
|
* <p>A unique, case sensitive identifier you provide to ensure the idempotency of the
|
|
6719
6764
|
* <code>RetryBuildBatch</code> request. The token is included in the
|
|
@@ -6722,12 +6767,12 @@ export interface RetryBuildBatchInput {
|
|
|
6722
6767
|
* CodeBuild returns a parameter mismatch error.</p>
|
|
6723
6768
|
* @public
|
|
6724
6769
|
*/
|
|
6725
|
-
idempotencyToken?: string;
|
|
6770
|
+
idempotencyToken?: string | undefined;
|
|
6726
6771
|
/**
|
|
6727
6772
|
* <p>Specifies the type of retry to perform.</p>
|
|
6728
6773
|
* @public
|
|
6729
6774
|
*/
|
|
6730
|
-
retryType?: RetryBuildBatchType;
|
|
6775
|
+
retryType?: RetryBuildBatchType | undefined;
|
|
6731
6776
|
}
|
|
6732
6777
|
/**
|
|
6733
6778
|
* @public
|
|
@@ -6737,7 +6782,7 @@ export interface RetryBuildBatchOutput {
|
|
|
6737
6782
|
* <p>Contains information about a batch build.</p>
|
|
6738
6783
|
* @public
|
|
6739
6784
|
*/
|
|
6740
|
-
buildBatch?: BuildBatch;
|
|
6785
|
+
buildBatch?: BuildBatch | undefined;
|
|
6741
6786
|
}
|
|
6742
6787
|
/**
|
|
6743
6788
|
* @public
|
|
@@ -6752,13 +6797,13 @@ export interface StartBuildInput {
|
|
|
6752
6797
|
* <p> An array of <code>ProjectSource</code> objects. </p>
|
|
6753
6798
|
* @public
|
|
6754
6799
|
*/
|
|
6755
|
-
secondarySourcesOverride?: ProjectSource[];
|
|
6800
|
+
secondarySourcesOverride?: ProjectSource[] | undefined;
|
|
6756
6801
|
/**
|
|
6757
6802
|
* <p> An array of <code>ProjectSourceVersion</code> objects that specify one or more
|
|
6758
6803
|
* versions of the project's secondary sources to be used for this build only. </p>
|
|
6759
6804
|
* @public
|
|
6760
6805
|
*/
|
|
6761
|
-
secondarySourcesVersionOverride?: ProjectSourceVersion[];
|
|
6806
|
+
secondarySourcesVersionOverride?: ProjectSourceVersion[] | undefined;
|
|
6762
6807
|
/**
|
|
6763
6808
|
* <p>The version of the build input to be built, for this build only. If not specified,
|
|
6764
6809
|
* the latest version is used. If specified, the contents depends on the source
|
|
@@ -6800,55 +6845,55 @@ export interface StartBuildInput {
|
|
|
6800
6845
|
* with CodeBuild</a> in the <i>CodeBuild User Guide</i>. </p>
|
|
6801
6846
|
* @public
|
|
6802
6847
|
*/
|
|
6803
|
-
sourceVersion?: string;
|
|
6848
|
+
sourceVersion?: string | undefined;
|
|
6804
6849
|
/**
|
|
6805
6850
|
* <p>Build output artifact settings that override, for this build only, the latest ones
|
|
6806
6851
|
* already defined in the build project.</p>
|
|
6807
6852
|
* @public
|
|
6808
6853
|
*/
|
|
6809
|
-
artifactsOverride?: ProjectArtifacts;
|
|
6854
|
+
artifactsOverride?: ProjectArtifacts | undefined;
|
|
6810
6855
|
/**
|
|
6811
6856
|
* <p> An array of <code>ProjectArtifacts</code> objects. </p>
|
|
6812
6857
|
* @public
|
|
6813
6858
|
*/
|
|
6814
|
-
secondaryArtifactsOverride?: ProjectArtifacts[];
|
|
6859
|
+
secondaryArtifactsOverride?: ProjectArtifacts[] | undefined;
|
|
6815
6860
|
/**
|
|
6816
6861
|
* <p>A set of environment variables that overrides, for this build only, the latest ones
|
|
6817
6862
|
* already defined in the build project.</p>
|
|
6818
6863
|
* @public
|
|
6819
6864
|
*/
|
|
6820
|
-
environmentVariablesOverride?: EnvironmentVariable[];
|
|
6865
|
+
environmentVariablesOverride?: EnvironmentVariable[] | undefined;
|
|
6821
6866
|
/**
|
|
6822
6867
|
* <p>A source input type, for this build, that overrides the source input defined in the
|
|
6823
6868
|
* build project.</p>
|
|
6824
6869
|
* @public
|
|
6825
6870
|
*/
|
|
6826
|
-
sourceTypeOverride?: SourceType;
|
|
6871
|
+
sourceTypeOverride?: SourceType | undefined;
|
|
6827
6872
|
/**
|
|
6828
6873
|
* <p>A location that overrides, for this build, the source location for the one defined in
|
|
6829
6874
|
* the build project.</p>
|
|
6830
6875
|
* @public
|
|
6831
6876
|
*/
|
|
6832
|
-
sourceLocationOverride?: string;
|
|
6877
|
+
sourceLocationOverride?: string | undefined;
|
|
6833
6878
|
/**
|
|
6834
6879
|
* <p>An authorization type for this build that overrides the one defined in the build
|
|
6835
6880
|
* project. This override applies only if the build project's source is BitBucket, GitHub,
|
|
6836
6881
|
* GitLab, or GitLab Self Managed.</p>
|
|
6837
6882
|
* @public
|
|
6838
6883
|
*/
|
|
6839
|
-
sourceAuthOverride?: SourceAuth;
|
|
6884
|
+
sourceAuthOverride?: SourceAuth | undefined;
|
|
6840
6885
|
/**
|
|
6841
6886
|
* <p>The user-defined depth of history, with a minimum value of 0, that overrides, for this
|
|
6842
6887
|
* build only, any previous depth of history defined in the build project.</p>
|
|
6843
6888
|
* @public
|
|
6844
6889
|
*/
|
|
6845
|
-
gitCloneDepthOverride?: number;
|
|
6890
|
+
gitCloneDepthOverride?: number | undefined;
|
|
6846
6891
|
/**
|
|
6847
6892
|
* <p> Information about the Git submodules configuration for this build of an CodeBuild build
|
|
6848
6893
|
* project. </p>
|
|
6849
6894
|
* @public
|
|
6850
6895
|
*/
|
|
6851
|
-
gitSubmodulesConfigOverride?: GitSubmodulesConfig;
|
|
6896
|
+
gitSubmodulesConfigOverride?: GitSubmodulesConfig | undefined;
|
|
6852
6897
|
/**
|
|
6853
6898
|
* <p>A buildspec file declaration that overrides the latest one defined
|
|
6854
6899
|
* in the build project, for this build only. The buildspec defined on the project is not changed.</p>
|
|
@@ -6868,7 +6913,7 @@ export interface StartBuildInput {
|
|
|
6868
6913
|
* </note>
|
|
6869
6914
|
* @public
|
|
6870
6915
|
*/
|
|
6871
|
-
buildspecOverride?: string;
|
|
6916
|
+
buildspecOverride?: string | undefined;
|
|
6872
6917
|
/**
|
|
6873
6918
|
* <p>Enable this flag to override the insecure SSL setting that is specified in the build
|
|
6874
6919
|
* project. The insecure SSL setting determines whether to ignore SSL warnings while
|
|
@@ -6876,7 +6921,7 @@ export interface StartBuildInput {
|
|
|
6876
6921
|
* is GitHub Enterprise.</p>
|
|
6877
6922
|
* @public
|
|
6878
6923
|
*/
|
|
6879
|
-
insecureSslOverride?: boolean;
|
|
6924
|
+
insecureSslOverride?: boolean | undefined;
|
|
6880
6925
|
/**
|
|
6881
6926
|
* <p> Set to true to report to your source provider the status of a build's start and
|
|
6882
6927
|
* completion. If you use this option with a source provider other than GitHub, GitHub
|
|
@@ -6889,7 +6934,7 @@ export interface StartBuildInput {
|
|
|
6889
6934
|
* </note>
|
|
6890
6935
|
* @public
|
|
6891
6936
|
*/
|
|
6892
|
-
reportBuildStatusOverride?: boolean;
|
|
6937
|
+
reportBuildStatusOverride?: boolean | undefined;
|
|
6893
6938
|
/**
|
|
6894
6939
|
* <p>Contains information that defines how the build project reports the build status to
|
|
6895
6940
|
* the source provider. This option is only used when the source provider is
|
|
@@ -6897,59 +6942,59 @@ export interface StartBuildInput {
|
|
|
6897
6942
|
* <code>BITBUCKET</code>.</p>
|
|
6898
6943
|
* @public
|
|
6899
6944
|
*/
|
|
6900
|
-
buildStatusConfigOverride?: BuildStatusConfig;
|
|
6945
|
+
buildStatusConfigOverride?: BuildStatusConfig | undefined;
|
|
6901
6946
|
/**
|
|
6902
6947
|
* <p>A container type for this build that overrides the one specified in the build
|
|
6903
6948
|
* project.</p>
|
|
6904
6949
|
* @public
|
|
6905
6950
|
*/
|
|
6906
|
-
environmentTypeOverride?: EnvironmentType;
|
|
6951
|
+
environmentTypeOverride?: EnvironmentType | undefined;
|
|
6907
6952
|
/**
|
|
6908
6953
|
* <p>The name of an image for this build that overrides the one specified in the build
|
|
6909
6954
|
* project.</p>
|
|
6910
6955
|
* @public
|
|
6911
6956
|
*/
|
|
6912
|
-
imageOverride?: string;
|
|
6957
|
+
imageOverride?: string | undefined;
|
|
6913
6958
|
/**
|
|
6914
6959
|
* <p>The name of a compute type for this build that overrides the one specified in the
|
|
6915
6960
|
* build project.</p>
|
|
6916
6961
|
* @public
|
|
6917
6962
|
*/
|
|
6918
|
-
computeTypeOverride?: ComputeType;
|
|
6963
|
+
computeTypeOverride?: ComputeType | undefined;
|
|
6919
6964
|
/**
|
|
6920
6965
|
* <p>The name of a certificate for this build that overrides the one specified in the build
|
|
6921
6966
|
* project.</p>
|
|
6922
6967
|
* @public
|
|
6923
6968
|
*/
|
|
6924
|
-
certificateOverride?: string;
|
|
6969
|
+
certificateOverride?: string | undefined;
|
|
6925
6970
|
/**
|
|
6926
6971
|
* <p>A ProjectCache object specified for this build that overrides the one defined in the
|
|
6927
6972
|
* build project.</p>
|
|
6928
6973
|
* @public
|
|
6929
6974
|
*/
|
|
6930
|
-
cacheOverride?: ProjectCache;
|
|
6975
|
+
cacheOverride?: ProjectCache | undefined;
|
|
6931
6976
|
/**
|
|
6932
6977
|
* <p>The name of a service role for this build that overrides the one specified in the
|
|
6933
6978
|
* build project.</p>
|
|
6934
6979
|
* @public
|
|
6935
6980
|
*/
|
|
6936
|
-
serviceRoleOverride?: string;
|
|
6981
|
+
serviceRoleOverride?: string | undefined;
|
|
6937
6982
|
/**
|
|
6938
6983
|
* <p>Enable this flag to override privileged mode in the build project.</p>
|
|
6939
6984
|
* @public
|
|
6940
6985
|
*/
|
|
6941
|
-
privilegedModeOverride?: boolean;
|
|
6986
|
+
privilegedModeOverride?: boolean | undefined;
|
|
6942
6987
|
/**
|
|
6943
6988
|
* <p>The number of build timeout minutes, from 5 to 2160 (36 hours), that overrides, for this
|
|
6944
6989
|
* build only, the latest setting already defined in the build project.</p>
|
|
6945
6990
|
* @public
|
|
6946
6991
|
*/
|
|
6947
|
-
timeoutInMinutesOverride?: number;
|
|
6992
|
+
timeoutInMinutesOverride?: number | undefined;
|
|
6948
6993
|
/**
|
|
6949
6994
|
* <p> The number of minutes a build is allowed to be queued before it times out. </p>
|
|
6950
6995
|
* @public
|
|
6951
6996
|
*/
|
|
6952
|
-
queuedTimeoutInMinutesOverride?: number;
|
|
6997
|
+
queuedTimeoutInMinutesOverride?: number | undefined;
|
|
6953
6998
|
/**
|
|
6954
6999
|
* <p>The Key Management Service customer master key (CMK) that overrides the one specified in the build
|
|
6955
7000
|
* project. The CMK key encrypts the build output artifacts.</p>
|
|
@@ -6961,7 +7006,7 @@ export interface StartBuildInput {
|
|
|
6961
7006
|
* the format <code>alias/<alias-name></code>).</p>
|
|
6962
7007
|
* @public
|
|
6963
7008
|
*/
|
|
6964
|
-
encryptionKeyOverride?: string;
|
|
7009
|
+
encryptionKeyOverride?: string | undefined;
|
|
6965
7010
|
/**
|
|
6966
7011
|
* <p>A unique, case sensitive identifier you provide to ensure the idempotency of the
|
|
6967
7012
|
* StartBuild request. The token is included in the StartBuild request and is valid for 5
|
|
@@ -6969,18 +7014,18 @@ export interface StartBuildInput {
|
|
|
6969
7014
|
* parameter, CodeBuild returns a parameter mismatch error. </p>
|
|
6970
7015
|
* @public
|
|
6971
7016
|
*/
|
|
6972
|
-
idempotencyToken?: string;
|
|
7017
|
+
idempotencyToken?: string | undefined;
|
|
6973
7018
|
/**
|
|
6974
7019
|
* <p> Log settings for this build that override the log settings defined in the build
|
|
6975
7020
|
* project. </p>
|
|
6976
7021
|
* @public
|
|
6977
7022
|
*/
|
|
6978
|
-
logsConfigOverride?: LogsConfig;
|
|
7023
|
+
logsConfigOverride?: LogsConfig | undefined;
|
|
6979
7024
|
/**
|
|
6980
7025
|
* <p> The credentials for access to a private registry. </p>
|
|
6981
7026
|
* @public
|
|
6982
7027
|
*/
|
|
6983
|
-
registryCredentialOverride?: RegistryCredential;
|
|
7028
|
+
registryCredentialOverride?: RegistryCredential | undefined;
|
|
6984
7029
|
/**
|
|
6985
7030
|
* <p>The type of credentials CodeBuild uses to pull images in your build. There are two valid
|
|
6986
7031
|
* values: </p>
|
|
@@ -7000,26 +7045,26 @@ export interface StartBuildInput {
|
|
|
7000
7045
|
* you must use <code>CODEBUILD</code> credentials. </p>
|
|
7001
7046
|
* @public
|
|
7002
7047
|
*/
|
|
7003
|
-
imagePullCredentialsTypeOverride?: ImagePullCredentialsType;
|
|
7048
|
+
imagePullCredentialsTypeOverride?: ImagePullCredentialsType | undefined;
|
|
7004
7049
|
/**
|
|
7005
7050
|
* <p>Specifies if session debugging is enabled for this build. For more information, see
|
|
7006
7051
|
* <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/session-manager.html">Viewing a running build in Session Manager</a>.</p>
|
|
7007
7052
|
* @public
|
|
7008
7053
|
*/
|
|
7009
|
-
debugSessionEnabled?: boolean;
|
|
7054
|
+
debugSessionEnabled?: boolean | undefined;
|
|
7010
7055
|
/**
|
|
7011
7056
|
* <p>A ProjectFleet object specified for this build that overrides the one defined in the
|
|
7012
7057
|
* build project.</p>
|
|
7013
7058
|
* @public
|
|
7014
7059
|
*/
|
|
7015
|
-
fleetOverride?: ProjectFleet;
|
|
7060
|
+
fleetOverride?: ProjectFleet | undefined;
|
|
7016
7061
|
/**
|
|
7017
7062
|
* <p>The maximum number of additional automatic retries after a failed build. For example, if the
|
|
7018
7063
|
* auto-retry limit is set to 2, CodeBuild will call the <code>RetryBuild</code> API to automatically
|
|
7019
7064
|
* retry your build for up to 2 additional times.</p>
|
|
7020
7065
|
* @public
|
|
7021
7066
|
*/
|
|
7022
|
-
autoRetryLimitOverride?: number;
|
|
7067
|
+
autoRetryLimitOverride?: number | undefined;
|
|
7023
7068
|
}
|
|
7024
7069
|
/**
|
|
7025
7070
|
* @public
|
|
@@ -7029,7 +7074,7 @@ export interface StartBuildOutput {
|
|
|
7029
7074
|
* <p>Information about the build to be run.</p>
|
|
7030
7075
|
* @public
|
|
7031
7076
|
*/
|
|
7032
|
-
build?: Build;
|
|
7077
|
+
build?: Build | undefined;
|
|
7033
7078
|
}
|
|
7034
7079
|
/**
|
|
7035
7080
|
* @public
|
|
@@ -7045,13 +7090,13 @@ export interface StartBuildBatchInput {
|
|
|
7045
7090
|
* defined in the batch build project.</p>
|
|
7046
7091
|
* @public
|
|
7047
7092
|
*/
|
|
7048
|
-
secondarySourcesOverride?: ProjectSource[];
|
|
7093
|
+
secondarySourcesOverride?: ProjectSource[] | undefined;
|
|
7049
7094
|
/**
|
|
7050
7095
|
* <p>An array of <code>ProjectSourceVersion</code> objects that override the secondary source
|
|
7051
7096
|
* versions in the batch build project.</p>
|
|
7052
7097
|
* @public
|
|
7053
7098
|
*/
|
|
7054
|
-
secondarySourcesVersionOverride?: ProjectSourceVersion[];
|
|
7099
|
+
secondarySourcesVersionOverride?: ProjectSourceVersion[] | undefined;
|
|
7055
7100
|
/**
|
|
7056
7101
|
* <p>The version of the batch build input to be built, for this build only. If not specified,
|
|
7057
7102
|
* the latest version is used. If specified, the contents depends on the source
|
|
@@ -7089,56 +7134,56 @@ export interface StartBuildBatchInput {
|
|
|
7089
7134
|
* with CodeBuild</a> in the <i>CodeBuild User Guide</i>. </p>
|
|
7090
7135
|
* @public
|
|
7091
7136
|
*/
|
|
7092
|
-
sourceVersion?: string;
|
|
7137
|
+
sourceVersion?: string | undefined;
|
|
7093
7138
|
/**
|
|
7094
7139
|
* <p>An array of <code>ProjectArtifacts</code> objects that contains information about the
|
|
7095
7140
|
* build output artifact overrides for the build project.</p>
|
|
7096
7141
|
* @public
|
|
7097
7142
|
*/
|
|
7098
|
-
artifactsOverride?: ProjectArtifacts;
|
|
7143
|
+
artifactsOverride?: ProjectArtifacts | undefined;
|
|
7099
7144
|
/**
|
|
7100
7145
|
* <p>An array of <code>ProjectArtifacts</code> objects that override the secondary artifacts
|
|
7101
7146
|
* defined in the batch build project.</p>
|
|
7102
7147
|
* @public
|
|
7103
7148
|
*/
|
|
7104
|
-
secondaryArtifactsOverride?: ProjectArtifacts[];
|
|
7149
|
+
secondaryArtifactsOverride?: ProjectArtifacts[] | undefined;
|
|
7105
7150
|
/**
|
|
7106
7151
|
* <p>An array of <code>EnvironmentVariable</code> objects that override, or add to, the
|
|
7107
7152
|
* environment variables defined in the batch build project.</p>
|
|
7108
7153
|
* @public
|
|
7109
7154
|
*/
|
|
7110
|
-
environmentVariablesOverride?: EnvironmentVariable[];
|
|
7155
|
+
environmentVariablesOverride?: EnvironmentVariable[] | undefined;
|
|
7111
7156
|
/**
|
|
7112
7157
|
* <p>The source input type that overrides the source input defined in the batch
|
|
7113
7158
|
* build project.</p>
|
|
7114
7159
|
* @public
|
|
7115
7160
|
*/
|
|
7116
|
-
sourceTypeOverride?: SourceType;
|
|
7161
|
+
sourceTypeOverride?: SourceType | undefined;
|
|
7117
7162
|
/**
|
|
7118
7163
|
* <p>A location that overrides, for this batch build, the source location defined in
|
|
7119
7164
|
* the batch build project.</p>
|
|
7120
7165
|
* @public
|
|
7121
7166
|
*/
|
|
7122
|
-
sourceLocationOverride?: string;
|
|
7167
|
+
sourceLocationOverride?: string | undefined;
|
|
7123
7168
|
/**
|
|
7124
7169
|
* <p>A <code>SourceAuth</code> object that overrides the one defined in the batch build
|
|
7125
7170
|
* project. This override applies only if the build project's source is BitBucket or
|
|
7126
7171
|
* GitHub.</p>
|
|
7127
7172
|
* @public
|
|
7128
7173
|
*/
|
|
7129
|
-
sourceAuthOverride?: SourceAuth;
|
|
7174
|
+
sourceAuthOverride?: SourceAuth | undefined;
|
|
7130
7175
|
/**
|
|
7131
7176
|
* <p>The user-defined depth of history, with a minimum value of 0, that overrides, for this
|
|
7132
7177
|
* batch build only, any previous depth of history defined in the batch build project.</p>
|
|
7133
7178
|
* @public
|
|
7134
7179
|
*/
|
|
7135
|
-
gitCloneDepthOverride?: number;
|
|
7180
|
+
gitCloneDepthOverride?: number | undefined;
|
|
7136
7181
|
/**
|
|
7137
7182
|
* <p>A <code>GitSubmodulesConfig</code> object that overrides the Git submodules configuration
|
|
7138
7183
|
* for this batch build.</p>
|
|
7139
7184
|
* @public
|
|
7140
7185
|
*/
|
|
7141
|
-
gitSubmodulesConfigOverride?: GitSubmodulesConfig;
|
|
7186
|
+
gitSubmodulesConfigOverride?: GitSubmodulesConfig | undefined;
|
|
7142
7187
|
/**
|
|
7143
7188
|
* <p>A buildspec file declaration that overrides, for this build only, the latest one
|
|
7144
7189
|
* already defined in the build project.</p>
|
|
@@ -7152,7 +7197,7 @@ export interface StartBuildBatchInput {
|
|
|
7152
7197
|
* its root directory. For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#build-spec-ref-name-storage">Buildspec File Name and Storage Location</a>. </p>
|
|
7153
7198
|
* @public
|
|
7154
7199
|
*/
|
|
7155
|
-
buildspecOverride?: string;
|
|
7200
|
+
buildspecOverride?: string | undefined;
|
|
7156
7201
|
/**
|
|
7157
7202
|
* <p>Enable this flag to override the insecure SSL setting that is specified in the batch build
|
|
7158
7203
|
* project. The insecure SSL setting determines whether to ignore SSL warnings while
|
|
@@ -7160,7 +7205,7 @@ export interface StartBuildBatchInput {
|
|
|
7160
7205
|
* is GitHub Enterprise.</p>
|
|
7161
7206
|
* @public
|
|
7162
7207
|
*/
|
|
7163
|
-
insecureSslOverride?: boolean;
|
|
7208
|
+
insecureSslOverride?: boolean | undefined;
|
|
7164
7209
|
/**
|
|
7165
7210
|
* <p>Set to <code>true</code> to report to your source provider the status of a batch build's
|
|
7166
7211
|
* start and completion. If you use this option with a source provider other than GitHub,
|
|
@@ -7171,57 +7216,57 @@ export interface StartBuildBatchInput {
|
|
|
7171
7216
|
* </note>
|
|
7172
7217
|
* @public
|
|
7173
7218
|
*/
|
|
7174
|
-
reportBuildBatchStatusOverride?: boolean;
|
|
7219
|
+
reportBuildBatchStatusOverride?: boolean | undefined;
|
|
7175
7220
|
/**
|
|
7176
7221
|
* <p>A container type for this batch build that overrides the one specified in the batch build
|
|
7177
7222
|
* project.</p>
|
|
7178
7223
|
* @public
|
|
7179
7224
|
*/
|
|
7180
|
-
environmentTypeOverride?: EnvironmentType;
|
|
7225
|
+
environmentTypeOverride?: EnvironmentType | undefined;
|
|
7181
7226
|
/**
|
|
7182
7227
|
* <p>The name of an image for this batch build that overrides the one specified in the batch
|
|
7183
7228
|
* build project.</p>
|
|
7184
7229
|
* @public
|
|
7185
7230
|
*/
|
|
7186
|
-
imageOverride?: string;
|
|
7231
|
+
imageOverride?: string | undefined;
|
|
7187
7232
|
/**
|
|
7188
7233
|
* <p>The name of a compute type for this batch build that overrides the one specified in the
|
|
7189
7234
|
* batch build project.</p>
|
|
7190
7235
|
* @public
|
|
7191
7236
|
*/
|
|
7192
|
-
computeTypeOverride?: ComputeType;
|
|
7237
|
+
computeTypeOverride?: ComputeType | undefined;
|
|
7193
7238
|
/**
|
|
7194
7239
|
* <p>The name of a certificate for this batch build that overrides the one specified in the batch build
|
|
7195
7240
|
* project.</p>
|
|
7196
7241
|
* @public
|
|
7197
7242
|
*/
|
|
7198
|
-
certificateOverride?: string;
|
|
7243
|
+
certificateOverride?: string | undefined;
|
|
7199
7244
|
/**
|
|
7200
7245
|
* <p>A <code>ProjectCache</code> object that specifies cache overrides.</p>
|
|
7201
7246
|
* @public
|
|
7202
7247
|
*/
|
|
7203
|
-
cacheOverride?: ProjectCache;
|
|
7248
|
+
cacheOverride?: ProjectCache | undefined;
|
|
7204
7249
|
/**
|
|
7205
7250
|
* <p>The name of a service role for this batch build that overrides the one specified in the
|
|
7206
7251
|
* batch build project.</p>
|
|
7207
7252
|
* @public
|
|
7208
7253
|
*/
|
|
7209
|
-
serviceRoleOverride?: string;
|
|
7254
|
+
serviceRoleOverride?: string | undefined;
|
|
7210
7255
|
/**
|
|
7211
7256
|
* <p>Enable this flag to override privileged mode in the batch build project.</p>
|
|
7212
7257
|
* @public
|
|
7213
7258
|
*/
|
|
7214
|
-
privilegedModeOverride?: boolean;
|
|
7259
|
+
privilegedModeOverride?: boolean | undefined;
|
|
7215
7260
|
/**
|
|
7216
7261
|
* <p>Overrides the build timeout specified in the batch build project.</p>
|
|
7217
7262
|
* @public
|
|
7218
7263
|
*/
|
|
7219
|
-
buildTimeoutInMinutesOverride?: number;
|
|
7264
|
+
buildTimeoutInMinutesOverride?: number | undefined;
|
|
7220
7265
|
/**
|
|
7221
7266
|
* <p>The number of minutes a batch build is allowed to be queued before it times out.</p>
|
|
7222
7267
|
* @public
|
|
7223
7268
|
*/
|
|
7224
|
-
queuedTimeoutInMinutesOverride?: number;
|
|
7269
|
+
queuedTimeoutInMinutesOverride?: number | undefined;
|
|
7225
7270
|
/**
|
|
7226
7271
|
* <p>The Key Management Service customer master key (CMK) that overrides the one specified in the batch build
|
|
7227
7272
|
* project. The CMK key encrypts the build output artifacts.</p>
|
|
@@ -7233,7 +7278,7 @@ export interface StartBuildBatchInput {
|
|
|
7233
7278
|
* the format <code>alias/<alias-name></code>).</p>
|
|
7234
7279
|
* @public
|
|
7235
7280
|
*/
|
|
7236
|
-
encryptionKeyOverride?: string;
|
|
7281
|
+
encryptionKeyOverride?: string | undefined;
|
|
7237
7282
|
/**
|
|
7238
7283
|
* <p>A unique, case sensitive identifier you provide to ensure the idempotency of the
|
|
7239
7284
|
* <code>StartBuildBatch</code> request. The token is included in the
|
|
@@ -7242,19 +7287,19 @@ export interface StartBuildBatchInput {
|
|
|
7242
7287
|
* CodeBuild returns a parameter mismatch error.</p>
|
|
7243
7288
|
* @public
|
|
7244
7289
|
*/
|
|
7245
|
-
idempotencyToken?: string;
|
|
7290
|
+
idempotencyToken?: string | undefined;
|
|
7246
7291
|
/**
|
|
7247
7292
|
* <p>A <code>LogsConfig</code> object that override the log settings defined in the batch build
|
|
7248
7293
|
* project.</p>
|
|
7249
7294
|
* @public
|
|
7250
7295
|
*/
|
|
7251
|
-
logsConfigOverride?: LogsConfig;
|
|
7296
|
+
logsConfigOverride?: LogsConfig | undefined;
|
|
7252
7297
|
/**
|
|
7253
7298
|
* <p>A <code>RegistryCredential</code> object that overrides credentials for access to a
|
|
7254
7299
|
* private registry.</p>
|
|
7255
7300
|
* @public
|
|
7256
7301
|
*/
|
|
7257
|
-
registryCredentialOverride?: RegistryCredential;
|
|
7302
|
+
registryCredentialOverride?: RegistryCredential | undefined;
|
|
7258
7303
|
/**
|
|
7259
7304
|
* <p>The type of credentials CodeBuild uses to pull images in your batch build. There are two valid
|
|
7260
7305
|
* values: </p>
|
|
@@ -7274,19 +7319,19 @@ export interface StartBuildBatchInput {
|
|
|
7274
7319
|
* you must use <code>CODEBUILD</code> credentials. </p>
|
|
7275
7320
|
* @public
|
|
7276
7321
|
*/
|
|
7277
|
-
imagePullCredentialsTypeOverride?: ImagePullCredentialsType;
|
|
7322
|
+
imagePullCredentialsTypeOverride?: ImagePullCredentialsType | undefined;
|
|
7278
7323
|
/**
|
|
7279
7324
|
* <p>A <code>BuildBatchConfigOverride</code> object that contains batch build configuration
|
|
7280
7325
|
* overrides.</p>
|
|
7281
7326
|
* @public
|
|
7282
7327
|
*/
|
|
7283
|
-
buildBatchConfigOverride?: ProjectBuildBatchConfig;
|
|
7328
|
+
buildBatchConfigOverride?: ProjectBuildBatchConfig | undefined;
|
|
7284
7329
|
/**
|
|
7285
7330
|
* <p>Specifies if session debugging is enabled for this batch build. For more information, see
|
|
7286
7331
|
* <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/session-manager.html">Viewing a running build in Session Manager</a>. Batch session debugging is not supported for matrix batch builds.</p>
|
|
7287
7332
|
* @public
|
|
7288
7333
|
*/
|
|
7289
|
-
debugSessionEnabled?: boolean;
|
|
7334
|
+
debugSessionEnabled?: boolean | undefined;
|
|
7290
7335
|
}
|
|
7291
7336
|
/**
|
|
7292
7337
|
* @public
|
|
@@ -7296,7 +7341,7 @@ export interface StartBuildBatchOutput {
|
|
|
7296
7341
|
* <p>A <code>BuildBatch</code> object that contains information about the batch build.</p>
|
|
7297
7342
|
* @public
|
|
7298
7343
|
*/
|
|
7299
|
-
buildBatch?: BuildBatch;
|
|
7344
|
+
buildBatch?: BuildBatch | undefined;
|
|
7300
7345
|
}
|
|
7301
7346
|
/**
|
|
7302
7347
|
* @public
|
|
@@ -7316,7 +7361,7 @@ export interface StopBuildOutput {
|
|
|
7316
7361
|
* <p>Information about the build.</p>
|
|
7317
7362
|
* @public
|
|
7318
7363
|
*/
|
|
7319
|
-
build?: Build;
|
|
7364
|
+
build?: Build | undefined;
|
|
7320
7365
|
}
|
|
7321
7366
|
/**
|
|
7322
7367
|
* @public
|
|
@@ -7336,7 +7381,7 @@ export interface StopBuildBatchOutput {
|
|
|
7336
7381
|
* <p>Contains information about a batch build.</p>
|
|
7337
7382
|
* @public
|
|
7338
7383
|
*/
|
|
7339
|
-
buildBatch?: BuildBatch;
|
|
7384
|
+
buildBatch?: BuildBatch | undefined;
|
|
7340
7385
|
}
|
|
7341
7386
|
/**
|
|
7342
7387
|
* @public
|
|
@@ -7352,7 +7397,7 @@ export interface UpdateFleetInput {
|
|
|
7352
7397
|
* run in parallel.</p>
|
|
7353
7398
|
* @public
|
|
7354
7399
|
*/
|
|
7355
|
-
baseCapacity?: number;
|
|
7400
|
+
baseCapacity?: number | undefined;
|
|
7356
7401
|
/**
|
|
7357
7402
|
* <p>The environment type of the compute fleet.</p>
|
|
7358
7403
|
* <ul>
|
|
@@ -7363,6 +7408,13 @@ export interface UpdateFleetInput {
|
|
|
7363
7408
|
* EU (Frankfurt), and South America (São Paulo).</p>
|
|
7364
7409
|
* </li>
|
|
7365
7410
|
* <li>
|
|
7411
|
+
* <p>The environment type <code>ARM_EC2</code> is available only in regions
|
|
7412
|
+
* US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
7413
|
+
* EU (Frankfurt), Asia Pacific (Tokyo),
|
|
7414
|
+
* Asia Pacific (Singapore), Asia Pacific (Sydney), South America (São Paulo), and
|
|
7415
|
+
* Asia Pacific (Mumbai).</p>
|
|
7416
|
+
* </li>
|
|
7417
|
+
* <li>
|
|
7366
7418
|
* <p>The environment type <code>LINUX_CONTAINER</code> is available only in regions
|
|
7367
7419
|
* US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
7368
7420
|
* EU (Frankfurt), Asia Pacific (Tokyo),
|
|
@@ -7370,6 +7422,13 @@ export interface UpdateFleetInput {
|
|
|
7370
7422
|
* Asia Pacific (Mumbai).</p>
|
|
7371
7423
|
* </li>
|
|
7372
7424
|
* <li>
|
|
7425
|
+
* <p>The environment type <code>LINUX_EC2</code> is available only in regions
|
|
7426
|
+
* US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
7427
|
+
* EU (Frankfurt), Asia Pacific (Tokyo),
|
|
7428
|
+
* Asia Pacific (Singapore), Asia Pacific (Sydney), South America (São Paulo), and
|
|
7429
|
+
* Asia Pacific (Mumbai).</p>
|
|
7430
|
+
* </li>
|
|
7431
|
+
* <li>
|
|
7373
7432
|
* <p>The environment type <code>LINUX_GPU_CONTAINER</code> is available only in
|
|
7374
7433
|
* regions US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
7375
7434
|
* EU (Frankfurt), Asia Pacific (Tokyo), and Asia Pacific (Sydney).</p>
|
|
@@ -7384,6 +7443,13 @@ export interface UpdateFleetInput {
|
|
|
7384
7443
|
* regions US East (N. Virginia), US East (Ohio), US West (Oregon), and Asia Pacific (Sydney).</p>
|
|
7385
7444
|
* </li>
|
|
7386
7445
|
* <li>
|
|
7446
|
+
* <p>The environment type <code>WINDOWS_EC2</code> is available only in regions
|
|
7447
|
+
* US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
|
|
7448
|
+
* EU (Frankfurt), Asia Pacific (Tokyo),
|
|
7449
|
+
* Asia Pacific (Singapore), Asia Pacific (Sydney), South America (São Paulo), and
|
|
7450
|
+
* Asia Pacific (Mumbai).</p>
|
|
7451
|
+
* </li>
|
|
7452
|
+
* <li>
|
|
7387
7453
|
* <p>The environment type <code>WINDOWS_SERVER_2019_CONTAINER</code> is available only in regions
|
|
7388
7454
|
* US East (N. Virginia), US East (Ohio), US West (Oregon), Asia Pacific (Sydney),
|
|
7389
7455
|
* Asia Pacific (Tokyo), Asia Pacific (Mumbai) and
|
|
@@ -7400,7 +7466,7 @@ export interface UpdateFleetInput {
|
|
|
7400
7466
|
* user guide</i>.</p>
|
|
7401
7467
|
* @public
|
|
7402
7468
|
*/
|
|
7403
|
-
environmentType?: EnvironmentType;
|
|
7469
|
+
environmentType?: EnvironmentType | undefined;
|
|
7404
7470
|
/**
|
|
7405
7471
|
* <p>Information about the compute resources the compute fleet uses. Available values
|
|
7406
7472
|
* include:</p>
|
|
@@ -7501,17 +7567,17 @@ export interface UpdateFleetInput {
|
|
|
7501
7567
|
* </p>
|
|
7502
7568
|
* @public
|
|
7503
7569
|
*/
|
|
7504
|
-
computeType?: ComputeType;
|
|
7570
|
+
computeType?: ComputeType | undefined;
|
|
7505
7571
|
/**
|
|
7506
7572
|
* <p>The compute configuration of the compute fleet. This is only required if <code>computeType</code> is set to <code>ATTRIBUTE_BASED_COMPUTE</code>.</p>
|
|
7507
7573
|
* @public
|
|
7508
7574
|
*/
|
|
7509
|
-
computeConfiguration?: ComputeConfiguration;
|
|
7575
|
+
computeConfiguration?: ComputeConfiguration | undefined;
|
|
7510
7576
|
/**
|
|
7511
7577
|
* <p>The scaling configuration of the compute fleet.</p>
|
|
7512
7578
|
* @public
|
|
7513
7579
|
*/
|
|
7514
|
-
scalingConfiguration?: ScalingConfigurationInput;
|
|
7580
|
+
scalingConfiguration?: ScalingConfigurationInput | undefined;
|
|
7515
7581
|
/**
|
|
7516
7582
|
* <p>The compute fleet overflow behavior.</p>
|
|
7517
7583
|
* <ul>
|
|
@@ -7531,35 +7597,35 @@ export interface UpdateFleetInput {
|
|
|
7531
7597
|
* </ul>
|
|
7532
7598
|
* @public
|
|
7533
7599
|
*/
|
|
7534
|
-
overflowBehavior?: FleetOverflowBehavior;
|
|
7600
|
+
overflowBehavior?: FleetOverflowBehavior | undefined;
|
|
7535
7601
|
/**
|
|
7536
7602
|
* <p>Information about the VPC configuration that CodeBuild accesses.</p>
|
|
7537
7603
|
* @public
|
|
7538
7604
|
*/
|
|
7539
|
-
vpcConfig?: VpcConfig;
|
|
7605
|
+
vpcConfig?: VpcConfig | undefined;
|
|
7540
7606
|
/**
|
|
7541
7607
|
* <p>The proxy configuration of the compute fleet.</p>
|
|
7542
7608
|
* @public
|
|
7543
7609
|
*/
|
|
7544
|
-
proxyConfiguration?: ProxyConfiguration;
|
|
7610
|
+
proxyConfiguration?: ProxyConfiguration | undefined;
|
|
7545
7611
|
/**
|
|
7546
7612
|
* <p>The Amazon Machine Image (AMI) of the compute fleet.</p>
|
|
7547
7613
|
* @public
|
|
7548
7614
|
*/
|
|
7549
|
-
imageId?: string;
|
|
7615
|
+
imageId?: string | undefined;
|
|
7550
7616
|
/**
|
|
7551
7617
|
* <p>The service role associated with the compute fleet. For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/auth-and-access-control-iam-identity-based-access-control.html#customer-managed-policies-example-permission-policy-fleet-service-role.html">
|
|
7552
7618
|
* Allow a user to add a permission policy for a fleet service role</a> in the <i>CodeBuild User Guide</i>.</p>
|
|
7553
7619
|
* @public
|
|
7554
7620
|
*/
|
|
7555
|
-
fleetServiceRole?: string;
|
|
7621
|
+
fleetServiceRole?: string | undefined;
|
|
7556
7622
|
/**
|
|
7557
7623
|
* <p>A list of tag key and value pairs associated with this compute fleet.</p>
|
|
7558
7624
|
* <p>These tags are available for use by Amazon Web Services services that support CodeBuild build project
|
|
7559
7625
|
* tags.</p>
|
|
7560
7626
|
* @public
|
|
7561
7627
|
*/
|
|
7562
|
-
tags?: Tag[];
|
|
7628
|
+
tags?: Tag[] | undefined;
|
|
7563
7629
|
}
|
|
7564
7630
|
/**
|
|
7565
7631
|
* @public
|
|
@@ -7569,7 +7635,7 @@ export interface UpdateFleetOutput {
|
|
|
7569
7635
|
* <p>A <code>Fleet</code> object.</p>
|
|
7570
7636
|
* @public
|
|
7571
7637
|
*/
|
|
7572
|
-
fleet?: Fleet;
|
|
7638
|
+
fleet?: Fleet | undefined;
|
|
7573
7639
|
}
|
|
7574
7640
|
/**
|
|
7575
7641
|
* @public
|
|
@@ -7587,18 +7653,18 @@ export interface UpdateProjectInput {
|
|
|
7587
7653
|
* <p>A new or replacement description of the build project.</p>
|
|
7588
7654
|
* @public
|
|
7589
7655
|
*/
|
|
7590
|
-
description?: string;
|
|
7656
|
+
description?: string | undefined;
|
|
7591
7657
|
/**
|
|
7592
7658
|
* <p>Information to be changed about the build input source code for the build
|
|
7593
7659
|
* project.</p>
|
|
7594
7660
|
* @public
|
|
7595
7661
|
*/
|
|
7596
|
-
source?: ProjectSource;
|
|
7662
|
+
source?: ProjectSource | undefined;
|
|
7597
7663
|
/**
|
|
7598
7664
|
* <p> An array of <code>ProjectSource</code> objects. </p>
|
|
7599
7665
|
* @public
|
|
7600
7666
|
*/
|
|
7601
|
-
secondarySources?: ProjectSource[];
|
|
7667
|
+
secondarySources?: ProjectSource[] | undefined;
|
|
7602
7668
|
/**
|
|
7603
7669
|
* <p> A version of the build input to be built for this project. If not specified, the
|
|
7604
7670
|
* latest version is used. If specified, it must be one of: </p>
|
|
@@ -7635,53 +7701,53 @@ export interface UpdateProjectInput {
|
|
|
7635
7701
|
* </p>
|
|
7636
7702
|
* @public
|
|
7637
7703
|
*/
|
|
7638
|
-
sourceVersion?: string;
|
|
7704
|
+
sourceVersion?: string | undefined;
|
|
7639
7705
|
/**
|
|
7640
7706
|
* <p> An array of <code>ProjectSourceVersion</code> objects. If
|
|
7641
7707
|
* <code>secondarySourceVersions</code> is specified at the build level, then they take
|
|
7642
7708
|
* over these <code>secondarySourceVersions</code> (at the project level). </p>
|
|
7643
7709
|
* @public
|
|
7644
7710
|
*/
|
|
7645
|
-
secondarySourceVersions?: ProjectSourceVersion[];
|
|
7711
|
+
secondarySourceVersions?: ProjectSourceVersion[] | undefined;
|
|
7646
7712
|
/**
|
|
7647
7713
|
* <p>Information to be changed about the build output artifacts for the build
|
|
7648
7714
|
* project.</p>
|
|
7649
7715
|
* @public
|
|
7650
7716
|
*/
|
|
7651
|
-
artifacts?: ProjectArtifacts;
|
|
7717
|
+
artifacts?: ProjectArtifacts | undefined;
|
|
7652
7718
|
/**
|
|
7653
7719
|
* <p> An array of <code>ProjectArtifact</code> objects. </p>
|
|
7654
7720
|
* @public
|
|
7655
7721
|
*/
|
|
7656
|
-
secondaryArtifacts?: ProjectArtifacts[];
|
|
7722
|
+
secondaryArtifacts?: ProjectArtifacts[] | undefined;
|
|
7657
7723
|
/**
|
|
7658
7724
|
* <p>Stores recently used information so that it can be quickly accessed at a later
|
|
7659
7725
|
* time.</p>
|
|
7660
7726
|
* @public
|
|
7661
7727
|
*/
|
|
7662
|
-
cache?: ProjectCache;
|
|
7728
|
+
cache?: ProjectCache | undefined;
|
|
7663
7729
|
/**
|
|
7664
7730
|
* <p>Information to be changed about the build environment for the build project.</p>
|
|
7665
7731
|
* @public
|
|
7666
7732
|
*/
|
|
7667
|
-
environment?: ProjectEnvironment;
|
|
7733
|
+
environment?: ProjectEnvironment | undefined;
|
|
7668
7734
|
/**
|
|
7669
7735
|
* <p>The replacement ARN of the IAM role that enables CodeBuild to interact with dependent
|
|
7670
7736
|
* Amazon Web Services services on behalf of the Amazon Web Services account.</p>
|
|
7671
7737
|
* @public
|
|
7672
7738
|
*/
|
|
7673
|
-
serviceRole?: string;
|
|
7739
|
+
serviceRole?: string | undefined;
|
|
7674
7740
|
/**
|
|
7675
7741
|
* <p>The replacement value in minutes, from 5 to 2160 (36 hours), for CodeBuild to wait before
|
|
7676
7742
|
* timing out any related build that did not get marked as completed.</p>
|
|
7677
7743
|
* @public
|
|
7678
7744
|
*/
|
|
7679
|
-
timeoutInMinutes?: number;
|
|
7745
|
+
timeoutInMinutes?: number | undefined;
|
|
7680
7746
|
/**
|
|
7681
7747
|
* <p> The number of minutes a build is allowed to be queued before it times out. </p>
|
|
7682
7748
|
* @public
|
|
7683
7749
|
*/
|
|
7684
|
-
queuedTimeoutInMinutes?: number;
|
|
7750
|
+
queuedTimeoutInMinutes?: number | undefined;
|
|
7685
7751
|
/**
|
|
7686
7752
|
* <p>The Key Management Service customer master key (CMK) to be used for encrypting the build output
|
|
7687
7753
|
* artifacts.</p>
|
|
@@ -7694,31 +7760,31 @@ export interface UpdateProjectInput {
|
|
|
7694
7760
|
* </p>
|
|
7695
7761
|
* @public
|
|
7696
7762
|
*/
|
|
7697
|
-
encryptionKey?: string;
|
|
7763
|
+
encryptionKey?: string | undefined;
|
|
7698
7764
|
/**
|
|
7699
7765
|
* <p>An updated list of tag key and value pairs associated with this build project.</p>
|
|
7700
7766
|
* <p>These tags are available for use by Amazon Web Services services that support CodeBuild build project
|
|
7701
7767
|
* tags.</p>
|
|
7702
7768
|
* @public
|
|
7703
7769
|
*/
|
|
7704
|
-
tags?: Tag[];
|
|
7770
|
+
tags?: Tag[] | undefined;
|
|
7705
7771
|
/**
|
|
7706
7772
|
* <p>VpcConfig enables CodeBuild to access resources in an Amazon VPC.</p>
|
|
7707
7773
|
* @public
|
|
7708
7774
|
*/
|
|
7709
|
-
vpcConfig?: VpcConfig;
|
|
7775
|
+
vpcConfig?: VpcConfig | undefined;
|
|
7710
7776
|
/**
|
|
7711
7777
|
* <p>Set this to true to generate a publicly accessible URL for your project's build
|
|
7712
7778
|
* badge.</p>
|
|
7713
7779
|
* @public
|
|
7714
7780
|
*/
|
|
7715
|
-
badgeEnabled?: boolean;
|
|
7781
|
+
badgeEnabled?: boolean | undefined;
|
|
7716
7782
|
/**
|
|
7717
7783
|
* <p> Information about logs for the build project. A project can create logs in CloudWatch Logs,
|
|
7718
7784
|
* logs in an S3 bucket, or both. </p>
|
|
7719
7785
|
* @public
|
|
7720
7786
|
*/
|
|
7721
|
-
logsConfig?: LogsConfig;
|
|
7787
|
+
logsConfig?: LogsConfig | undefined;
|
|
7722
7788
|
/**
|
|
7723
7789
|
* <p>
|
|
7724
7790
|
* An array of <code>ProjectFileSystemLocation</code> objects for a CodeBuild build project. A <code>ProjectFileSystemLocation</code> object
|
|
@@ -7727,12 +7793,12 @@ export interface UpdateProjectInput {
|
|
|
7727
7793
|
* </p>
|
|
7728
7794
|
* @public
|
|
7729
7795
|
*/
|
|
7730
|
-
fileSystemLocations?: ProjectFileSystemLocation[];
|
|
7796
|
+
fileSystemLocations?: ProjectFileSystemLocation[] | undefined;
|
|
7731
7797
|
/**
|
|
7732
7798
|
* <p>Contains configuration information about a batch build project.</p>
|
|
7733
7799
|
* @public
|
|
7734
7800
|
*/
|
|
7735
|
-
buildBatchConfig?: ProjectBuildBatchConfig;
|
|
7801
|
+
buildBatchConfig?: ProjectBuildBatchConfig | undefined;
|
|
7736
7802
|
/**
|
|
7737
7803
|
* <p>The maximum number of concurrent builds that are allowed for this project.</p>
|
|
7738
7804
|
* <p>New builds are only started if the current number of builds is less than or equal to this limit.
|
|
@@ -7740,14 +7806,14 @@ export interface UpdateProjectInput {
|
|
|
7740
7806
|
* <p>To remove this limit, set this value to -1.</p>
|
|
7741
7807
|
* @public
|
|
7742
7808
|
*/
|
|
7743
|
-
concurrentBuildLimit?: number;
|
|
7809
|
+
concurrentBuildLimit?: number | undefined;
|
|
7744
7810
|
/**
|
|
7745
7811
|
* <p>The maximum number of additional automatic retries after a failed build. For example, if the
|
|
7746
7812
|
* auto-retry limit is set to 2, CodeBuild will call the <code>RetryBuild</code> API to automatically
|
|
7747
7813
|
* retry your build for up to 2 additional times.</p>
|
|
7748
7814
|
* @public
|
|
7749
7815
|
*/
|
|
7750
|
-
autoRetryLimit?: number;
|
|
7816
|
+
autoRetryLimit?: number | undefined;
|
|
7751
7817
|
}
|
|
7752
7818
|
/**
|
|
7753
7819
|
* @public
|
|
@@ -7757,7 +7823,7 @@ export interface UpdateProjectOutput {
|
|
|
7757
7823
|
* <p>Information about the build project that was changed.</p>
|
|
7758
7824
|
* @public
|
|
7759
7825
|
*/
|
|
7760
|
-
project?: Project;
|
|
7826
|
+
project?: Project | undefined;
|
|
7761
7827
|
}
|
|
7762
7828
|
/**
|
|
7763
7829
|
* @public
|
|
@@ -7788,7 +7854,7 @@ export interface UpdateProjectVisibilityInput {
|
|
|
7788
7854
|
* the project's builds.</p>
|
|
7789
7855
|
* @public
|
|
7790
7856
|
*/
|
|
7791
|
-
resourceAccessRole?: string;
|
|
7857
|
+
resourceAccessRole?: string | undefined;
|
|
7792
7858
|
}
|
|
7793
7859
|
/**
|
|
7794
7860
|
* @public
|
|
@@ -7798,12 +7864,12 @@ export interface UpdateProjectVisibilityOutput {
|
|
|
7798
7864
|
* <p>The Amazon Resource Name (ARN) of the build project.</p>
|
|
7799
7865
|
* @public
|
|
7800
7866
|
*/
|
|
7801
|
-
projectArn?: string;
|
|
7867
|
+
projectArn?: string | undefined;
|
|
7802
7868
|
/**
|
|
7803
7869
|
* <p>Contains the project identifier used with the public build APIs. </p>
|
|
7804
7870
|
* @public
|
|
7805
7871
|
*/
|
|
7806
|
-
publicProjectAlias?: string;
|
|
7872
|
+
publicProjectAlias?: string | undefined;
|
|
7807
7873
|
/**
|
|
7808
7874
|
* <p>Specifies the visibility of the project's builds. Possible values are:</p>
|
|
7809
7875
|
* <dl>
|
|
@@ -7818,7 +7884,7 @@ export interface UpdateProjectVisibilityOutput {
|
|
|
7818
7884
|
* </dl>
|
|
7819
7885
|
* @public
|
|
7820
7886
|
*/
|
|
7821
|
-
projectVisibility?: ProjectVisibilityType;
|
|
7887
|
+
projectVisibility?: ProjectVisibilityType | undefined;
|
|
7822
7888
|
}
|
|
7823
7889
|
/**
|
|
7824
7890
|
* @public
|
|
@@ -7849,7 +7915,7 @@ export interface UpdateReportGroupInput {
|
|
|
7849
7915
|
* </ul>
|
|
7850
7916
|
* @public
|
|
7851
7917
|
*/
|
|
7852
|
-
exportConfig?: ReportExportConfig;
|
|
7918
|
+
exportConfig?: ReportExportConfig | undefined;
|
|
7853
7919
|
/**
|
|
7854
7920
|
* <p>
|
|
7855
7921
|
* An updated list of tag key and value pairs associated with this report group.
|
|
@@ -7858,7 +7924,7 @@ export interface UpdateReportGroupInput {
|
|
|
7858
7924
|
* tags.</p>
|
|
7859
7925
|
* @public
|
|
7860
7926
|
*/
|
|
7861
|
-
tags?: Tag[];
|
|
7927
|
+
tags?: Tag[] | undefined;
|
|
7862
7928
|
}
|
|
7863
7929
|
/**
|
|
7864
7930
|
* @public
|
|
@@ -7870,7 +7936,7 @@ export interface UpdateReportGroupOutput {
|
|
|
7870
7936
|
* </p>
|
|
7871
7937
|
* @public
|
|
7872
7938
|
*/
|
|
7873
|
-
reportGroup?: ReportGroup;
|
|
7939
|
+
reportGroup?: ReportGroup | undefined;
|
|
7874
7940
|
}
|
|
7875
7941
|
/**
|
|
7876
7942
|
* @public
|
|
@@ -7891,14 +7957,14 @@ export interface UpdateWebhookInput {
|
|
|
7891
7957
|
* </note>
|
|
7892
7958
|
* @public
|
|
7893
7959
|
*/
|
|
7894
|
-
branchFilter?: string;
|
|
7960
|
+
branchFilter?: string | undefined;
|
|
7895
7961
|
/**
|
|
7896
7962
|
* <p> A boolean value that specifies whether the associated GitHub repository's secret
|
|
7897
7963
|
* token should be updated. If you use Bitbucket for your repository,
|
|
7898
7964
|
* <code>rotateSecret</code> is ignored. </p>
|
|
7899
7965
|
* @public
|
|
7900
7966
|
*/
|
|
7901
|
-
rotateSecret?: boolean;
|
|
7967
|
+
rotateSecret?: boolean | undefined;
|
|
7902
7968
|
/**
|
|
7903
7969
|
* <p> An array of arrays of <code>WebhookFilter</code> objects used to determine if a
|
|
7904
7970
|
* webhook event can trigger a build. A filter group must contain at least one
|
|
@@ -7906,12 +7972,12 @@ export interface UpdateWebhookInput {
|
|
|
7906
7972
|
* <code>WebhookFilter</code>. </p>
|
|
7907
7973
|
* @public
|
|
7908
7974
|
*/
|
|
7909
|
-
filterGroups?: WebhookFilter[][];
|
|
7975
|
+
filterGroups?: WebhookFilter[][] | undefined;
|
|
7910
7976
|
/**
|
|
7911
7977
|
* <p>Specifies the type of build this webhook will trigger.</p>
|
|
7912
7978
|
* @public
|
|
7913
7979
|
*/
|
|
7914
|
-
buildType?: WebhookBuildType;
|
|
7980
|
+
buildType?: WebhookBuildType | undefined;
|
|
7915
7981
|
}
|
|
7916
7982
|
/**
|
|
7917
7983
|
* @public
|
|
@@ -7922,7 +7988,7 @@ export interface UpdateWebhookOutput {
|
|
|
7922
7988
|
* </p>
|
|
7923
7989
|
* @public
|
|
7924
7990
|
*/
|
|
7925
|
-
webhook?: Webhook;
|
|
7991
|
+
webhook?: Webhook | undefined;
|
|
7926
7992
|
}
|
|
7927
7993
|
/**
|
|
7928
7994
|
* @internal
|