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