@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.
@@ -34,21 +34,21 @@ export declare const AuthType: {
34
34
  };
35
35
  export type AuthType = (typeof AuthType)[keyof typeof AuthType];
36
36
  export interface AutoRetryConfig {
37
- autoRetryLimit?: number;
38
- autoRetryNumber?: number;
39
- nextAutoRetry?: string;
40
- previousAutoRetry?: string;
37
+ autoRetryLimit?: number | undefined;
38
+ autoRetryNumber?: number | undefined;
39
+ nextAutoRetry?: string | undefined;
40
+ previousAutoRetry?: string | undefined;
41
41
  }
42
42
  export interface BatchDeleteBuildsInput {
43
43
  ids: string[] | undefined;
44
44
  }
45
45
  export interface BuildNotDeleted {
46
- id?: string;
47
- statusCode?: string;
46
+ id?: string | undefined;
47
+ statusCode?: string | undefined;
48
48
  }
49
49
  export interface BatchDeleteBuildsOutput {
50
- buildsDeleted?: string[];
51
- buildsNotDeleted?: BuildNotDeleted[];
50
+ buildsDeleted?: string[] | undefined;
51
+ buildsNotDeleted?: BuildNotDeleted[] | undefined;
52
52
  }
53
53
  export declare class InvalidInputException extends __BaseException {
54
54
  readonly name: "InvalidInputException";
@@ -68,13 +68,13 @@ export declare const BucketOwnerAccess: {
68
68
  export type BucketOwnerAccess =
69
69
  (typeof BucketOwnerAccess)[keyof typeof BucketOwnerAccess];
70
70
  export interface BuildArtifacts {
71
- location?: string;
72
- sha256sum?: string;
73
- md5sum?: string;
74
- overrideArtifactName?: boolean;
75
- encryptionDisabled?: boolean;
76
- artifactIdentifier?: string;
77
- bucketOwnerAccess?: BucketOwnerAccess;
71
+ location?: string | undefined;
72
+ sha256sum?: string | undefined;
73
+ md5sum?: string | undefined;
74
+ overrideArtifactName?: boolean | undefined;
75
+ encryptionDisabled?: boolean | undefined;
76
+ artifactIdentifier?: string | undefined;
77
+ bucketOwnerAccess?: BucketOwnerAccess | undefined;
78
78
  }
79
79
  export declare const BatchReportModeType: {
80
80
  readonly REPORT_AGGREGATED_BATCH: "REPORT_AGGREGATED_BATCH";
@@ -83,15 +83,15 @@ export declare const BatchReportModeType: {
83
83
  export type BatchReportModeType =
84
84
  (typeof BatchReportModeType)[keyof typeof BatchReportModeType];
85
85
  export interface BatchRestrictions {
86
- maximumBuildsAllowed?: number;
87
- computeTypesAllowed?: string[];
86
+ maximumBuildsAllowed?: number | undefined;
87
+ computeTypesAllowed?: string[] | undefined;
88
88
  }
89
89
  export interface ProjectBuildBatchConfig {
90
- serviceRole?: string;
91
- combineArtifacts?: boolean;
92
- restrictions?: BatchRestrictions;
93
- timeoutInMins?: number;
94
- batchReportMode?: BatchReportModeType;
90
+ serviceRole?: string | undefined;
91
+ combineArtifacts?: boolean | undefined;
92
+ restrictions?: BatchRestrictions | undefined;
93
+ timeoutInMins?: number | undefined;
94
+ batchReportMode?: BatchReportModeType | undefined;
95
95
  }
96
96
  export declare const StatusType: {
97
97
  readonly FAILED: "FAILED";
@@ -103,23 +103,23 @@ export declare const StatusType: {
103
103
  };
104
104
  export type StatusType = (typeof StatusType)[keyof typeof StatusType];
105
105
  export interface ResolvedArtifact {
106
- type?: ArtifactsType;
107
- location?: string;
108
- identifier?: string;
106
+ type?: ArtifactsType | undefined;
107
+ location?: string | undefined;
108
+ identifier?: string | undefined;
109
109
  }
110
110
  export interface BuildSummary {
111
- arn?: string;
112
- requestedOn?: Date;
113
- buildStatus?: StatusType;
114
- primaryArtifact?: ResolvedArtifact;
115
- secondaryArtifacts?: ResolvedArtifact[];
111
+ arn?: string | undefined;
112
+ requestedOn?: Date | undefined;
113
+ buildStatus?: StatusType | undefined;
114
+ primaryArtifact?: ResolvedArtifact | undefined;
115
+ secondaryArtifacts?: ResolvedArtifact[] | undefined;
116
116
  }
117
117
  export interface BuildGroup {
118
- identifier?: string;
119
- dependsOn?: string[];
120
- ignoreFailure?: boolean;
121
- currentBuildSummary?: BuildSummary;
122
- priorBuildSummaryList?: BuildSummary[];
118
+ identifier?: string | undefined;
119
+ dependsOn?: string[] | undefined;
120
+ ignoreFailure?: boolean | undefined;
121
+ currentBuildSummary?: BuildSummary | undefined;
122
+ priorBuildSummaryList?: BuildSummary[] | undefined;
123
123
  }
124
124
  export declare const CacheMode: {
125
125
  readonly LOCAL_CUSTOM_CACHE: "LOCAL_CUSTOM_CACHE";
@@ -135,8 +135,8 @@ export declare const CacheType: {
135
135
  export type CacheType = (typeof CacheType)[keyof typeof CacheType];
136
136
  export interface ProjectCache {
137
137
  type: CacheType | undefined;
138
- location?: string;
139
- modes?: CacheMode[];
138
+ location?: string | undefined;
139
+ modes?: CacheMode[] | undefined;
140
140
  }
141
141
  export declare const MachineType: {
142
142
  readonly GENERAL: "GENERAL";
@@ -144,10 +144,10 @@ export declare const MachineType: {
144
144
  };
145
145
  export type MachineType = (typeof MachineType)[keyof typeof MachineType];
146
146
  export interface ComputeConfiguration {
147
- vCpu?: number;
148
- memory?: number;
149
- disk?: number;
150
- machineType?: MachineType;
147
+ vCpu?: number | undefined;
148
+ memory?: number | undefined;
149
+ disk?: number | undefined;
150
+ machineType?: MachineType | undefined;
151
151
  }
152
152
  export declare const ComputeType: {
153
153
  readonly ATTRIBUTE_BASED_COMPUTE: "ATTRIBUTE_BASED_COMPUTE";
@@ -173,10 +173,10 @@ export type EnvironmentVariableType =
173
173
  export interface EnvironmentVariable {
174
174
  name: string | undefined;
175
175
  value: string | undefined;
176
- type?: EnvironmentVariableType;
176
+ type?: EnvironmentVariableType | undefined;
177
177
  }
178
178
  export interface ProjectFleet {
179
- fleetArn?: string;
179
+ fleetArn?: string | undefined;
180
180
  }
181
181
  export declare const ImagePullCredentialsType: {
182
182
  readonly CODEBUILD: "CODEBUILD";
@@ -195,12 +195,15 @@ export interface RegistryCredential {
195
195
  }
196
196
  export declare const EnvironmentType: {
197
197
  readonly ARM_CONTAINER: "ARM_CONTAINER";
198
+ readonly ARM_EC2: "ARM_EC2";
198
199
  readonly ARM_LAMBDA_CONTAINER: "ARM_LAMBDA_CONTAINER";
199
200
  readonly LINUX_CONTAINER: "LINUX_CONTAINER";
201
+ readonly LINUX_EC2: "LINUX_EC2";
200
202
  readonly LINUX_GPU_CONTAINER: "LINUX_GPU_CONTAINER";
201
203
  readonly LINUX_LAMBDA_CONTAINER: "LINUX_LAMBDA_CONTAINER";
202
204
  readonly MAC_ARM: "MAC_ARM";
203
205
  readonly WINDOWS_CONTAINER: "WINDOWS_CONTAINER";
206
+ readonly WINDOWS_EC2: "WINDOWS_EC2";
204
207
  readonly WINDOWS_SERVER_2019_CONTAINER: "WINDOWS_SERVER_2019_CONTAINER";
205
208
  };
206
209
  export type EnvironmentType =
@@ -209,13 +212,13 @@ export interface ProjectEnvironment {
209
212
  type: EnvironmentType | undefined;
210
213
  image: string | undefined;
211
214
  computeType: ComputeType | undefined;
212
- computeConfiguration?: ComputeConfiguration;
213
- fleet?: ProjectFleet;
214
- environmentVariables?: EnvironmentVariable[];
215
- privilegedMode?: boolean;
216
- certificate?: string;
217
- registryCredential?: RegistryCredential;
218
- imagePullCredentialsType?: ImagePullCredentialsType;
215
+ computeConfiguration?: ComputeConfiguration | undefined;
216
+ fleet?: ProjectFleet | undefined;
217
+ environmentVariables?: EnvironmentVariable[] | undefined;
218
+ privilegedMode?: boolean | undefined;
219
+ certificate?: string | undefined;
220
+ registryCredential?: RegistryCredential | undefined;
221
+ imagePullCredentialsType?: ImagePullCredentialsType | undefined;
219
222
  }
220
223
  export declare const FileSystemType: {
221
224
  readonly EFS: "EFS";
@@ -223,11 +226,11 @@ export declare const FileSystemType: {
223
226
  export type FileSystemType =
224
227
  (typeof FileSystemType)[keyof typeof FileSystemType];
225
228
  export interface ProjectFileSystemLocation {
226
- type?: FileSystemType;
227
- location?: string;
228
- mountPoint?: string;
229
- identifier?: string;
230
- mountOptions?: string;
229
+ type?: FileSystemType | undefined;
230
+ location?: string | undefined;
231
+ mountPoint?: string | undefined;
232
+ identifier?: string | undefined;
233
+ mountOptions?: string | undefined;
231
234
  }
232
235
  export declare const LogsConfigStatusType: {
233
236
  readonly DISABLED: "DISABLED";
@@ -237,22 +240,22 @@ export type LogsConfigStatusType =
237
240
  (typeof LogsConfigStatusType)[keyof typeof LogsConfigStatusType];
238
241
  export interface CloudWatchLogsConfig {
239
242
  status: LogsConfigStatusType | undefined;
240
- groupName?: string;
241
- streamName?: string;
243
+ groupName?: string | undefined;
244
+ streamName?: string | undefined;
242
245
  }
243
246
  export interface S3LogsConfig {
244
247
  status: LogsConfigStatusType | undefined;
245
- location?: string;
246
- encryptionDisabled?: boolean;
247
- bucketOwnerAccess?: BucketOwnerAccess;
248
+ location?: string | undefined;
249
+ encryptionDisabled?: boolean | undefined;
250
+ bucketOwnerAccess?: BucketOwnerAccess | undefined;
248
251
  }
249
252
  export interface LogsConfig {
250
- cloudWatchLogs?: CloudWatchLogsConfig;
251
- s3Logs?: S3LogsConfig;
253
+ cloudWatchLogs?: CloudWatchLogsConfig | undefined;
254
+ s3Logs?: S3LogsConfig | undefined;
252
255
  }
253
256
  export interface PhaseContext {
254
- statusCode?: string;
255
- message?: string;
257
+ statusCode?: string | undefined;
258
+ message?: string | undefined;
256
259
  }
257
260
  export declare const BuildBatchPhaseType: {
258
261
  readonly COMBINE_ARTIFACTS: "COMBINE_ARTIFACTS";
@@ -266,12 +269,12 @@ export declare const BuildBatchPhaseType: {
266
269
  export type BuildBatchPhaseType =
267
270
  (typeof BuildBatchPhaseType)[keyof typeof BuildBatchPhaseType];
268
271
  export interface BuildBatchPhase {
269
- phaseType?: BuildBatchPhaseType;
270
- phaseStatus?: StatusType;
271
- startTime?: Date;
272
- endTime?: Date;
273
- durationInSeconds?: number;
274
- contexts?: PhaseContext[];
272
+ phaseType?: BuildBatchPhaseType | undefined;
273
+ phaseStatus?: StatusType | undefined;
274
+ startTime?: Date | undefined;
275
+ endTime?: Date | undefined;
276
+ durationInSeconds?: number | undefined;
277
+ contexts?: PhaseContext[] | undefined;
275
278
  }
276
279
  export declare const SourceAuthType: {
277
280
  readonly CODECONNECTIONS: "CODECONNECTIONS";
@@ -282,11 +285,11 @@ export type SourceAuthType =
282
285
  (typeof SourceAuthType)[keyof typeof SourceAuthType];
283
286
  export interface SourceAuth {
284
287
  type: SourceAuthType | undefined;
285
- resource?: string;
288
+ resource?: string | undefined;
286
289
  }
287
290
  export interface BuildStatusConfig {
288
- context?: string;
289
- targetUrl?: string;
291
+ context?: string | undefined;
292
+ targetUrl?: string | undefined;
290
293
  }
291
294
  export interface GitSubmodulesConfig {
292
295
  fetchSubmodules: boolean | undefined;
@@ -305,85 +308,85 @@ export declare const SourceType: {
305
308
  export type SourceType = (typeof SourceType)[keyof typeof SourceType];
306
309
  export interface ProjectSource {
307
310
  type: SourceType | undefined;
308
- location?: string;
309
- gitCloneDepth?: number;
310
- gitSubmodulesConfig?: GitSubmodulesConfig;
311
- buildspec?: string;
312
- auth?: SourceAuth;
313
- reportBuildStatus?: boolean;
314
- buildStatusConfig?: BuildStatusConfig;
315
- insecureSsl?: boolean;
316
- sourceIdentifier?: string;
311
+ location?: string | undefined;
312
+ gitCloneDepth?: number | undefined;
313
+ gitSubmodulesConfig?: GitSubmodulesConfig | undefined;
314
+ buildspec?: string | undefined;
315
+ auth?: SourceAuth | undefined;
316
+ reportBuildStatus?: boolean | undefined;
317
+ buildStatusConfig?: BuildStatusConfig | undefined;
318
+ insecureSsl?: boolean | undefined;
319
+ sourceIdentifier?: string | undefined;
317
320
  }
318
321
  export interface ProjectSourceVersion {
319
322
  sourceIdentifier: string | undefined;
320
323
  sourceVersion: string | undefined;
321
324
  }
322
325
  export interface VpcConfig {
323
- vpcId?: string;
324
- subnets?: string[];
325
- securityGroupIds?: string[];
326
+ vpcId?: string | undefined;
327
+ subnets?: string[] | undefined;
328
+ securityGroupIds?: string[] | undefined;
326
329
  }
327
330
  export interface BuildBatch {
328
- id?: string;
329
- arn?: string;
330
- startTime?: Date;
331
- endTime?: Date;
332
- currentPhase?: string;
333
- buildBatchStatus?: StatusType;
334
- sourceVersion?: string;
335
- resolvedSourceVersion?: string;
336
- projectName?: string;
337
- phases?: BuildBatchPhase[];
338
- source?: ProjectSource;
339
- secondarySources?: ProjectSource[];
340
- secondarySourceVersions?: ProjectSourceVersion[];
341
- artifacts?: BuildArtifacts;
342
- secondaryArtifacts?: BuildArtifacts[];
343
- cache?: ProjectCache;
344
- environment?: ProjectEnvironment;
345
- serviceRole?: string;
346
- logConfig?: LogsConfig;
347
- buildTimeoutInMinutes?: number;
348
- queuedTimeoutInMinutes?: number;
349
- complete?: boolean;
350
- initiator?: string;
351
- vpcConfig?: VpcConfig;
352
- encryptionKey?: string;
353
- buildBatchNumber?: number;
354
- fileSystemLocations?: ProjectFileSystemLocation[];
355
- buildBatchConfig?: ProjectBuildBatchConfig;
356
- buildGroups?: BuildGroup[];
357
- debugSessionEnabled?: boolean;
331
+ id?: string | undefined;
332
+ arn?: string | undefined;
333
+ startTime?: Date | undefined;
334
+ endTime?: Date | undefined;
335
+ currentPhase?: string | undefined;
336
+ buildBatchStatus?: StatusType | undefined;
337
+ sourceVersion?: string | undefined;
338
+ resolvedSourceVersion?: string | undefined;
339
+ projectName?: string | undefined;
340
+ phases?: BuildBatchPhase[] | undefined;
341
+ source?: ProjectSource | undefined;
342
+ secondarySources?: ProjectSource[] | undefined;
343
+ secondarySourceVersions?: ProjectSourceVersion[] | undefined;
344
+ artifacts?: BuildArtifacts | undefined;
345
+ secondaryArtifacts?: BuildArtifacts[] | undefined;
346
+ cache?: ProjectCache | undefined;
347
+ environment?: ProjectEnvironment | undefined;
348
+ serviceRole?: string | undefined;
349
+ logConfig?: LogsConfig | undefined;
350
+ buildTimeoutInMinutes?: number | undefined;
351
+ queuedTimeoutInMinutes?: number | undefined;
352
+ complete?: boolean | undefined;
353
+ initiator?: string | undefined;
354
+ vpcConfig?: VpcConfig | undefined;
355
+ encryptionKey?: string | undefined;
356
+ buildBatchNumber?: number | undefined;
357
+ fileSystemLocations?: ProjectFileSystemLocation[] | undefined;
358
+ buildBatchConfig?: ProjectBuildBatchConfig | undefined;
359
+ buildGroups?: BuildGroup[] | undefined;
360
+ debugSessionEnabled?: boolean | undefined;
358
361
  }
359
362
  export interface BatchGetBuildBatchesOutput {
360
- buildBatches?: BuildBatch[];
361
- buildBatchesNotFound?: string[];
363
+ buildBatches?: BuildBatch[] | undefined;
364
+ buildBatchesNotFound?: string[] | undefined;
362
365
  }
363
366
  export interface BatchGetBuildsInput {
364
367
  ids: string[] | undefined;
365
368
  }
366
369
  export interface DebugSession {
367
- sessionEnabled?: boolean;
368
- sessionTarget?: string;
370
+ sessionEnabled?: boolean | undefined;
371
+ sessionTarget?: string | undefined;
369
372
  }
370
373
  export interface ExportedEnvironmentVariable {
371
- name?: string;
372
- value?: string;
374
+ name?: string | undefined;
375
+ value?: string | undefined;
373
376
  }
374
377
  export interface LogsLocation {
375
- groupName?: string;
376
- streamName?: string;
377
- deepLink?: string;
378
- s3DeepLink?: string;
379
- cloudWatchLogsArn?: string;
380
- s3LogsArn?: string;
381
- cloudWatchLogs?: CloudWatchLogsConfig;
382
- s3Logs?: S3LogsConfig;
378
+ groupName?: string | undefined;
379
+ streamName?: string | undefined;
380
+ deepLink?: string | undefined;
381
+ s3DeepLink?: string | undefined;
382
+ cloudWatchLogsArn?: string | undefined;
383
+ s3LogsArn?: string | undefined;
384
+ cloudWatchLogs?: CloudWatchLogsConfig | undefined;
385
+ s3Logs?: S3LogsConfig | undefined;
383
386
  }
384
387
  export interface NetworkInterface {
385
- subnetId?: string;
386
- networkInterfaceId?: string;
388
+ subnetId?: string | undefined;
389
+ networkInterfaceId?: string | undefined;
387
390
  }
388
391
  export declare const BuildPhaseType: {
389
392
  readonly BUILD: "BUILD";
@@ -401,51 +404,51 @@ export declare const BuildPhaseType: {
401
404
  export type BuildPhaseType =
402
405
  (typeof BuildPhaseType)[keyof typeof BuildPhaseType];
403
406
  export interface BuildPhase {
404
- phaseType?: BuildPhaseType;
405
- phaseStatus?: StatusType;
406
- startTime?: Date;
407
- endTime?: Date;
408
- durationInSeconds?: number;
409
- contexts?: PhaseContext[];
407
+ phaseType?: BuildPhaseType | undefined;
408
+ phaseStatus?: StatusType | undefined;
409
+ startTime?: Date | undefined;
410
+ endTime?: Date | undefined;
411
+ durationInSeconds?: number | undefined;
412
+ contexts?: PhaseContext[] | undefined;
410
413
  }
411
414
  export interface Build {
412
- id?: string;
413
- arn?: string;
414
- buildNumber?: number;
415
- startTime?: Date;
416
- endTime?: Date;
417
- currentPhase?: string;
418
- buildStatus?: StatusType;
419
- sourceVersion?: string;
420
- resolvedSourceVersion?: string;
421
- projectName?: string;
422
- phases?: BuildPhase[];
423
- source?: ProjectSource;
424
- secondarySources?: ProjectSource[];
425
- secondarySourceVersions?: ProjectSourceVersion[];
426
- artifacts?: BuildArtifacts;
427
- secondaryArtifacts?: BuildArtifacts[];
428
- cache?: ProjectCache;
429
- environment?: ProjectEnvironment;
430
- serviceRole?: string;
431
- logs?: LogsLocation;
432
- timeoutInMinutes?: number;
433
- queuedTimeoutInMinutes?: number;
434
- buildComplete?: boolean;
435
- initiator?: string;
436
- vpcConfig?: VpcConfig;
437
- networkInterface?: NetworkInterface;
438
- encryptionKey?: string;
439
- exportedEnvironmentVariables?: ExportedEnvironmentVariable[];
440
- reportArns?: string[];
441
- fileSystemLocations?: ProjectFileSystemLocation[];
442
- debugSession?: DebugSession;
443
- buildBatchArn?: string;
444
- autoRetryConfig?: AutoRetryConfig;
415
+ id?: string | undefined;
416
+ arn?: string | undefined;
417
+ buildNumber?: number | undefined;
418
+ startTime?: Date | undefined;
419
+ endTime?: Date | undefined;
420
+ currentPhase?: string | undefined;
421
+ buildStatus?: StatusType | undefined;
422
+ sourceVersion?: string | undefined;
423
+ resolvedSourceVersion?: string | undefined;
424
+ projectName?: string | undefined;
425
+ phases?: BuildPhase[] | undefined;
426
+ source?: ProjectSource | undefined;
427
+ secondarySources?: ProjectSource[] | undefined;
428
+ secondarySourceVersions?: ProjectSourceVersion[] | undefined;
429
+ artifacts?: BuildArtifacts | undefined;
430
+ secondaryArtifacts?: BuildArtifacts[] | undefined;
431
+ cache?: ProjectCache | undefined;
432
+ environment?: ProjectEnvironment | undefined;
433
+ serviceRole?: string | undefined;
434
+ logs?: LogsLocation | undefined;
435
+ timeoutInMinutes?: number | undefined;
436
+ queuedTimeoutInMinutes?: number | undefined;
437
+ buildComplete?: boolean | undefined;
438
+ initiator?: string | undefined;
439
+ vpcConfig?: VpcConfig | undefined;
440
+ networkInterface?: NetworkInterface | undefined;
441
+ encryptionKey?: string | undefined;
442
+ exportedEnvironmentVariables?: ExportedEnvironmentVariable[] | undefined;
443
+ reportArns?: string[] | undefined;
444
+ fileSystemLocations?: ProjectFileSystemLocation[] | undefined;
445
+ debugSession?: DebugSession | undefined;
446
+ buildBatchArn?: string | undefined;
447
+ autoRetryConfig?: AutoRetryConfig | undefined;
445
448
  }
446
449
  export interface BatchGetBuildsOutput {
447
- builds?: Build[];
448
- buildsNotFound?: string[];
450
+ builds?: Build[] | undefined;
451
+ buildsNotFound?: string[] | undefined;
449
452
  }
450
453
  export interface BatchGetFleetsInput {
451
454
  names: string[] | undefined;
@@ -480,8 +483,8 @@ export interface FleetProxyRule {
480
483
  entities: string[] | undefined;
481
484
  }
482
485
  export interface ProxyConfiguration {
483
- defaultBehavior?: FleetProxyRuleBehavior;
484
- orderedProxyRules?: FleetProxyRule[];
486
+ defaultBehavior?: FleetProxyRuleBehavior | undefined;
487
+ orderedProxyRules?: FleetProxyRule[] | undefined;
485
488
  }
486
489
  export declare const FleetScalingType: {
487
490
  readonly TARGET_TRACKING_SCALING: "TARGET_TRACKING_SCALING";
@@ -494,14 +497,16 @@ export declare const FleetScalingMetricType: {
494
497
  export type FleetScalingMetricType =
495
498
  (typeof FleetScalingMetricType)[keyof typeof FleetScalingMetricType];
496
499
  export interface TargetTrackingScalingConfiguration {
497
- metricType?: FleetScalingMetricType;
498
- targetValue?: number;
500
+ metricType?: FleetScalingMetricType | undefined;
501
+ targetValue?: number | undefined;
499
502
  }
500
503
  export interface ScalingConfigurationOutput {
501
- scalingType?: FleetScalingType;
502
- targetTrackingScalingConfigs?: TargetTrackingScalingConfiguration[];
503
- maxCapacity?: number;
504
- desiredCapacity?: number;
504
+ scalingType?: FleetScalingType | undefined;
505
+ targetTrackingScalingConfigs?:
506
+ | TargetTrackingScalingConfiguration[]
507
+ | undefined;
508
+ maxCapacity?: number | undefined;
509
+ desiredCapacity?: number | undefined;
505
510
  }
506
511
  export declare const FleetContextCode: {
507
512
  readonly ACTION_REQUIRED: "ACTION_REQUIRED";
@@ -525,55 +530,55 @@ export declare const FleetStatusCode: {
525
530
  export type FleetStatusCode =
526
531
  (typeof FleetStatusCode)[keyof typeof FleetStatusCode];
527
532
  export interface FleetStatus {
528
- statusCode?: FleetStatusCode;
529
- context?: FleetContextCode;
530
- message?: string;
533
+ statusCode?: FleetStatusCode | undefined;
534
+ context?: FleetContextCode | undefined;
535
+ message?: string | undefined;
531
536
  }
532
537
  export interface Tag {
533
- key?: string;
534
- value?: string;
538
+ key?: string | undefined;
539
+ value?: string | undefined;
535
540
  }
536
541
  export interface Fleet {
537
- arn?: string;
538
- name?: string;
539
- id?: string;
540
- created?: Date;
541
- lastModified?: Date;
542
- status?: FleetStatus;
543
- baseCapacity?: number;
544
- environmentType?: EnvironmentType;
545
- computeType?: ComputeType;
546
- computeConfiguration?: ComputeConfiguration;
547
- scalingConfiguration?: ScalingConfigurationOutput;
548
- overflowBehavior?: FleetOverflowBehavior;
549
- vpcConfig?: VpcConfig;
550
- proxyConfiguration?: ProxyConfiguration;
551
- imageId?: string;
552
- fleetServiceRole?: string;
553
- tags?: Tag[];
542
+ arn?: string | undefined;
543
+ name?: string | undefined;
544
+ id?: string | undefined;
545
+ created?: Date | undefined;
546
+ lastModified?: Date | undefined;
547
+ status?: FleetStatus | undefined;
548
+ baseCapacity?: number | undefined;
549
+ environmentType?: EnvironmentType | undefined;
550
+ computeType?: ComputeType | undefined;
551
+ computeConfiguration?: ComputeConfiguration | undefined;
552
+ scalingConfiguration?: ScalingConfigurationOutput | undefined;
553
+ overflowBehavior?: FleetOverflowBehavior | undefined;
554
+ vpcConfig?: VpcConfig | undefined;
555
+ proxyConfiguration?: ProxyConfiguration | undefined;
556
+ imageId?: string | undefined;
557
+ fleetServiceRole?: string | undefined;
558
+ tags?: Tag[] | undefined;
554
559
  }
555
560
  export interface BatchGetFleetsOutput {
556
- fleets?: Fleet[];
557
- fleetsNotFound?: string[];
561
+ fleets?: Fleet[] | undefined;
562
+ fleetsNotFound?: string[] | undefined;
558
563
  }
559
564
  export interface BatchGetProjectsInput {
560
565
  names: string[] | undefined;
561
566
  }
562
567
  export interface ProjectArtifacts {
563
568
  type: ArtifactsType | undefined;
564
- location?: string;
565
- path?: string;
566
- namespaceType?: ArtifactNamespace;
567
- name?: string;
568
- packaging?: ArtifactPackaging;
569
- overrideArtifactName?: boolean;
570
- encryptionDisabled?: boolean;
571
- artifactIdentifier?: string;
572
- bucketOwnerAccess?: BucketOwnerAccess;
569
+ location?: string | undefined;
570
+ path?: string | undefined;
571
+ namespaceType?: ArtifactNamespace | undefined;
572
+ name?: string | undefined;
573
+ packaging?: ArtifactPackaging | undefined;
574
+ overrideArtifactName?: boolean | undefined;
575
+ encryptionDisabled?: boolean | undefined;
576
+ artifactIdentifier?: string | undefined;
577
+ bucketOwnerAccess?: BucketOwnerAccess | undefined;
573
578
  }
574
579
  export interface ProjectBadge {
575
- badgeEnabled?: boolean;
576
- badgeRequestUrl?: string;
580
+ badgeEnabled?: boolean | undefined;
581
+ badgeRequestUrl?: string | undefined;
577
582
  }
578
583
  export declare const ProjectVisibilityType: {
579
584
  readonly PRIVATE: "PRIVATE";
@@ -604,7 +609,7 @@ export type WebhookFilterType =
604
609
  export interface WebhookFilter {
605
610
  type: WebhookFilterType | undefined;
606
611
  pattern: string | undefined;
607
- excludeMatchedPattern?: boolean;
612
+ excludeMatchedPattern?: boolean | undefined;
608
613
  }
609
614
  export declare const WebhookScopeType: {
610
615
  readonly GITHUB_GLOBAL: "GITHUB_GLOBAL";
@@ -615,54 +620,54 @@ export type WebhookScopeType =
615
620
  (typeof WebhookScopeType)[keyof typeof WebhookScopeType];
616
621
  export interface ScopeConfiguration {
617
622
  name: string | undefined;
618
- domain?: string;
623
+ domain?: string | undefined;
619
624
  scope: WebhookScopeType | undefined;
620
625
  }
621
626
  export interface Webhook {
622
- url?: string;
623
- payloadUrl?: string;
624
- secret?: string;
625
- branchFilter?: string;
626
- filterGroups?: WebhookFilter[][];
627
- buildType?: WebhookBuildType;
628
- manualCreation?: boolean;
629
- lastModifiedSecret?: Date;
630
- scopeConfiguration?: ScopeConfiguration;
627
+ url?: string | undefined;
628
+ payloadUrl?: string | undefined;
629
+ secret?: string | undefined;
630
+ branchFilter?: string | undefined;
631
+ filterGroups?: WebhookFilter[][] | undefined;
632
+ buildType?: WebhookBuildType | undefined;
633
+ manualCreation?: boolean | undefined;
634
+ lastModifiedSecret?: Date | undefined;
635
+ scopeConfiguration?: ScopeConfiguration | undefined;
631
636
  }
632
637
  export interface Project {
633
- name?: string;
634
- arn?: string;
635
- description?: string;
636
- source?: ProjectSource;
637
- secondarySources?: ProjectSource[];
638
- sourceVersion?: string;
639
- secondarySourceVersions?: ProjectSourceVersion[];
640
- artifacts?: ProjectArtifacts;
641
- secondaryArtifacts?: ProjectArtifacts[];
642
- cache?: ProjectCache;
643
- environment?: ProjectEnvironment;
644
- serviceRole?: string;
645
- timeoutInMinutes?: number;
646
- queuedTimeoutInMinutes?: number;
647
- encryptionKey?: string;
648
- tags?: Tag[];
649
- created?: Date;
650
- lastModified?: Date;
651
- webhook?: Webhook;
652
- vpcConfig?: VpcConfig;
653
- badge?: ProjectBadge;
654
- logsConfig?: LogsConfig;
655
- fileSystemLocations?: ProjectFileSystemLocation[];
656
- buildBatchConfig?: ProjectBuildBatchConfig;
657
- concurrentBuildLimit?: number;
658
- projectVisibility?: ProjectVisibilityType;
659
- publicProjectAlias?: string;
660
- resourceAccessRole?: string;
661
- autoRetryLimit?: number;
638
+ name?: string | undefined;
639
+ arn?: string | undefined;
640
+ description?: string | undefined;
641
+ source?: ProjectSource | undefined;
642
+ secondarySources?: ProjectSource[] | undefined;
643
+ sourceVersion?: string | undefined;
644
+ secondarySourceVersions?: ProjectSourceVersion[] | undefined;
645
+ artifacts?: ProjectArtifacts | undefined;
646
+ secondaryArtifacts?: ProjectArtifacts[] | undefined;
647
+ cache?: ProjectCache | undefined;
648
+ environment?: ProjectEnvironment | undefined;
649
+ serviceRole?: string | undefined;
650
+ timeoutInMinutes?: number | undefined;
651
+ queuedTimeoutInMinutes?: number | undefined;
652
+ encryptionKey?: string | undefined;
653
+ tags?: Tag[] | undefined;
654
+ created?: Date | undefined;
655
+ lastModified?: Date | undefined;
656
+ webhook?: Webhook | undefined;
657
+ vpcConfig?: VpcConfig | undefined;
658
+ badge?: ProjectBadge | undefined;
659
+ logsConfig?: LogsConfig | undefined;
660
+ fileSystemLocations?: ProjectFileSystemLocation[] | undefined;
661
+ buildBatchConfig?: ProjectBuildBatchConfig | undefined;
662
+ concurrentBuildLimit?: number | undefined;
663
+ projectVisibility?: ProjectVisibilityType | undefined;
664
+ publicProjectAlias?: string | undefined;
665
+ resourceAccessRole?: string | undefined;
666
+ autoRetryLimit?: number | undefined;
662
667
  }
663
668
  export interface BatchGetProjectsOutput {
664
- projects?: Project[];
665
- projectsNotFound?: string[];
669
+ projects?: Project[] | undefined;
670
+ projectsNotFound?: string[] | undefined;
666
671
  }
667
672
  export interface BatchGetReportGroupsInput {
668
673
  reportGroupArns: string[] | undefined;
@@ -680,16 +685,16 @@ export declare const ReportPackagingType: {
680
685
  export type ReportPackagingType =
681
686
  (typeof ReportPackagingType)[keyof typeof ReportPackagingType];
682
687
  export interface S3ReportExportConfig {
683
- bucket?: string;
684
- bucketOwner?: string;
685
- path?: string;
686
- packaging?: ReportPackagingType;
687
- encryptionKey?: string;
688
- encryptionDisabled?: boolean;
688
+ bucket?: string | undefined;
689
+ bucketOwner?: string | undefined;
690
+ path?: string | undefined;
691
+ packaging?: ReportPackagingType | undefined;
692
+ encryptionKey?: string | undefined;
693
+ encryptionDisabled?: boolean | undefined;
689
694
  }
690
695
  export interface ReportExportConfig {
691
- exportConfigType?: ReportExportConfigType;
692
- s3Destination?: S3ReportExportConfig;
696
+ exportConfigType?: ReportExportConfigType | undefined;
697
+ s3Destination?: S3ReportExportConfig | undefined;
693
698
  }
694
699
  export declare const ReportGroupStatusType: {
695
700
  readonly ACTIVE: "ACTIVE";
@@ -703,29 +708,29 @@ export declare const ReportType: {
703
708
  };
704
709
  export type ReportType = (typeof ReportType)[keyof typeof ReportType];
705
710
  export interface ReportGroup {
706
- arn?: string;
707
- name?: string;
708
- type?: ReportType;
709
- exportConfig?: ReportExportConfig;
710
- created?: Date;
711
- lastModified?: Date;
712
- tags?: Tag[];
713
- status?: ReportGroupStatusType;
711
+ arn?: string | undefined;
712
+ name?: string | undefined;
713
+ type?: ReportType | undefined;
714
+ exportConfig?: ReportExportConfig | undefined;
715
+ created?: Date | undefined;
716
+ lastModified?: Date | undefined;
717
+ tags?: Tag[] | undefined;
718
+ status?: ReportGroupStatusType | undefined;
714
719
  }
715
720
  export interface BatchGetReportGroupsOutput {
716
- reportGroups?: ReportGroup[];
717
- reportGroupsNotFound?: string[];
721
+ reportGroups?: ReportGroup[] | undefined;
722
+ reportGroupsNotFound?: string[] | undefined;
718
723
  }
719
724
  export interface BatchGetReportsInput {
720
725
  reportArns: string[] | undefined;
721
726
  }
722
727
  export interface CodeCoverageReportSummary {
723
- lineCoveragePercentage?: number;
724
- linesCovered?: number;
725
- linesMissed?: number;
726
- branchCoveragePercentage?: number;
727
- branchesCovered?: number;
728
- branchesMissed?: number;
728
+ lineCoveragePercentage?: number | undefined;
729
+ linesCovered?: number | undefined;
730
+ linesMissed?: number | undefined;
731
+ branchCoveragePercentage?: number | undefined;
732
+ branchesCovered?: number | undefined;
733
+ branchesMissed?: number | undefined;
729
734
  }
730
735
  export declare const ReportStatusType: {
731
736
  readonly DELETING: "DELETING";
@@ -742,47 +747,49 @@ export interface TestReportSummary {
742
747
  durationInNanoSeconds: number | undefined;
743
748
  }
744
749
  export interface Report {
745
- arn?: string;
746
- type?: ReportType;
747
- name?: string;
748
- reportGroupArn?: string;
749
- executionId?: string;
750
- status?: ReportStatusType;
751
- created?: Date;
752
- expired?: Date;
753
- exportConfig?: ReportExportConfig;
754
- truncated?: boolean;
755
- testSummary?: TestReportSummary;
756
- codeCoverageSummary?: CodeCoverageReportSummary;
750
+ arn?: string | undefined;
751
+ type?: ReportType | undefined;
752
+ name?: string | undefined;
753
+ reportGroupArn?: string | undefined;
754
+ executionId?: string | undefined;
755
+ status?: ReportStatusType | undefined;
756
+ created?: Date | undefined;
757
+ expired?: Date | undefined;
758
+ exportConfig?: ReportExportConfig | undefined;
759
+ truncated?: boolean | undefined;
760
+ testSummary?: TestReportSummary | undefined;
761
+ codeCoverageSummary?: CodeCoverageReportSummary | undefined;
757
762
  }
758
763
  export interface BatchGetReportsOutput {
759
- reports?: Report[];
760
- reportsNotFound?: string[];
764
+ reports?: Report[] | undefined;
765
+ reportsNotFound?: string[] | undefined;
761
766
  }
762
767
  export interface BuildBatchFilter {
763
- status?: StatusType;
768
+ status?: StatusType | undefined;
764
769
  }
765
770
  export interface ScalingConfigurationInput {
766
- scalingType?: FleetScalingType;
767
- targetTrackingScalingConfigs?: TargetTrackingScalingConfiguration[];
768
- maxCapacity?: number;
771
+ scalingType?: FleetScalingType | undefined;
772
+ targetTrackingScalingConfigs?:
773
+ | TargetTrackingScalingConfiguration[]
774
+ | undefined;
775
+ maxCapacity?: number | undefined;
769
776
  }
770
777
  export interface CreateFleetInput {
771
778
  name: string | undefined;
772
779
  baseCapacity: number | undefined;
773
780
  environmentType: EnvironmentType | undefined;
774
781
  computeType: ComputeType | undefined;
775
- computeConfiguration?: ComputeConfiguration;
776
- scalingConfiguration?: ScalingConfigurationInput;
777
- overflowBehavior?: FleetOverflowBehavior;
778
- vpcConfig?: VpcConfig;
779
- proxyConfiguration?: ProxyConfiguration;
780
- imageId?: string;
781
- fleetServiceRole?: string;
782
- tags?: Tag[];
782
+ computeConfiguration?: ComputeConfiguration | undefined;
783
+ scalingConfiguration?: ScalingConfigurationInput | undefined;
784
+ overflowBehavior?: FleetOverflowBehavior | undefined;
785
+ vpcConfig?: VpcConfig | undefined;
786
+ proxyConfiguration?: ProxyConfiguration | undefined;
787
+ imageId?: string | undefined;
788
+ fleetServiceRole?: string | undefined;
789
+ tags?: Tag[] | undefined;
783
790
  }
784
791
  export interface CreateFleetOutput {
785
- fleet?: Fleet;
792
+ fleet?: Fleet | undefined;
786
793
  }
787
794
  export declare class ResourceAlreadyExistsException extends __BaseException {
788
795
  readonly name: "ResourceAlreadyExistsException";
@@ -793,50 +800,50 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
793
800
  }
794
801
  export interface CreateProjectInput {
795
802
  name: string | undefined;
796
- description?: string;
803
+ description?: string | undefined;
797
804
  source: ProjectSource | undefined;
798
- secondarySources?: ProjectSource[];
799
- sourceVersion?: string;
800
- secondarySourceVersions?: ProjectSourceVersion[];
805
+ secondarySources?: ProjectSource[] | undefined;
806
+ sourceVersion?: string | undefined;
807
+ secondarySourceVersions?: ProjectSourceVersion[] | undefined;
801
808
  artifacts: ProjectArtifacts | undefined;
802
- secondaryArtifacts?: ProjectArtifacts[];
803
- cache?: ProjectCache;
809
+ secondaryArtifacts?: ProjectArtifacts[] | undefined;
810
+ cache?: ProjectCache | undefined;
804
811
  environment: ProjectEnvironment | undefined;
805
812
  serviceRole: string | undefined;
806
- timeoutInMinutes?: number;
807
- queuedTimeoutInMinutes?: number;
808
- encryptionKey?: string;
809
- tags?: Tag[];
810
- vpcConfig?: VpcConfig;
811
- badgeEnabled?: boolean;
812
- logsConfig?: LogsConfig;
813
- fileSystemLocations?: ProjectFileSystemLocation[];
814
- buildBatchConfig?: ProjectBuildBatchConfig;
815
- concurrentBuildLimit?: number;
816
- autoRetryLimit?: number;
813
+ timeoutInMinutes?: number | undefined;
814
+ queuedTimeoutInMinutes?: number | undefined;
815
+ encryptionKey?: string | undefined;
816
+ tags?: Tag[] | undefined;
817
+ vpcConfig?: VpcConfig | undefined;
818
+ badgeEnabled?: boolean | undefined;
819
+ logsConfig?: LogsConfig | undefined;
820
+ fileSystemLocations?: ProjectFileSystemLocation[] | undefined;
821
+ buildBatchConfig?: ProjectBuildBatchConfig | undefined;
822
+ concurrentBuildLimit?: number | undefined;
823
+ autoRetryLimit?: number | undefined;
817
824
  }
818
825
  export interface CreateProjectOutput {
819
- project?: Project;
826
+ project?: Project | undefined;
820
827
  }
821
828
  export interface CreateReportGroupInput {
822
829
  name: string | undefined;
823
830
  type: ReportType | undefined;
824
831
  exportConfig: ReportExportConfig | undefined;
825
- tags?: Tag[];
832
+ tags?: Tag[] | undefined;
826
833
  }
827
834
  export interface CreateReportGroupOutput {
828
- reportGroup?: ReportGroup;
835
+ reportGroup?: ReportGroup | undefined;
829
836
  }
830
837
  export interface CreateWebhookInput {
831
838
  projectName: string | undefined;
832
- branchFilter?: string;
833
- filterGroups?: WebhookFilter[][];
834
- buildType?: WebhookBuildType;
835
- manualCreation?: boolean;
836
- scopeConfiguration?: ScopeConfiguration;
839
+ branchFilter?: string | undefined;
840
+ filterGroups?: WebhookFilter[][] | undefined;
841
+ buildType?: WebhookBuildType | undefined;
842
+ manualCreation?: boolean | undefined;
843
+ scopeConfiguration?: ScopeConfiguration | undefined;
837
844
  }
838
845
  export interface CreateWebhookOutput {
839
- webhook?: Webhook;
846
+ webhook?: Webhook | undefined;
840
847
  }
841
848
  export declare class OAuthProviderException extends __BaseException {
842
849
  readonly name: "OAuthProviderException";
@@ -856,9 +863,9 @@ export interface DeleteBuildBatchInput {
856
863
  id: string | undefined;
857
864
  }
858
865
  export interface DeleteBuildBatchOutput {
859
- statusCode?: string;
860
- buildsDeleted?: string[];
861
- buildsNotDeleted?: BuildNotDeleted[];
866
+ statusCode?: string | undefined;
867
+ buildsDeleted?: string[] | undefined;
868
+ buildsNotDeleted?: BuildNotDeleted[] | undefined;
862
869
  }
863
870
  export interface DeleteFleetInput {
864
871
  arn: string | undefined;
@@ -874,7 +881,7 @@ export interface DeleteReportInput {
874
881
  export interface DeleteReportOutput {}
875
882
  export interface DeleteReportGroupInput {
876
883
  arn: string | undefined;
877
- deleteReports?: boolean;
884
+ deleteReports?: boolean | undefined;
878
885
  }
879
886
  export interface DeleteReportGroupOutput {}
880
887
  export interface DeleteResourcePolicyInput {
@@ -885,7 +892,7 @@ export interface DeleteSourceCredentialsInput {
885
892
  arn: string | undefined;
886
893
  }
887
894
  export interface DeleteSourceCredentialsOutput {
888
- arn?: string;
895
+ arn?: string | undefined;
889
896
  }
890
897
  export interface DeleteWebhookInput {
891
898
  projectName: string | undefined;
@@ -904,52 +911,52 @@ export declare const SortOrderType: {
904
911
  export type SortOrderType = (typeof SortOrderType)[keyof typeof SortOrderType];
905
912
  export interface DescribeCodeCoveragesInput {
906
913
  reportArn: string | undefined;
907
- nextToken?: string;
908
- maxResults?: number;
909
- sortOrder?: SortOrderType;
910
- sortBy?: ReportCodeCoverageSortByType;
911
- minLineCoveragePercentage?: number;
912
- maxLineCoveragePercentage?: number;
914
+ nextToken?: string | undefined;
915
+ maxResults?: number | undefined;
916
+ sortOrder?: SortOrderType | undefined;
917
+ sortBy?: ReportCodeCoverageSortByType | undefined;
918
+ minLineCoveragePercentage?: number | undefined;
919
+ maxLineCoveragePercentage?: number | undefined;
913
920
  }
914
921
  export interface CodeCoverage {
915
- id?: string;
916
- reportARN?: string;
917
- filePath?: string;
918
- lineCoveragePercentage?: number;
919
- linesCovered?: number;
920
- linesMissed?: number;
921
- branchCoveragePercentage?: number;
922
- branchesCovered?: number;
923
- branchesMissed?: number;
924
- expired?: Date;
922
+ id?: string | undefined;
923
+ reportARN?: string | undefined;
924
+ filePath?: string | undefined;
925
+ lineCoveragePercentage?: number | undefined;
926
+ linesCovered?: number | undefined;
927
+ linesMissed?: number | undefined;
928
+ branchCoveragePercentage?: number | undefined;
929
+ branchesCovered?: number | undefined;
930
+ branchesMissed?: number | undefined;
931
+ expired?: Date | undefined;
925
932
  }
926
933
  export interface DescribeCodeCoveragesOutput {
927
- nextToken?: string;
928
- codeCoverages?: CodeCoverage[];
934
+ nextToken?: string | undefined;
935
+ codeCoverages?: CodeCoverage[] | undefined;
929
936
  }
930
937
  export interface TestCaseFilter {
931
- status?: string;
932
- keyword?: string;
938
+ status?: string | undefined;
939
+ keyword?: string | undefined;
933
940
  }
934
941
  export interface DescribeTestCasesInput {
935
942
  reportArn: string | undefined;
936
- nextToken?: string;
937
- maxResults?: number;
938
- filter?: TestCaseFilter;
943
+ nextToken?: string | undefined;
944
+ maxResults?: number | undefined;
945
+ filter?: TestCaseFilter | undefined;
939
946
  }
940
947
  export interface TestCase {
941
- reportArn?: string;
942
- testRawDataPath?: string;
943
- prefix?: string;
944
- name?: string;
945
- status?: string;
946
- durationInNanoSeconds?: number;
947
- message?: string;
948
- expired?: Date;
948
+ reportArn?: string | undefined;
949
+ testRawDataPath?: string | undefined;
950
+ prefix?: string | undefined;
951
+ name?: string | undefined;
952
+ status?: string | undefined;
953
+ durationInNanoSeconds?: number | undefined;
954
+ message?: string | undefined;
955
+ expired?: Date | undefined;
949
956
  }
950
957
  export interface DescribeTestCasesOutput {
951
- nextToken?: string;
952
- testCases?: TestCase[];
958
+ nextToken?: string | undefined;
959
+ testCases?: TestCase[] | undefined;
953
960
  }
954
961
  export declare const ReportGroupTrendFieldType: {
955
962
  readonly BRANCHES_COVERED: "BRANCHES_COVERED";
@@ -966,27 +973,27 @@ export type ReportGroupTrendFieldType =
966
973
  (typeof ReportGroupTrendFieldType)[keyof typeof ReportGroupTrendFieldType];
967
974
  export interface GetReportGroupTrendInput {
968
975
  reportGroupArn: string | undefined;
969
- numOfReports?: number;
976
+ numOfReports?: number | undefined;
970
977
  trendField: ReportGroupTrendFieldType | undefined;
971
978
  }
972
979
  export interface ReportWithRawData {
973
- reportArn?: string;
974
- data?: string;
980
+ reportArn?: string | undefined;
981
+ data?: string | undefined;
975
982
  }
976
983
  export interface ReportGroupTrendStats {
977
- average?: string;
978
- max?: string;
979
- min?: string;
984
+ average?: string | undefined;
985
+ max?: string | undefined;
986
+ min?: string | undefined;
980
987
  }
981
988
  export interface GetReportGroupTrendOutput {
982
- stats?: ReportGroupTrendStats;
983
- rawData?: ReportWithRawData[];
989
+ stats?: ReportGroupTrendStats | undefined;
990
+ rawData?: ReportWithRawData[] | undefined;
984
991
  }
985
992
  export interface GetResourcePolicyInput {
986
993
  resourceArn: string | undefined;
987
994
  }
988
995
  export interface GetResourcePolicyOutput {
989
- policy?: string;
996
+ policy?: string | undefined;
990
997
  }
991
998
  export declare const ServerType: {
992
999
  readonly BITBUCKET: "BITBUCKET";
@@ -997,62 +1004,62 @@ export declare const ServerType: {
997
1004
  };
998
1005
  export type ServerType = (typeof ServerType)[keyof typeof ServerType];
999
1006
  export interface ImportSourceCredentialsInput {
1000
- username?: string;
1007
+ username?: string | undefined;
1001
1008
  token: string | undefined;
1002
1009
  serverType: ServerType | undefined;
1003
1010
  authType: AuthType | undefined;
1004
- shouldOverwrite?: boolean;
1011
+ shouldOverwrite?: boolean | undefined;
1005
1012
  }
1006
1013
  export interface ImportSourceCredentialsOutput {
1007
- arn?: string;
1014
+ arn?: string | undefined;
1008
1015
  }
1009
1016
  export interface InvalidateProjectCacheInput {
1010
1017
  projectName: string | undefined;
1011
1018
  }
1012
1019
  export interface InvalidateProjectCacheOutput {}
1013
1020
  export interface ListBuildBatchesInput {
1014
- filter?: BuildBatchFilter;
1015
- maxResults?: number;
1016
- sortOrder?: SortOrderType;
1017
- nextToken?: string;
1021
+ filter?: BuildBatchFilter | undefined;
1022
+ maxResults?: number | undefined;
1023
+ sortOrder?: SortOrderType | undefined;
1024
+ nextToken?: string | undefined;
1018
1025
  }
1019
1026
  export interface ListBuildBatchesOutput {
1020
- ids?: string[];
1021
- nextToken?: string;
1027
+ ids?: string[] | undefined;
1028
+ nextToken?: string | undefined;
1022
1029
  }
1023
1030
  export interface ListBuildBatchesForProjectInput {
1024
- projectName?: string;
1025
- filter?: BuildBatchFilter;
1026
- maxResults?: number;
1027
- sortOrder?: SortOrderType;
1028
- nextToken?: string;
1031
+ projectName?: string | undefined;
1032
+ filter?: BuildBatchFilter | undefined;
1033
+ maxResults?: number | undefined;
1034
+ sortOrder?: SortOrderType | undefined;
1035
+ nextToken?: string | undefined;
1029
1036
  }
1030
1037
  export interface ListBuildBatchesForProjectOutput {
1031
- ids?: string[];
1032
- nextToken?: string;
1038
+ ids?: string[] | undefined;
1039
+ nextToken?: string | undefined;
1033
1040
  }
1034
1041
  export interface ListBuildsInput {
1035
- sortOrder?: SortOrderType;
1036
- nextToken?: string;
1042
+ sortOrder?: SortOrderType | undefined;
1043
+ nextToken?: string | undefined;
1037
1044
  }
1038
1045
  export interface ListBuildsOutput {
1039
- ids?: string[];
1040
- nextToken?: string;
1046
+ ids?: string[] | undefined;
1047
+ nextToken?: string | undefined;
1041
1048
  }
1042
1049
  export interface ListBuildsForProjectInput {
1043
1050
  projectName: string | undefined;
1044
- sortOrder?: SortOrderType;
1045
- nextToken?: string;
1051
+ sortOrder?: SortOrderType | undefined;
1052
+ nextToken?: string | undefined;
1046
1053
  }
1047
1054
  export interface ListBuildsForProjectOutput {
1048
- ids?: string[];
1049
- nextToken?: string;
1055
+ ids?: string[] | undefined;
1056
+ nextToken?: string | undefined;
1050
1057
  }
1051
1058
  export interface ListCuratedEnvironmentImagesInput {}
1052
1059
  export interface EnvironmentImage {
1053
- name?: string;
1054
- description?: string;
1055
- versions?: string[];
1060
+ name?: string | undefined;
1061
+ description?: string | undefined;
1062
+ versions?: string[] | undefined;
1056
1063
  }
1057
1064
  export declare const LanguageType: {
1058
1065
  readonly ANDROID: "ANDROID";
@@ -1068,8 +1075,8 @@ export declare const LanguageType: {
1068
1075
  };
1069
1076
  export type LanguageType = (typeof LanguageType)[keyof typeof LanguageType];
1070
1077
  export interface EnvironmentLanguage {
1071
- language?: LanguageType;
1072
- images?: EnvironmentImage[];
1078
+ language?: LanguageType | undefined;
1079
+ images?: EnvironmentImage[] | undefined;
1073
1080
  }
1074
1081
  export declare const PlatformType: {
1075
1082
  readonly AMAZON_LINUX: "AMAZON_LINUX";
@@ -1079,11 +1086,11 @@ export declare const PlatformType: {
1079
1086
  };
1080
1087
  export type PlatformType = (typeof PlatformType)[keyof typeof PlatformType];
1081
1088
  export interface EnvironmentPlatform {
1082
- platform?: PlatformType;
1083
- languages?: EnvironmentLanguage[];
1089
+ platform?: PlatformType | undefined;
1090
+ languages?: EnvironmentLanguage[] | undefined;
1084
1091
  }
1085
1092
  export interface ListCuratedEnvironmentImagesOutput {
1086
- platforms?: EnvironmentPlatform[];
1093
+ platforms?: EnvironmentPlatform[] | undefined;
1087
1094
  }
1088
1095
  export declare const FleetSortByType: {
1089
1096
  readonly CREATED_TIME: "CREATED_TIME";
@@ -1093,14 +1100,14 @@ export declare const FleetSortByType: {
1093
1100
  export type FleetSortByType =
1094
1101
  (typeof FleetSortByType)[keyof typeof FleetSortByType];
1095
1102
  export interface ListFleetsInput {
1096
- nextToken?: string;
1097
- maxResults?: number;
1098
- sortOrder?: SortOrderType;
1099
- sortBy?: FleetSortByType;
1103
+ nextToken?: string | undefined;
1104
+ maxResults?: number | undefined;
1105
+ sortOrder?: SortOrderType | undefined;
1106
+ sortBy?: FleetSortByType | undefined;
1100
1107
  }
1101
1108
  export interface ListFleetsOutput {
1102
- nextToken?: string;
1103
- fleets?: string[];
1109
+ nextToken?: string | undefined;
1110
+ fleets?: string[] | undefined;
1104
1111
  }
1105
1112
  export declare const ProjectSortByType: {
1106
1113
  readonly CREATED_TIME: "CREATED_TIME";
@@ -1110,13 +1117,13 @@ export declare const ProjectSortByType: {
1110
1117
  export type ProjectSortByType =
1111
1118
  (typeof ProjectSortByType)[keyof typeof ProjectSortByType];
1112
1119
  export interface ListProjectsInput {
1113
- sortBy?: ProjectSortByType;
1114
- sortOrder?: SortOrderType;
1115
- nextToken?: string;
1120
+ sortBy?: ProjectSortByType | undefined;
1121
+ sortOrder?: SortOrderType | undefined;
1122
+ nextToken?: string | undefined;
1116
1123
  }
1117
1124
  export interface ListProjectsOutput {
1118
- nextToken?: string;
1119
- projects?: string[];
1125
+ nextToken?: string | undefined;
1126
+ projects?: string[] | undefined;
1120
1127
  }
1121
1128
  export declare const ReportGroupSortByType: {
1122
1129
  readonly CREATED_TIME: "CREATED_TIME";
@@ -1126,38 +1133,38 @@ export declare const ReportGroupSortByType: {
1126
1133
  export type ReportGroupSortByType =
1127
1134
  (typeof ReportGroupSortByType)[keyof typeof ReportGroupSortByType];
1128
1135
  export interface ListReportGroupsInput {
1129
- sortOrder?: SortOrderType;
1130
- sortBy?: ReportGroupSortByType;
1131
- nextToken?: string;
1132
- maxResults?: number;
1136
+ sortOrder?: SortOrderType | undefined;
1137
+ sortBy?: ReportGroupSortByType | undefined;
1138
+ nextToken?: string | undefined;
1139
+ maxResults?: number | undefined;
1133
1140
  }
1134
1141
  export interface ListReportGroupsOutput {
1135
- nextToken?: string;
1136
- reportGroups?: string[];
1142
+ nextToken?: string | undefined;
1143
+ reportGroups?: string[] | undefined;
1137
1144
  }
1138
1145
  export interface ReportFilter {
1139
- status?: ReportStatusType;
1146
+ status?: ReportStatusType | undefined;
1140
1147
  }
1141
1148
  export interface ListReportsInput {
1142
- sortOrder?: SortOrderType;
1143
- nextToken?: string;
1144
- maxResults?: number;
1145
- filter?: ReportFilter;
1149
+ sortOrder?: SortOrderType | undefined;
1150
+ nextToken?: string | undefined;
1151
+ maxResults?: number | undefined;
1152
+ filter?: ReportFilter | undefined;
1146
1153
  }
1147
1154
  export interface ListReportsOutput {
1148
- nextToken?: string;
1149
- reports?: string[];
1155
+ nextToken?: string | undefined;
1156
+ reports?: string[] | undefined;
1150
1157
  }
1151
1158
  export interface ListReportsForReportGroupInput {
1152
1159
  reportGroupArn: string | undefined;
1153
- nextToken?: string;
1154
- sortOrder?: SortOrderType;
1155
- maxResults?: number;
1156
- filter?: ReportFilter;
1160
+ nextToken?: string | undefined;
1161
+ sortOrder?: SortOrderType | undefined;
1162
+ maxResults?: number | undefined;
1163
+ filter?: ReportFilter | undefined;
1157
1164
  }
1158
1165
  export interface ListReportsForReportGroupOutput {
1159
- nextToken?: string;
1160
- reports?: string[];
1166
+ nextToken?: string | undefined;
1167
+ reports?: string[] | undefined;
1161
1168
  }
1162
1169
  export declare const SharedResourceSortByType: {
1163
1170
  readonly ARN: "ARN";
@@ -1166,48 +1173,48 @@ export declare const SharedResourceSortByType: {
1166
1173
  export type SharedResourceSortByType =
1167
1174
  (typeof SharedResourceSortByType)[keyof typeof SharedResourceSortByType];
1168
1175
  export interface ListSharedProjectsInput {
1169
- sortBy?: SharedResourceSortByType;
1170
- sortOrder?: SortOrderType;
1171
- maxResults?: number;
1172
- nextToken?: string;
1176
+ sortBy?: SharedResourceSortByType | undefined;
1177
+ sortOrder?: SortOrderType | undefined;
1178
+ maxResults?: number | undefined;
1179
+ nextToken?: string | undefined;
1173
1180
  }
1174
1181
  export interface ListSharedProjectsOutput {
1175
- nextToken?: string;
1176
- projects?: string[];
1182
+ nextToken?: string | undefined;
1183
+ projects?: string[] | undefined;
1177
1184
  }
1178
1185
  export interface ListSharedReportGroupsInput {
1179
- sortOrder?: SortOrderType;
1180
- sortBy?: SharedResourceSortByType;
1181
- nextToken?: string;
1182
- maxResults?: number;
1186
+ sortOrder?: SortOrderType | undefined;
1187
+ sortBy?: SharedResourceSortByType | undefined;
1188
+ nextToken?: string | undefined;
1189
+ maxResults?: number | undefined;
1183
1190
  }
1184
1191
  export interface ListSharedReportGroupsOutput {
1185
- nextToken?: string;
1186
- reportGroups?: string[];
1192
+ nextToken?: string | undefined;
1193
+ reportGroups?: string[] | undefined;
1187
1194
  }
1188
1195
  export interface ListSourceCredentialsInput {}
1189
1196
  export interface SourceCredentialsInfo {
1190
- arn?: string;
1191
- serverType?: ServerType;
1192
- authType?: AuthType;
1193
- resource?: string;
1197
+ arn?: string | undefined;
1198
+ serverType?: ServerType | undefined;
1199
+ authType?: AuthType | undefined;
1200
+ resource?: string | undefined;
1194
1201
  }
1195
1202
  export interface ListSourceCredentialsOutput {
1196
- sourceCredentialsInfos?: SourceCredentialsInfo[];
1203
+ sourceCredentialsInfos?: SourceCredentialsInfo[] | undefined;
1197
1204
  }
1198
1205
  export interface PutResourcePolicyInput {
1199
1206
  policy: string | undefined;
1200
1207
  resourceArn: string | undefined;
1201
1208
  }
1202
1209
  export interface PutResourcePolicyOutput {
1203
- resourceArn?: string;
1210
+ resourceArn?: string | undefined;
1204
1211
  }
1205
1212
  export interface RetryBuildInput {
1206
- id?: string;
1207
- idempotencyToken?: string;
1213
+ id?: string | undefined;
1214
+ idempotencyToken?: string | undefined;
1208
1215
  }
1209
1216
  export interface RetryBuildOutput {
1210
- build?: Build;
1217
+ build?: Build | undefined;
1211
1218
  }
1212
1219
  export declare const RetryBuildBatchType: {
1213
1220
  readonly RETRY_ALL_BUILDS: "RETRY_ALL_BUILDS";
@@ -1216,170 +1223,170 @@ export declare const RetryBuildBatchType: {
1216
1223
  export type RetryBuildBatchType =
1217
1224
  (typeof RetryBuildBatchType)[keyof typeof RetryBuildBatchType];
1218
1225
  export interface RetryBuildBatchInput {
1219
- id?: string;
1220
- idempotencyToken?: string;
1221
- retryType?: RetryBuildBatchType;
1226
+ id?: string | undefined;
1227
+ idempotencyToken?: string | undefined;
1228
+ retryType?: RetryBuildBatchType | undefined;
1222
1229
  }
1223
1230
  export interface RetryBuildBatchOutput {
1224
- buildBatch?: BuildBatch;
1231
+ buildBatch?: BuildBatch | undefined;
1225
1232
  }
1226
1233
  export interface StartBuildInput {
1227
1234
  projectName: string | undefined;
1228
- secondarySourcesOverride?: ProjectSource[];
1229
- secondarySourcesVersionOverride?: ProjectSourceVersion[];
1230
- sourceVersion?: string;
1231
- artifactsOverride?: ProjectArtifacts;
1232
- secondaryArtifactsOverride?: ProjectArtifacts[];
1233
- environmentVariablesOverride?: EnvironmentVariable[];
1234
- sourceTypeOverride?: SourceType;
1235
- sourceLocationOverride?: string;
1236
- sourceAuthOverride?: SourceAuth;
1237
- gitCloneDepthOverride?: number;
1238
- gitSubmodulesConfigOverride?: GitSubmodulesConfig;
1239
- buildspecOverride?: string;
1240
- insecureSslOverride?: boolean;
1241
- reportBuildStatusOverride?: boolean;
1242
- buildStatusConfigOverride?: BuildStatusConfig;
1243
- environmentTypeOverride?: EnvironmentType;
1244
- imageOverride?: string;
1245
- computeTypeOverride?: ComputeType;
1246
- certificateOverride?: string;
1247
- cacheOverride?: ProjectCache;
1248
- serviceRoleOverride?: string;
1249
- privilegedModeOverride?: boolean;
1250
- timeoutInMinutesOverride?: number;
1251
- queuedTimeoutInMinutesOverride?: number;
1252
- encryptionKeyOverride?: string;
1253
- idempotencyToken?: string;
1254
- logsConfigOverride?: LogsConfig;
1255
- registryCredentialOverride?: RegistryCredential;
1256
- imagePullCredentialsTypeOverride?: ImagePullCredentialsType;
1257
- debugSessionEnabled?: boolean;
1258
- fleetOverride?: ProjectFleet;
1259
- autoRetryLimitOverride?: number;
1235
+ secondarySourcesOverride?: ProjectSource[] | undefined;
1236
+ secondarySourcesVersionOverride?: ProjectSourceVersion[] | undefined;
1237
+ sourceVersion?: string | undefined;
1238
+ artifactsOverride?: ProjectArtifacts | undefined;
1239
+ secondaryArtifactsOverride?: ProjectArtifacts[] | undefined;
1240
+ environmentVariablesOverride?: EnvironmentVariable[] | undefined;
1241
+ sourceTypeOverride?: SourceType | undefined;
1242
+ sourceLocationOverride?: string | undefined;
1243
+ sourceAuthOverride?: SourceAuth | undefined;
1244
+ gitCloneDepthOverride?: number | undefined;
1245
+ gitSubmodulesConfigOverride?: GitSubmodulesConfig | undefined;
1246
+ buildspecOverride?: string | undefined;
1247
+ insecureSslOverride?: boolean | undefined;
1248
+ reportBuildStatusOverride?: boolean | undefined;
1249
+ buildStatusConfigOverride?: BuildStatusConfig | undefined;
1250
+ environmentTypeOverride?: EnvironmentType | undefined;
1251
+ imageOverride?: string | undefined;
1252
+ computeTypeOverride?: ComputeType | undefined;
1253
+ certificateOverride?: string | undefined;
1254
+ cacheOverride?: ProjectCache | undefined;
1255
+ serviceRoleOverride?: string | undefined;
1256
+ privilegedModeOverride?: boolean | undefined;
1257
+ timeoutInMinutesOverride?: number | undefined;
1258
+ queuedTimeoutInMinutesOverride?: number | undefined;
1259
+ encryptionKeyOverride?: string | undefined;
1260
+ idempotencyToken?: string | undefined;
1261
+ logsConfigOverride?: LogsConfig | undefined;
1262
+ registryCredentialOverride?: RegistryCredential | undefined;
1263
+ imagePullCredentialsTypeOverride?: ImagePullCredentialsType | undefined;
1264
+ debugSessionEnabled?: boolean | undefined;
1265
+ fleetOverride?: ProjectFleet | undefined;
1266
+ autoRetryLimitOverride?: number | undefined;
1260
1267
  }
1261
1268
  export interface StartBuildOutput {
1262
- build?: Build;
1269
+ build?: Build | undefined;
1263
1270
  }
1264
1271
  export interface StartBuildBatchInput {
1265
1272
  projectName: string | undefined;
1266
- secondarySourcesOverride?: ProjectSource[];
1267
- secondarySourcesVersionOverride?: ProjectSourceVersion[];
1268
- sourceVersion?: string;
1269
- artifactsOverride?: ProjectArtifacts;
1270
- secondaryArtifactsOverride?: ProjectArtifacts[];
1271
- environmentVariablesOverride?: EnvironmentVariable[];
1272
- sourceTypeOverride?: SourceType;
1273
- sourceLocationOverride?: string;
1274
- sourceAuthOverride?: SourceAuth;
1275
- gitCloneDepthOverride?: number;
1276
- gitSubmodulesConfigOverride?: GitSubmodulesConfig;
1277
- buildspecOverride?: string;
1278
- insecureSslOverride?: boolean;
1279
- reportBuildBatchStatusOverride?: boolean;
1280
- environmentTypeOverride?: EnvironmentType;
1281
- imageOverride?: string;
1282
- computeTypeOverride?: ComputeType;
1283
- certificateOverride?: string;
1284
- cacheOverride?: ProjectCache;
1285
- serviceRoleOverride?: string;
1286
- privilegedModeOverride?: boolean;
1287
- buildTimeoutInMinutesOverride?: number;
1288
- queuedTimeoutInMinutesOverride?: number;
1289
- encryptionKeyOverride?: string;
1290
- idempotencyToken?: string;
1291
- logsConfigOverride?: LogsConfig;
1292
- registryCredentialOverride?: RegistryCredential;
1293
- imagePullCredentialsTypeOverride?: ImagePullCredentialsType;
1294
- buildBatchConfigOverride?: ProjectBuildBatchConfig;
1295
- debugSessionEnabled?: boolean;
1273
+ secondarySourcesOverride?: ProjectSource[] | undefined;
1274
+ secondarySourcesVersionOverride?: ProjectSourceVersion[] | undefined;
1275
+ sourceVersion?: string | undefined;
1276
+ artifactsOverride?: ProjectArtifacts | undefined;
1277
+ secondaryArtifactsOverride?: ProjectArtifacts[] | undefined;
1278
+ environmentVariablesOverride?: EnvironmentVariable[] | undefined;
1279
+ sourceTypeOverride?: SourceType | undefined;
1280
+ sourceLocationOverride?: string | undefined;
1281
+ sourceAuthOverride?: SourceAuth | undefined;
1282
+ gitCloneDepthOverride?: number | undefined;
1283
+ gitSubmodulesConfigOverride?: GitSubmodulesConfig | undefined;
1284
+ buildspecOverride?: string | undefined;
1285
+ insecureSslOverride?: boolean | undefined;
1286
+ reportBuildBatchStatusOverride?: boolean | undefined;
1287
+ environmentTypeOverride?: EnvironmentType | undefined;
1288
+ imageOverride?: string | undefined;
1289
+ computeTypeOverride?: ComputeType | undefined;
1290
+ certificateOverride?: string | undefined;
1291
+ cacheOverride?: ProjectCache | undefined;
1292
+ serviceRoleOverride?: string | undefined;
1293
+ privilegedModeOverride?: boolean | undefined;
1294
+ buildTimeoutInMinutesOverride?: number | undefined;
1295
+ queuedTimeoutInMinutesOverride?: number | undefined;
1296
+ encryptionKeyOverride?: string | undefined;
1297
+ idempotencyToken?: string | undefined;
1298
+ logsConfigOverride?: LogsConfig | undefined;
1299
+ registryCredentialOverride?: RegistryCredential | undefined;
1300
+ imagePullCredentialsTypeOverride?: ImagePullCredentialsType | undefined;
1301
+ buildBatchConfigOverride?: ProjectBuildBatchConfig | undefined;
1302
+ debugSessionEnabled?: boolean | undefined;
1296
1303
  }
1297
1304
  export interface StartBuildBatchOutput {
1298
- buildBatch?: BuildBatch;
1305
+ buildBatch?: BuildBatch | undefined;
1299
1306
  }
1300
1307
  export interface StopBuildInput {
1301
1308
  id: string | undefined;
1302
1309
  }
1303
1310
  export interface StopBuildOutput {
1304
- build?: Build;
1311
+ build?: Build | undefined;
1305
1312
  }
1306
1313
  export interface StopBuildBatchInput {
1307
1314
  id: string | undefined;
1308
1315
  }
1309
1316
  export interface StopBuildBatchOutput {
1310
- buildBatch?: BuildBatch;
1317
+ buildBatch?: BuildBatch | undefined;
1311
1318
  }
1312
1319
  export interface UpdateFleetInput {
1313
1320
  arn: string | undefined;
1314
- baseCapacity?: number;
1315
- environmentType?: EnvironmentType;
1316
- computeType?: ComputeType;
1317
- computeConfiguration?: ComputeConfiguration;
1318
- scalingConfiguration?: ScalingConfigurationInput;
1319
- overflowBehavior?: FleetOverflowBehavior;
1320
- vpcConfig?: VpcConfig;
1321
- proxyConfiguration?: ProxyConfiguration;
1322
- imageId?: string;
1323
- fleetServiceRole?: string;
1324
- tags?: Tag[];
1321
+ baseCapacity?: number | undefined;
1322
+ environmentType?: EnvironmentType | undefined;
1323
+ computeType?: ComputeType | undefined;
1324
+ computeConfiguration?: ComputeConfiguration | undefined;
1325
+ scalingConfiguration?: ScalingConfigurationInput | undefined;
1326
+ overflowBehavior?: FleetOverflowBehavior | undefined;
1327
+ vpcConfig?: VpcConfig | undefined;
1328
+ proxyConfiguration?: ProxyConfiguration | undefined;
1329
+ imageId?: string | undefined;
1330
+ fleetServiceRole?: string | undefined;
1331
+ tags?: Tag[] | undefined;
1325
1332
  }
1326
1333
  export interface UpdateFleetOutput {
1327
- fleet?: Fleet;
1334
+ fleet?: Fleet | undefined;
1328
1335
  }
1329
1336
  export interface UpdateProjectInput {
1330
1337
  name: string | undefined;
1331
- description?: string;
1332
- source?: ProjectSource;
1333
- secondarySources?: ProjectSource[];
1334
- sourceVersion?: string;
1335
- secondarySourceVersions?: ProjectSourceVersion[];
1336
- artifacts?: ProjectArtifacts;
1337
- secondaryArtifacts?: ProjectArtifacts[];
1338
- cache?: ProjectCache;
1339
- environment?: ProjectEnvironment;
1340
- serviceRole?: string;
1341
- timeoutInMinutes?: number;
1342
- queuedTimeoutInMinutes?: number;
1343
- encryptionKey?: string;
1344
- tags?: Tag[];
1345
- vpcConfig?: VpcConfig;
1346
- badgeEnabled?: boolean;
1347
- logsConfig?: LogsConfig;
1348
- fileSystemLocations?: ProjectFileSystemLocation[];
1349
- buildBatchConfig?: ProjectBuildBatchConfig;
1350
- concurrentBuildLimit?: number;
1351
- autoRetryLimit?: number;
1338
+ description?: string | undefined;
1339
+ source?: ProjectSource | undefined;
1340
+ secondarySources?: ProjectSource[] | undefined;
1341
+ sourceVersion?: string | undefined;
1342
+ secondarySourceVersions?: ProjectSourceVersion[] | undefined;
1343
+ artifacts?: ProjectArtifacts | undefined;
1344
+ secondaryArtifacts?: ProjectArtifacts[] | undefined;
1345
+ cache?: ProjectCache | undefined;
1346
+ environment?: ProjectEnvironment | undefined;
1347
+ serviceRole?: string | undefined;
1348
+ timeoutInMinutes?: number | undefined;
1349
+ queuedTimeoutInMinutes?: number | undefined;
1350
+ encryptionKey?: string | undefined;
1351
+ tags?: Tag[] | undefined;
1352
+ vpcConfig?: VpcConfig | undefined;
1353
+ badgeEnabled?: boolean | undefined;
1354
+ logsConfig?: LogsConfig | undefined;
1355
+ fileSystemLocations?: ProjectFileSystemLocation[] | undefined;
1356
+ buildBatchConfig?: ProjectBuildBatchConfig | undefined;
1357
+ concurrentBuildLimit?: number | undefined;
1358
+ autoRetryLimit?: number | undefined;
1352
1359
  }
1353
1360
  export interface UpdateProjectOutput {
1354
- project?: Project;
1361
+ project?: Project | undefined;
1355
1362
  }
1356
1363
  export interface UpdateProjectVisibilityInput {
1357
1364
  projectArn: string | undefined;
1358
1365
  projectVisibility: ProjectVisibilityType | undefined;
1359
- resourceAccessRole?: string;
1366
+ resourceAccessRole?: string | undefined;
1360
1367
  }
1361
1368
  export interface UpdateProjectVisibilityOutput {
1362
- projectArn?: string;
1363
- publicProjectAlias?: string;
1364
- projectVisibility?: ProjectVisibilityType;
1369
+ projectArn?: string | undefined;
1370
+ publicProjectAlias?: string | undefined;
1371
+ projectVisibility?: ProjectVisibilityType | undefined;
1365
1372
  }
1366
1373
  export interface UpdateReportGroupInput {
1367
1374
  arn: string | undefined;
1368
- exportConfig?: ReportExportConfig;
1369
- tags?: Tag[];
1375
+ exportConfig?: ReportExportConfig | undefined;
1376
+ tags?: Tag[] | undefined;
1370
1377
  }
1371
1378
  export interface UpdateReportGroupOutput {
1372
- reportGroup?: ReportGroup;
1379
+ reportGroup?: ReportGroup | undefined;
1373
1380
  }
1374
1381
  export interface UpdateWebhookInput {
1375
1382
  projectName: string | undefined;
1376
- branchFilter?: string;
1377
- rotateSecret?: boolean;
1378
- filterGroups?: WebhookFilter[][];
1379
- buildType?: WebhookBuildType;
1383
+ branchFilter?: string | undefined;
1384
+ rotateSecret?: boolean | undefined;
1385
+ filterGroups?: WebhookFilter[][] | undefined;
1386
+ buildType?: WebhookBuildType | undefined;
1380
1387
  }
1381
1388
  export interface UpdateWebhookOutput {
1382
- webhook?: Webhook;
1389
+ webhook?: Webhook | undefined;
1383
1390
  }
1384
1391
  export declare const ImportSourceCredentialsInputFilterSensitiveLog: (
1385
1392
  obj: ImportSourceCredentialsInput