@aws-sdk/client-imagebuilder 3.686.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.
@@ -1,21 +1,21 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { ImagebuilderServiceException as __BaseException } from "./ImagebuilderServiceException";
3
3
  export interface SeverityCounts {
4
- all?: number;
5
- critical?: number;
6
- high?: number;
7
- medium?: number;
4
+ all?: number | undefined;
5
+ critical?: number | undefined;
6
+ high?: number | undefined;
7
+ medium?: number | undefined;
8
8
  }
9
9
  export interface AccountAggregation {
10
- accountId?: string;
11
- severityCounts?: SeverityCounts;
10
+ accountId?: string | undefined;
11
+ severityCounts?: SeverityCounts | undefined;
12
12
  }
13
13
  export interface SystemsManagerAgent {
14
- uninstallAfterBuild?: boolean;
14
+ uninstallAfterBuild?: boolean | undefined;
15
15
  }
16
16
  export interface AdditionalInstanceConfiguration {
17
- systemsManagerAgent?: SystemsManagerAgent;
18
- userDataOverride?: string;
17
+ systemsManagerAgent?: SystemsManagerAgent | undefined;
18
+ userDataOverride?: string | undefined;
19
19
  }
20
20
  export declare const ImageStatus: {
21
21
  readonly AVAILABLE: "AVAILABLE";
@@ -33,30 +33,30 @@ export declare const ImageStatus: {
33
33
  };
34
34
  export type ImageStatus = (typeof ImageStatus)[keyof typeof ImageStatus];
35
35
  export interface ImageState {
36
- status?: ImageStatus;
37
- reason?: string;
36
+ status?: ImageStatus | undefined;
37
+ reason?: string | undefined;
38
38
  }
39
39
  export interface Ami {
40
- region?: string;
41
- image?: string;
42
- name?: string;
43
- description?: string;
44
- state?: ImageState;
45
- accountId?: string;
40
+ region?: string | undefined;
41
+ image?: string | undefined;
42
+ name?: string | undefined;
43
+ description?: string | undefined;
44
+ state?: ImageState | undefined;
45
+ accountId?: string | undefined;
46
46
  }
47
47
  export interface LaunchPermissionConfiguration {
48
- userIds?: string[];
49
- userGroups?: string[];
50
- organizationArns?: string[];
51
- organizationalUnitArns?: string[];
48
+ userIds?: string[] | undefined;
49
+ userGroups?: string[] | undefined;
50
+ organizationArns?: string[] | undefined;
51
+ organizationalUnitArns?: string[] | undefined;
52
52
  }
53
53
  export interface AmiDistributionConfiguration {
54
- name?: string;
55
- description?: string;
56
- targetAccountIds?: string[];
57
- amiTags?: Record<string, string>;
58
- kmsKeyId?: string;
59
- launchPermission?: LaunchPermissionConfiguration;
54
+ name?: string | undefined;
55
+ description?: string | undefined;
56
+ targetAccountIds?: string[] | undefined;
57
+ amiTags?: Record<string, string> | undefined;
58
+ kmsKeyId?: string | undefined;
59
+ launchPermission?: LaunchPermissionConfiguration | undefined;
60
60
  }
61
61
  export declare const BuildType: {
62
62
  readonly IMPORT: "IMPORT";
@@ -73,12 +73,12 @@ export declare class CallRateLimitExceededException extends __BaseException {
73
73
  }
74
74
  export interface CancelImageCreationRequest {
75
75
  imageBuildVersionArn: string | undefined;
76
- clientToken?: string;
76
+ clientToken?: string | undefined;
77
77
  }
78
78
  export interface CancelImageCreationResponse {
79
- requestId?: string;
80
- clientToken?: string;
81
- imageBuildVersionArn?: string;
79
+ requestId?: string | undefined;
80
+ clientToken?: string | undefined;
81
+ imageBuildVersionArn?: string | undefined;
82
82
  }
83
83
  export declare class ClientException extends __BaseException {
84
84
  readonly name: "ClientException";
@@ -128,16 +128,16 @@ export declare class ServiceUnavailableException extends __BaseException {
128
128
  }
129
129
  export interface CancelLifecycleExecutionRequest {
130
130
  lifecycleExecutionId: string | undefined;
131
- clientToken?: string;
131
+ clientToken?: string | undefined;
132
132
  }
133
133
  export interface CancelLifecycleExecutionResponse {
134
- lifecycleExecutionId?: string;
134
+ lifecycleExecutionId?: string | undefined;
135
135
  }
136
136
  export interface ComponentParameterDetail {
137
137
  name: string | undefined;
138
138
  type: string | undefined;
139
- defaultValue?: string[];
140
- description?: string;
139
+ defaultValue?: string[] | undefined;
140
+ description?: string | undefined;
141
141
  }
142
142
  export declare const Platform: {
143
143
  readonly LINUX: "Linux";
@@ -151,8 +151,8 @@ export declare const ComponentStatus: {
151
151
  export type ComponentStatus =
152
152
  (typeof ComponentStatus)[keyof typeof ComponentStatus];
153
153
  export interface ComponentState {
154
- status?: ComponentStatus;
155
- reason?: string;
154
+ status?: ComponentStatus | undefined;
155
+ reason?: string | undefined;
156
156
  }
157
157
  export declare const ComponentType: {
158
158
  readonly BUILD: "BUILD";
@@ -160,24 +160,24 @@ export declare const ComponentType: {
160
160
  };
161
161
  export type ComponentType = (typeof ComponentType)[keyof typeof ComponentType];
162
162
  export interface Component {
163
- arn?: string;
164
- name?: string;
165
- version?: string;
166
- description?: string;
167
- changeDescription?: string;
168
- type?: ComponentType;
169
- platform?: Platform;
170
- supportedOsVersions?: string[];
171
- state?: ComponentState;
172
- parameters?: ComponentParameterDetail[];
173
- owner?: string;
174
- data?: string;
175
- kmsKeyId?: string;
176
- encrypted?: boolean;
177
- dateCreated?: string;
178
- tags?: Record<string, string>;
179
- publisher?: string;
180
- obfuscate?: boolean;
163
+ arn?: string | undefined;
164
+ name?: string | undefined;
165
+ version?: string | undefined;
166
+ description?: string | undefined;
167
+ changeDescription?: string | undefined;
168
+ type?: ComponentType | undefined;
169
+ platform?: Platform | undefined;
170
+ supportedOsVersions?: string[] | undefined;
171
+ state?: ComponentState | undefined;
172
+ parameters?: ComponentParameterDetail[] | undefined;
173
+ owner?: string | undefined;
174
+ data?: string | undefined;
175
+ kmsKeyId?: string | undefined;
176
+ encrypted?: boolean | undefined;
177
+ dateCreated?: string | undefined;
178
+ tags?: Record<string, string> | undefined;
179
+ publisher?: string | undefined;
180
+ obfuscate?: boolean | undefined;
181
181
  }
182
182
  export interface ComponentParameter {
183
183
  name: string | undefined;
@@ -185,7 +185,7 @@ export interface ComponentParameter {
185
185
  }
186
186
  export interface ComponentConfiguration {
187
187
  componentArn: string | undefined;
188
- parameters?: ComponentParameter[];
188
+ parameters?: ComponentParameter[] | undefined;
189
189
  }
190
190
  export declare const ComponentFormat: {
191
191
  readonly SHELL: "SHELL";
@@ -193,35 +193,35 @@ export declare const ComponentFormat: {
193
193
  export type ComponentFormat =
194
194
  (typeof ComponentFormat)[keyof typeof ComponentFormat];
195
195
  export interface ComponentSummary {
196
- arn?: string;
197
- name?: string;
198
- version?: string;
199
- platform?: Platform;
200
- supportedOsVersions?: string[];
201
- state?: ComponentState;
202
- type?: ComponentType;
203
- owner?: string;
204
- description?: string;
205
- changeDescription?: string;
206
- dateCreated?: string;
207
- tags?: Record<string, string>;
208
- publisher?: string;
209
- obfuscate?: boolean;
196
+ arn?: string | undefined;
197
+ name?: string | undefined;
198
+ version?: string | undefined;
199
+ platform?: Platform | undefined;
200
+ supportedOsVersions?: string[] | undefined;
201
+ state?: ComponentState | undefined;
202
+ type?: ComponentType | undefined;
203
+ owner?: string | undefined;
204
+ description?: string | undefined;
205
+ changeDescription?: string | undefined;
206
+ dateCreated?: string | undefined;
207
+ tags?: Record<string, string> | undefined;
208
+ publisher?: string | undefined;
209
+ obfuscate?: boolean | undefined;
210
210
  }
211
211
  export interface ComponentVersion {
212
- arn?: string;
213
- name?: string;
214
- version?: string;
215
- description?: string;
216
- platform?: Platform;
217
- supportedOsVersions?: string[];
218
- type?: ComponentType;
219
- owner?: string;
220
- dateCreated?: string;
212
+ arn?: string | undefined;
213
+ name?: string | undefined;
214
+ version?: string | undefined;
215
+ description?: string | undefined;
216
+ platform?: Platform | undefined;
217
+ supportedOsVersions?: string[] | undefined;
218
+ type?: ComponentType | undefined;
219
+ owner?: string | undefined;
220
+ dateCreated?: string | undefined;
221
221
  }
222
222
  export interface Container {
223
- region?: string;
224
- imageUris?: string[];
223
+ region?: string | undefined;
224
+ imageUris?: string[] | undefined;
225
225
  }
226
226
  export declare const ContainerRepositoryService: {
227
227
  readonly ECR: "ECR";
@@ -233,8 +233,8 @@ export interface TargetContainerRepository {
233
233
  repositoryName: string | undefined;
234
234
  }
235
235
  export interface ContainerDistributionConfiguration {
236
- description?: string;
237
- containerTags?: string[];
236
+ description?: string | undefined;
237
+ containerTags?: string[] | undefined;
238
238
  targetRepository: TargetContainerRepository | undefined;
239
239
  }
240
240
  export declare const ContainerType: {
@@ -252,71 +252,71 @@ export declare const EbsVolumeType: {
252
252
  };
253
253
  export type EbsVolumeType = (typeof EbsVolumeType)[keyof typeof EbsVolumeType];
254
254
  export interface EbsInstanceBlockDeviceSpecification {
255
- encrypted?: boolean;
256
- deleteOnTermination?: boolean;
257
- iops?: number;
258
- kmsKeyId?: string;
259
- snapshotId?: string;
260
- volumeSize?: number;
261
- volumeType?: EbsVolumeType;
262
- throughput?: number;
255
+ encrypted?: boolean | undefined;
256
+ deleteOnTermination?: boolean | undefined;
257
+ iops?: number | undefined;
258
+ kmsKeyId?: string | undefined;
259
+ snapshotId?: string | undefined;
260
+ volumeSize?: number | undefined;
261
+ volumeType?: EbsVolumeType | undefined;
262
+ throughput?: number | undefined;
263
263
  }
264
264
  export interface InstanceBlockDeviceMapping {
265
- deviceName?: string;
266
- ebs?: EbsInstanceBlockDeviceSpecification;
267
- virtualName?: string;
268
- noDevice?: string;
265
+ deviceName?: string | undefined;
266
+ ebs?: EbsInstanceBlockDeviceSpecification | undefined;
267
+ virtualName?: string | undefined;
268
+ noDevice?: string | undefined;
269
269
  }
270
270
  export interface InstanceConfiguration {
271
- image?: string;
272
- blockDeviceMappings?: InstanceBlockDeviceMapping[];
271
+ image?: string | undefined;
272
+ blockDeviceMappings?: InstanceBlockDeviceMapping[] | undefined;
273
273
  }
274
274
  export interface ContainerRecipe {
275
- arn?: string;
276
- containerType?: ContainerType;
277
- name?: string;
278
- description?: string;
279
- platform?: Platform;
280
- owner?: string;
281
- version?: string;
282
- components?: ComponentConfiguration[];
283
- instanceConfiguration?: InstanceConfiguration;
284
- dockerfileTemplateData?: string;
285
- kmsKeyId?: string;
286
- encrypted?: boolean;
287
- parentImage?: string;
288
- dateCreated?: string;
289
- tags?: Record<string, string>;
290
- workingDirectory?: string;
291
- targetRepository?: TargetContainerRepository;
275
+ arn?: string | undefined;
276
+ containerType?: ContainerType | undefined;
277
+ name?: string | undefined;
278
+ description?: string | undefined;
279
+ platform?: Platform | undefined;
280
+ owner?: string | undefined;
281
+ version?: string | undefined;
282
+ components?: ComponentConfiguration[] | undefined;
283
+ instanceConfiguration?: InstanceConfiguration | undefined;
284
+ dockerfileTemplateData?: string | undefined;
285
+ kmsKeyId?: string | undefined;
286
+ encrypted?: boolean | undefined;
287
+ parentImage?: string | undefined;
288
+ dateCreated?: string | undefined;
289
+ tags?: Record<string, string> | undefined;
290
+ workingDirectory?: string | undefined;
291
+ targetRepository?: TargetContainerRepository | undefined;
292
292
  }
293
293
  export interface ContainerRecipeSummary {
294
- arn?: string;
295
- containerType?: ContainerType;
296
- name?: string;
297
- platform?: Platform;
298
- owner?: string;
299
- parentImage?: string;
300
- dateCreated?: string;
301
- tags?: Record<string, string>;
294
+ arn?: string | undefined;
295
+ containerType?: ContainerType | undefined;
296
+ name?: string | undefined;
297
+ platform?: Platform | undefined;
298
+ owner?: string | undefined;
299
+ parentImage?: string | undefined;
300
+ dateCreated?: string | undefined;
301
+ tags?: Record<string, string> | undefined;
302
302
  }
303
303
  export interface CreateComponentRequest {
304
304
  name: string | undefined;
305
305
  semanticVersion: string | undefined;
306
- description?: string;
307
- changeDescription?: string;
306
+ description?: string | undefined;
307
+ changeDescription?: string | undefined;
308
308
  platform: Platform | undefined;
309
- supportedOsVersions?: string[];
310
- data?: string;
311
- uri?: string;
312
- kmsKeyId?: string;
313
- tags?: Record<string, string>;
314
- clientToken?: string;
309
+ supportedOsVersions?: string[] | undefined;
310
+ data?: string | undefined;
311
+ uri?: string | undefined;
312
+ kmsKeyId?: string | undefined;
313
+ tags?: Record<string, string> | undefined;
314
+ clientToken?: string | undefined;
315
315
  }
316
316
  export interface CreateComponentResponse {
317
- requestId?: string;
318
- clientToken?: string;
319
- componentBuildVersionArn?: string;
317
+ requestId?: string | undefined;
318
+ clientToken?: string | undefined;
319
+ componentBuildVersionArn?: string | undefined;
320
320
  }
321
321
  export declare class InvalidParameterCombinationException extends __BaseException {
322
322
  readonly name: "InvalidParameterCombinationException";
@@ -345,25 +345,25 @@ export declare class ServiceQuotaExceededException extends __BaseException {
345
345
  export interface CreateContainerRecipeRequest {
346
346
  containerType: ContainerType | undefined;
347
347
  name: string | undefined;
348
- description?: string;
348
+ description?: string | undefined;
349
349
  semanticVersion: string | undefined;
350
350
  components: ComponentConfiguration[] | undefined;
351
- instanceConfiguration?: InstanceConfiguration;
352
- dockerfileTemplateData?: string;
353
- dockerfileTemplateUri?: string;
354
- platformOverride?: Platform;
355
- imageOsVersionOverride?: string;
351
+ instanceConfiguration?: InstanceConfiguration | undefined;
352
+ dockerfileTemplateData?: string | undefined;
353
+ dockerfileTemplateUri?: string | undefined;
354
+ platformOverride?: Platform | undefined;
355
+ imageOsVersionOverride?: string | undefined;
356
356
  parentImage: string | undefined;
357
- tags?: Record<string, string>;
358
- workingDirectory?: string;
357
+ tags?: Record<string, string> | undefined;
358
+ workingDirectory?: string | undefined;
359
359
  targetRepository: TargetContainerRepository | undefined;
360
- kmsKeyId?: string;
361
- clientToken?: string;
360
+ kmsKeyId?: string | undefined;
361
+ clientToken?: string | undefined;
362
362
  }
363
363
  export interface CreateContainerRecipeResponse {
364
- requestId?: string;
365
- clientToken?: string;
366
- containerRecipeArn?: string;
364
+ requestId?: string | undefined;
365
+ clientToken?: string | undefined;
366
+ containerRecipeArn?: string | undefined;
367
367
  }
368
368
  export declare class ResourceAlreadyExistsException extends __BaseException {
369
369
  readonly name: "ResourceAlreadyExistsException";
@@ -373,24 +373,24 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
373
373
  );
374
374
  }
375
375
  export interface FastLaunchLaunchTemplateSpecification {
376
- launchTemplateId?: string;
377
- launchTemplateName?: string;
378
- launchTemplateVersion?: string;
376
+ launchTemplateId?: string | undefined;
377
+ launchTemplateName?: string | undefined;
378
+ launchTemplateVersion?: string | undefined;
379
379
  }
380
380
  export interface FastLaunchSnapshotConfiguration {
381
- targetResourceCount?: number;
381
+ targetResourceCount?: number | undefined;
382
382
  }
383
383
  export interface FastLaunchConfiguration {
384
384
  enabled: boolean | undefined;
385
- snapshotConfiguration?: FastLaunchSnapshotConfiguration;
386
- maxParallelLaunches?: number;
387
- launchTemplate?: FastLaunchLaunchTemplateSpecification;
388
- accountId?: string;
385
+ snapshotConfiguration?: FastLaunchSnapshotConfiguration | undefined;
386
+ maxParallelLaunches?: number | undefined;
387
+ launchTemplate?: FastLaunchLaunchTemplateSpecification | undefined;
388
+ accountId?: string | undefined;
389
389
  }
390
390
  export interface LaunchTemplateConfiguration {
391
391
  launchTemplateId: string | undefined;
392
- accountId?: string;
393
- setDefaultVersion?: boolean;
392
+ accountId?: string | undefined;
393
+ setDefaultVersion?: boolean | undefined;
394
394
  }
395
395
  export declare const DiskImageFormat: {
396
396
  readonly RAW: "RAW";
@@ -403,40 +403,42 @@ export interface S3ExportConfiguration {
403
403
  roleName: string | undefined;
404
404
  diskImageFormat: DiskImageFormat | undefined;
405
405
  s3Bucket: string | undefined;
406
- s3Prefix?: string;
406
+ s3Prefix?: string | undefined;
407
407
  }
408
408
  export interface Distribution {
409
409
  region: string | undefined;
410
- amiDistributionConfiguration?: AmiDistributionConfiguration;
411
- containerDistributionConfiguration?: ContainerDistributionConfiguration;
412
- licenseConfigurationArns?: string[];
413
- launchTemplateConfigurations?: LaunchTemplateConfiguration[];
414
- s3ExportConfiguration?: S3ExportConfiguration;
415
- fastLaunchConfigurations?: FastLaunchConfiguration[];
410
+ amiDistributionConfiguration?: AmiDistributionConfiguration | undefined;
411
+ containerDistributionConfiguration?:
412
+ | ContainerDistributionConfiguration
413
+ | undefined;
414
+ licenseConfigurationArns?: string[] | undefined;
415
+ launchTemplateConfigurations?: LaunchTemplateConfiguration[] | undefined;
416
+ s3ExportConfiguration?: S3ExportConfiguration | undefined;
417
+ fastLaunchConfigurations?: FastLaunchConfiguration[] | undefined;
416
418
  }
417
419
  export interface CreateDistributionConfigurationRequest {
418
420
  name: string | undefined;
419
- description?: string;
421
+ description?: string | undefined;
420
422
  distributions: Distribution[] | undefined;
421
- tags?: Record<string, string>;
422
- clientToken?: string;
423
+ tags?: Record<string, string> | undefined;
424
+ clientToken?: string | undefined;
423
425
  }
424
426
  export interface CreateDistributionConfigurationResponse {
425
- requestId?: string;
426
- clientToken?: string;
427
- distributionConfigurationArn?: string;
427
+ requestId?: string | undefined;
428
+ clientToken?: string | undefined;
429
+ distributionConfigurationArn?: string | undefined;
428
430
  }
429
431
  export interface EcrConfiguration {
430
- repositoryName?: string;
431
- containerTags?: string[];
432
+ repositoryName?: string | undefined;
433
+ containerTags?: string[] | undefined;
432
434
  }
433
435
  export interface ImageScanningConfiguration {
434
- imageScanningEnabled?: boolean;
435
- ecrConfiguration?: EcrConfiguration;
436
+ imageScanningEnabled?: boolean | undefined;
437
+ ecrConfiguration?: EcrConfiguration | undefined;
436
438
  }
437
439
  export interface ImageTestsConfiguration {
438
- imageTestsEnabled?: boolean;
439
- timeoutMinutes?: number;
440
+ imageTestsEnabled?: boolean | undefined;
441
+ timeoutMinutes?: number | undefined;
440
442
  }
441
443
  export declare const OnWorkflowFailure: {
442
444
  readonly ABORT: "ABORT";
@@ -450,27 +452,27 @@ export interface WorkflowParameter {
450
452
  }
451
453
  export interface WorkflowConfiguration {
452
454
  workflowArn: string | undefined;
453
- parameters?: WorkflowParameter[];
454
- parallelGroup?: string;
455
- onFailure?: OnWorkflowFailure;
455
+ parameters?: WorkflowParameter[] | undefined;
456
+ parallelGroup?: string | undefined;
457
+ onFailure?: OnWorkflowFailure | undefined;
456
458
  }
457
459
  export interface CreateImageRequest {
458
- imageRecipeArn?: string;
459
- containerRecipeArn?: string;
460
- distributionConfigurationArn?: string;
460
+ imageRecipeArn?: string | undefined;
461
+ containerRecipeArn?: string | undefined;
462
+ distributionConfigurationArn?: string | undefined;
461
463
  infrastructureConfigurationArn: string | undefined;
462
- imageTestsConfiguration?: ImageTestsConfiguration;
463
- enhancedImageMetadataEnabled?: boolean;
464
- tags?: Record<string, string>;
465
- clientToken?: string;
466
- imageScanningConfiguration?: ImageScanningConfiguration;
467
- workflows?: WorkflowConfiguration[];
468
- executionRole?: string;
464
+ imageTestsConfiguration?: ImageTestsConfiguration | undefined;
465
+ enhancedImageMetadataEnabled?: boolean | undefined;
466
+ tags?: Record<string, string> | undefined;
467
+ clientToken?: string | undefined;
468
+ imageScanningConfiguration?: ImageScanningConfiguration | undefined;
469
+ workflows?: WorkflowConfiguration[] | undefined;
470
+ executionRole?: string | undefined;
469
471
  }
470
472
  export interface CreateImageResponse {
471
- requestId?: string;
472
- clientToken?: string;
473
- imageBuildVersionArn?: string;
473
+ requestId?: string | undefined;
474
+ clientToken?: string | undefined;
475
+ imageBuildVersionArn?: string | undefined;
474
476
  }
475
477
  export declare const PipelineExecutionStartCondition: {
476
478
  readonly EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE: "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE";
@@ -479,9 +481,9 @@ export declare const PipelineExecutionStartCondition: {
479
481
  export type PipelineExecutionStartCondition =
480
482
  (typeof PipelineExecutionStartCondition)[keyof typeof PipelineExecutionStartCondition];
481
483
  export interface Schedule {
482
- scheduleExpression?: string;
483
- timezone?: string;
484
- pipelineExecutionStartCondition?: PipelineExecutionStartCondition;
484
+ scheduleExpression?: string | undefined;
485
+ timezone?: string | undefined;
486
+ pipelineExecutionStartCondition?: PipelineExecutionStartCondition | undefined;
485
487
  }
486
488
  export declare const PipelineStatus: {
487
489
  readonly DISABLED: "DISABLED";
@@ -491,53 +493,53 @@ export type PipelineStatus =
491
493
  (typeof PipelineStatus)[keyof typeof PipelineStatus];
492
494
  export interface CreateImagePipelineRequest {
493
495
  name: string | undefined;
494
- description?: string;
495
- imageRecipeArn?: string;
496
- containerRecipeArn?: string;
496
+ description?: string | undefined;
497
+ imageRecipeArn?: string | undefined;
498
+ containerRecipeArn?: string | undefined;
497
499
  infrastructureConfigurationArn: string | undefined;
498
- distributionConfigurationArn?: string;
499
- imageTestsConfiguration?: ImageTestsConfiguration;
500
- enhancedImageMetadataEnabled?: boolean;
501
- schedule?: Schedule;
502
- status?: PipelineStatus;
503
- tags?: Record<string, string>;
504
- clientToken?: string;
505
- imageScanningConfiguration?: ImageScanningConfiguration;
506
- workflows?: WorkflowConfiguration[];
507
- executionRole?: string;
500
+ distributionConfigurationArn?: string | undefined;
501
+ imageTestsConfiguration?: ImageTestsConfiguration | undefined;
502
+ enhancedImageMetadataEnabled?: boolean | undefined;
503
+ schedule?: Schedule | undefined;
504
+ status?: PipelineStatus | undefined;
505
+ tags?: Record<string, string> | undefined;
506
+ clientToken?: string | undefined;
507
+ imageScanningConfiguration?: ImageScanningConfiguration | undefined;
508
+ workflows?: WorkflowConfiguration[] | undefined;
509
+ executionRole?: string | undefined;
508
510
  }
509
511
  export interface CreateImagePipelineResponse {
510
- requestId?: string;
511
- clientToken?: string;
512
- imagePipelineArn?: string;
512
+ requestId?: string | undefined;
513
+ clientToken?: string | undefined;
514
+ imagePipelineArn?: string | undefined;
513
515
  }
514
516
  export interface CreateImageRecipeRequest {
515
517
  name: string | undefined;
516
- description?: string;
518
+ description?: string | undefined;
517
519
  semanticVersion: string | undefined;
518
520
  components: ComponentConfiguration[] | undefined;
519
521
  parentImage: string | undefined;
520
- blockDeviceMappings?: InstanceBlockDeviceMapping[];
521
- tags?: Record<string, string>;
522
- workingDirectory?: string;
523
- additionalInstanceConfiguration?: AdditionalInstanceConfiguration;
524
- clientToken?: string;
522
+ blockDeviceMappings?: InstanceBlockDeviceMapping[] | undefined;
523
+ tags?: Record<string, string> | undefined;
524
+ workingDirectory?: string | undefined;
525
+ additionalInstanceConfiguration?: AdditionalInstanceConfiguration | undefined;
526
+ clientToken?: string | undefined;
525
527
  }
526
528
  export interface CreateImageRecipeResponse {
527
- requestId?: string;
528
- clientToken?: string;
529
- imageRecipeArn?: string;
529
+ requestId?: string | undefined;
530
+ clientToken?: string | undefined;
531
+ imageRecipeArn?: string | undefined;
530
532
  }
531
533
  export interface InstanceMetadataOptions {
532
- httpTokens?: string;
533
- httpPutResponseHopLimit?: number;
534
+ httpTokens?: string | undefined;
535
+ httpPutResponseHopLimit?: number | undefined;
534
536
  }
535
537
  export interface S3Logs {
536
- s3BucketName?: string;
537
- s3KeyPrefix?: string;
538
+ s3BucketName?: string | undefined;
539
+ s3KeyPrefix?: string | undefined;
538
540
  }
539
541
  export interface Logging {
540
- s3Logs?: S3Logs;
542
+ s3Logs?: S3Logs | undefined;
541
543
  }
542
544
  export declare const TenancyType: {
543
545
  readonly DEDICATED: "dedicated";
@@ -546,37 +548,37 @@ export declare const TenancyType: {
546
548
  };
547
549
  export type TenancyType = (typeof TenancyType)[keyof typeof TenancyType];
548
550
  export interface Placement {
549
- availabilityZone?: string;
550
- tenancy?: TenancyType;
551
- hostId?: string;
552
- hostResourceGroupArn?: string;
551
+ availabilityZone?: string | undefined;
552
+ tenancy?: TenancyType | undefined;
553
+ hostId?: string | undefined;
554
+ hostResourceGroupArn?: string | undefined;
553
555
  }
554
556
  export interface CreateInfrastructureConfigurationRequest {
555
557
  name: string | undefined;
556
- description?: string;
557
- instanceTypes?: string[];
558
+ description?: string | undefined;
559
+ instanceTypes?: string[] | undefined;
558
560
  instanceProfileName: string | undefined;
559
- securityGroupIds?: string[];
560
- subnetId?: string;
561
- logging?: Logging;
562
- keyPair?: string;
563
- terminateInstanceOnFailure?: boolean;
564
- snsTopicArn?: string;
565
- resourceTags?: Record<string, string>;
566
- instanceMetadataOptions?: InstanceMetadataOptions;
567
- tags?: Record<string, string>;
568
- placement?: Placement;
569
- clientToken?: string;
561
+ securityGroupIds?: string[] | undefined;
562
+ subnetId?: string | undefined;
563
+ logging?: Logging | undefined;
564
+ keyPair?: string | undefined;
565
+ terminateInstanceOnFailure?: boolean | undefined;
566
+ snsTopicArn?: string | undefined;
567
+ resourceTags?: Record<string, string> | undefined;
568
+ instanceMetadataOptions?: InstanceMetadataOptions | undefined;
569
+ tags?: Record<string, string> | undefined;
570
+ placement?: Placement | undefined;
571
+ clientToken?: string | undefined;
570
572
  }
571
573
  export interface CreateInfrastructureConfigurationResponse {
572
- requestId?: string;
573
- clientToken?: string;
574
- infrastructureConfigurationArn?: string;
574
+ requestId?: string | undefined;
575
+ clientToken?: string | undefined;
576
+ infrastructureConfigurationArn?: string | undefined;
575
577
  }
576
578
  export interface LifecyclePolicyDetailActionIncludeResources {
577
- amis?: boolean;
578
- snapshots?: boolean;
579
- containers?: boolean;
579
+ amis?: boolean | undefined;
580
+ snapshots?: boolean | undefined;
581
+ containers?: boolean | undefined;
580
582
  }
581
583
  export declare const LifecyclePolicyDetailActionType: {
582
584
  readonly DELETE: "DELETE";
@@ -587,7 +589,7 @@ export type LifecyclePolicyDetailActionType =
587
589
  (typeof LifecyclePolicyDetailActionType)[keyof typeof LifecyclePolicyDetailActionType];
588
590
  export interface LifecyclePolicyDetailAction {
589
591
  type: LifecyclePolicyDetailActionType | undefined;
590
- includeResources?: LifecyclePolicyDetailActionIncludeResources;
592
+ includeResources?: LifecyclePolicyDetailActionIncludeResources | undefined;
591
593
  }
592
594
  export declare const LifecyclePolicyTimeUnit: {
593
595
  readonly DAYS: "DAYS";
@@ -602,15 +604,17 @@ export interface LifecyclePolicyDetailExclusionRulesAmisLastLaunched {
602
604
  unit: LifecyclePolicyTimeUnit | undefined;
603
605
  }
604
606
  export interface LifecyclePolicyDetailExclusionRulesAmis {
605
- isPublic?: boolean;
606
- regions?: string[];
607
- sharedAccounts?: string[];
608
- lastLaunched?: LifecyclePolicyDetailExclusionRulesAmisLastLaunched;
609
- tagMap?: Record<string, string>;
607
+ isPublic?: boolean | undefined;
608
+ regions?: string[] | undefined;
609
+ sharedAccounts?: string[] | undefined;
610
+ lastLaunched?:
611
+ | LifecyclePolicyDetailExclusionRulesAmisLastLaunched
612
+ | undefined;
613
+ tagMap?: Record<string, string> | undefined;
610
614
  }
611
615
  export interface LifecyclePolicyDetailExclusionRules {
612
- tagMap?: Record<string, string>;
613
- amis?: LifecyclePolicyDetailExclusionRulesAmis;
616
+ tagMap?: Record<string, string> | undefined;
617
+ amis?: LifecyclePolicyDetailExclusionRulesAmis | undefined;
614
618
  }
615
619
  export declare const LifecyclePolicyDetailFilterType: {
616
620
  readonly AGE: "AGE";
@@ -621,21 +625,21 @@ export type LifecyclePolicyDetailFilterType =
621
625
  export interface LifecyclePolicyDetailFilter {
622
626
  type: LifecyclePolicyDetailFilterType | undefined;
623
627
  value: number | undefined;
624
- unit?: LifecyclePolicyTimeUnit;
625
- retainAtLeast?: number;
628
+ unit?: LifecyclePolicyTimeUnit | undefined;
629
+ retainAtLeast?: number | undefined;
626
630
  }
627
631
  export interface LifecyclePolicyDetail {
628
632
  action: LifecyclePolicyDetailAction | undefined;
629
633
  filter: LifecyclePolicyDetailFilter | undefined;
630
- exclusionRules?: LifecyclePolicyDetailExclusionRules;
634
+ exclusionRules?: LifecyclePolicyDetailExclusionRules | undefined;
631
635
  }
632
636
  export interface LifecyclePolicyResourceSelectionRecipe {
633
637
  name: string | undefined;
634
638
  semanticVersion: string | undefined;
635
639
  }
636
640
  export interface LifecyclePolicyResourceSelection {
637
- recipes?: LifecyclePolicyResourceSelectionRecipe[];
638
- tagMap?: Record<string, string>;
641
+ recipes?: LifecyclePolicyResourceSelectionRecipe[] | undefined;
642
+ tagMap?: Record<string, string> | undefined;
639
643
  }
640
644
  export declare const LifecyclePolicyResourceType: {
641
645
  readonly AMI_IMAGE: "AMI_IMAGE";
@@ -651,18 +655,18 @@ export type LifecyclePolicyStatus =
651
655
  (typeof LifecyclePolicyStatus)[keyof typeof LifecyclePolicyStatus];
652
656
  export interface CreateLifecyclePolicyRequest {
653
657
  name: string | undefined;
654
- description?: string;
655
- status?: LifecyclePolicyStatus;
658
+ description?: string | undefined;
659
+ status?: LifecyclePolicyStatus | undefined;
656
660
  executionRole: string | undefined;
657
661
  resourceType: LifecyclePolicyResourceType | undefined;
658
662
  policyDetails: LifecyclePolicyDetail[] | undefined;
659
663
  resourceSelection: LifecyclePolicyResourceSelection | undefined;
660
- tags?: Record<string, string>;
661
- clientToken?: string;
664
+ tags?: Record<string, string> | undefined;
665
+ clientToken?: string | undefined;
662
666
  }
663
667
  export interface CreateLifecyclePolicyResponse {
664
- clientToken?: string;
665
- lifecyclePolicyArn?: string;
668
+ clientToken?: string | undefined;
669
+ lifecyclePolicyArn?: string | undefined;
666
670
  }
667
671
  export declare const WorkflowType: {
668
672
  readonly BUILD: "BUILD";
@@ -673,43 +677,43 @@ export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
673
677
  export interface CreateWorkflowRequest {
674
678
  name: string | undefined;
675
679
  semanticVersion: string | undefined;
676
- description?: string;
677
- changeDescription?: string;
678
- data?: string;
679
- uri?: string;
680
- kmsKeyId?: string;
681
- tags?: Record<string, string>;
682
- clientToken?: string;
680
+ description?: string | undefined;
681
+ changeDescription?: string | undefined;
682
+ data?: string | undefined;
683
+ uri?: string | undefined;
684
+ kmsKeyId?: string | undefined;
685
+ tags?: Record<string, string> | undefined;
686
+ clientToken?: string | undefined;
683
687
  type: WorkflowType | undefined;
684
688
  }
685
689
  export interface CreateWorkflowResponse {
686
- clientToken?: string;
687
- workflowBuildVersionArn?: string;
690
+ clientToken?: string | undefined;
691
+ workflowBuildVersionArn?: string | undefined;
688
692
  }
689
693
  export interface CvssScore {
690
- baseScore?: number;
691
- scoringVector?: string;
692
- version?: string;
693
- source?: string;
694
+ baseScore?: number | undefined;
695
+ scoringVector?: string | undefined;
696
+ version?: string | undefined;
697
+ source?: string | undefined;
694
698
  }
695
699
  export interface CvssScoreAdjustment {
696
- metric?: string;
697
- reason?: string;
700
+ metric?: string | undefined;
701
+ reason?: string | undefined;
698
702
  }
699
703
  export interface CvssScoreDetails {
700
- scoreSource?: string;
701
- cvssSource?: string;
702
- version?: string;
703
- score?: number;
704
- scoringVector?: string;
705
- adjustments?: CvssScoreAdjustment[];
704
+ scoreSource?: string | undefined;
705
+ cvssSource?: string | undefined;
706
+ version?: string | undefined;
707
+ score?: number | undefined;
708
+ scoringVector?: string | undefined;
709
+ adjustments?: CvssScoreAdjustment[] | undefined;
706
710
  }
707
711
  export interface DeleteComponentRequest {
708
712
  componentBuildVersionArn: string | undefined;
709
713
  }
710
714
  export interface DeleteComponentResponse {
711
- requestId?: string;
712
- componentBuildVersionArn?: string;
715
+ requestId?: string | undefined;
716
+ componentBuildVersionArn?: string | undefined;
713
717
  }
714
718
  export declare class ResourceDependencyException extends __BaseException {
715
719
  readonly name: "ResourceDependencyException";
@@ -722,92 +726,92 @@ export interface DeleteContainerRecipeRequest {
722
726
  containerRecipeArn: string | undefined;
723
727
  }
724
728
  export interface DeleteContainerRecipeResponse {
725
- requestId?: string;
726
- containerRecipeArn?: string;
729
+ requestId?: string | undefined;
730
+ containerRecipeArn?: string | undefined;
727
731
  }
728
732
  export interface DeleteDistributionConfigurationRequest {
729
733
  distributionConfigurationArn: string | undefined;
730
734
  }
731
735
  export interface DeleteDistributionConfigurationResponse {
732
- requestId?: string;
733
- distributionConfigurationArn?: string;
736
+ requestId?: string | undefined;
737
+ distributionConfigurationArn?: string | undefined;
734
738
  }
735
739
  export interface DeleteImageRequest {
736
740
  imageBuildVersionArn: string | undefined;
737
741
  }
738
742
  export interface DeleteImageResponse {
739
- requestId?: string;
740
- imageBuildVersionArn?: string;
743
+ requestId?: string | undefined;
744
+ imageBuildVersionArn?: string | undefined;
741
745
  }
742
746
  export interface DeleteImagePipelineRequest {
743
747
  imagePipelineArn: string | undefined;
744
748
  }
745
749
  export interface DeleteImagePipelineResponse {
746
- requestId?: string;
747
- imagePipelineArn?: string;
750
+ requestId?: string | undefined;
751
+ imagePipelineArn?: string | undefined;
748
752
  }
749
753
  export interface DeleteImageRecipeRequest {
750
754
  imageRecipeArn: string | undefined;
751
755
  }
752
756
  export interface DeleteImageRecipeResponse {
753
- requestId?: string;
754
- imageRecipeArn?: string;
757
+ requestId?: string | undefined;
758
+ imageRecipeArn?: string | undefined;
755
759
  }
756
760
  export interface DeleteInfrastructureConfigurationRequest {
757
761
  infrastructureConfigurationArn: string | undefined;
758
762
  }
759
763
  export interface DeleteInfrastructureConfigurationResponse {
760
- requestId?: string;
761
- infrastructureConfigurationArn?: string;
764
+ requestId?: string | undefined;
765
+ infrastructureConfigurationArn?: string | undefined;
762
766
  }
763
767
  export interface DeleteLifecyclePolicyRequest {
764
768
  lifecyclePolicyArn: string | undefined;
765
769
  }
766
770
  export interface DeleteLifecyclePolicyResponse {
767
- lifecyclePolicyArn?: string;
771
+ lifecyclePolicyArn?: string | undefined;
768
772
  }
769
773
  export interface DeleteWorkflowRequest {
770
774
  workflowBuildVersionArn: string | undefined;
771
775
  }
772
776
  export interface DeleteWorkflowResponse {
773
- workflowBuildVersionArn?: string;
777
+ workflowBuildVersionArn?: string | undefined;
774
778
  }
775
779
  export interface DistributionConfiguration {
776
- arn?: string;
777
- name?: string;
778
- description?: string;
779
- distributions?: Distribution[];
780
+ arn?: string | undefined;
781
+ name?: string | undefined;
782
+ description?: string | undefined;
783
+ distributions?: Distribution[] | undefined;
780
784
  timeoutMinutes: number | undefined;
781
- dateCreated?: string;
782
- dateUpdated?: string;
783
- tags?: Record<string, string>;
785
+ dateCreated?: string | undefined;
786
+ dateUpdated?: string | undefined;
787
+ tags?: Record<string, string> | undefined;
784
788
  }
785
789
  export interface DistributionConfigurationSummary {
786
- arn?: string;
787
- name?: string;
788
- description?: string;
789
- dateCreated?: string;
790
- dateUpdated?: string;
791
- tags?: Record<string, string>;
792
- regions?: string[];
790
+ arn?: string | undefined;
791
+ name?: string | undefined;
792
+ description?: string | undefined;
793
+ dateCreated?: string | undefined;
794
+ dateUpdated?: string | undefined;
795
+ tags?: Record<string, string> | undefined;
796
+ regions?: string[] | undefined;
793
797
  }
794
798
  export interface Filter {
795
- name?: string;
796
- values?: string[];
799
+ name?: string | undefined;
800
+ values?: string[] | undefined;
797
801
  }
798
802
  export interface GetComponentRequest {
799
803
  componentBuildVersionArn: string | undefined;
800
804
  }
801
805
  export interface GetComponentResponse {
802
- requestId?: string;
803
- component?: Component;
806
+ requestId?: string | undefined;
807
+ component?: Component | undefined;
804
808
  }
805
809
  export interface GetComponentPolicyRequest {
806
810
  componentArn: string | undefined;
807
811
  }
808
812
  export interface GetComponentPolicyResponse {
809
- requestId?: string;
810
- policy?: string;
813
+ requestId?: string | undefined;
814
+ policy?: string | undefined;
811
815
  }
812
816
  export declare class ResourceNotFoundException extends __BaseException {
813
817
  readonly name: "ResourceNotFoundException";
@@ -820,22 +824,22 @@ export interface GetContainerRecipeRequest {
820
824
  containerRecipeArn: string | undefined;
821
825
  }
822
826
  export interface GetContainerRecipeResponse {
823
- requestId?: string;
824
- containerRecipe?: ContainerRecipe;
827
+ requestId?: string | undefined;
828
+ containerRecipe?: ContainerRecipe | undefined;
825
829
  }
826
830
  export interface GetContainerRecipePolicyRequest {
827
831
  containerRecipeArn: string | undefined;
828
832
  }
829
833
  export interface GetContainerRecipePolicyResponse {
830
- requestId?: string;
831
- policy?: string;
834
+ requestId?: string | undefined;
835
+ policy?: string | undefined;
832
836
  }
833
837
  export interface GetDistributionConfigurationRequest {
834
838
  distributionConfigurationArn: string | undefined;
835
839
  }
836
840
  export interface GetDistributionConfigurationResponse {
837
- requestId?: string;
838
- distributionConfiguration?: DistributionConfiguration;
841
+ requestId?: string | undefined;
842
+ distributionConfiguration?: DistributionConfiguration | undefined;
839
843
  }
840
844
  export interface GetImageRequest {
841
845
  imageBuildVersionArn: string | undefined;
@@ -846,20 +850,20 @@ export declare const ImageType: {
846
850
  };
847
851
  export type ImageType = (typeof ImageType)[keyof typeof ImageType];
848
852
  export interface ImageRecipe {
849
- arn?: string;
850
- type?: ImageType;
851
- name?: string;
852
- description?: string;
853
- platform?: Platform;
854
- owner?: string;
855
- version?: string;
856
- components?: ComponentConfiguration[];
857
- parentImage?: string;
858
- blockDeviceMappings?: InstanceBlockDeviceMapping[];
859
- dateCreated?: string;
860
- tags?: Record<string, string>;
861
- workingDirectory?: string;
862
- additionalInstanceConfiguration?: AdditionalInstanceConfiguration;
853
+ arn?: string | undefined;
854
+ type?: ImageType | undefined;
855
+ name?: string | undefined;
856
+ description?: string | undefined;
857
+ platform?: Platform | undefined;
858
+ owner?: string | undefined;
859
+ version?: string | undefined;
860
+ components?: ComponentConfiguration[] | undefined;
861
+ parentImage?: string | undefined;
862
+ blockDeviceMappings?: InstanceBlockDeviceMapping[] | undefined;
863
+ dateCreated?: string | undefined;
864
+ tags?: Record<string, string> | undefined;
865
+ workingDirectory?: string | undefined;
866
+ additionalInstanceConfiguration?: AdditionalInstanceConfiguration | undefined;
863
867
  }
864
868
  export declare const ImageSource: {
865
869
  readonly AMAZON_MANAGED: "AMAZON_MANAGED";
@@ -869,27 +873,27 @@ export declare const ImageSource: {
869
873
  };
870
874
  export type ImageSource = (typeof ImageSource)[keyof typeof ImageSource];
871
875
  export interface InfrastructureConfiguration {
872
- arn?: string;
873
- name?: string;
874
- description?: string;
875
- instanceTypes?: string[];
876
- instanceProfileName?: string;
877
- securityGroupIds?: string[];
878
- subnetId?: string;
879
- logging?: Logging;
880
- keyPair?: string;
881
- terminateInstanceOnFailure?: boolean;
882
- snsTopicArn?: string;
883
- dateCreated?: string;
884
- dateUpdated?: string;
885
- resourceTags?: Record<string, string>;
886
- instanceMetadataOptions?: InstanceMetadataOptions;
887
- tags?: Record<string, string>;
888
- placement?: Placement;
876
+ arn?: string | undefined;
877
+ name?: string | undefined;
878
+ description?: string | undefined;
879
+ instanceTypes?: string[] | undefined;
880
+ instanceProfileName?: string | undefined;
881
+ securityGroupIds?: string[] | undefined;
882
+ subnetId?: string | undefined;
883
+ logging?: Logging | undefined;
884
+ keyPair?: string | undefined;
885
+ terminateInstanceOnFailure?: boolean | undefined;
886
+ snsTopicArn?: string | undefined;
887
+ dateCreated?: string | undefined;
888
+ dateUpdated?: string | undefined;
889
+ resourceTags?: Record<string, string> | undefined;
890
+ instanceMetadataOptions?: InstanceMetadataOptions | undefined;
891
+ tags?: Record<string, string> | undefined;
892
+ placement?: Placement | undefined;
889
893
  }
890
894
  export interface OutputResources {
891
- amis?: Ami[];
892
- containers?: Container[];
895
+ amis?: Ami[] | undefined;
896
+ containers?: Container[] | undefined;
893
897
  }
894
898
  export declare const ImageScanStatus: {
895
899
  readonly ABANDONED: "ABANDONED";
@@ -903,103 +907,103 @@ export declare const ImageScanStatus: {
903
907
  export type ImageScanStatus =
904
908
  (typeof ImageScanStatus)[keyof typeof ImageScanStatus];
905
909
  export interface ImageScanState {
906
- status?: ImageScanStatus;
907
- reason?: string;
910
+ status?: ImageScanStatus | undefined;
911
+ reason?: string | undefined;
908
912
  }
909
913
  export interface Image {
910
- arn?: string;
911
- type?: ImageType;
912
- name?: string;
913
- version?: string;
914
- platform?: Platform;
915
- enhancedImageMetadataEnabled?: boolean;
916
- osVersion?: string;
917
- state?: ImageState;
918
- imageRecipe?: ImageRecipe;
919
- containerRecipe?: ContainerRecipe;
920
- sourcePipelineName?: string;
921
- sourcePipelineArn?: string;
922
- infrastructureConfiguration?: InfrastructureConfiguration;
923
- distributionConfiguration?: DistributionConfiguration;
924
- imageTestsConfiguration?: ImageTestsConfiguration;
925
- dateCreated?: string;
926
- outputResources?: OutputResources;
927
- tags?: Record<string, string>;
928
- buildType?: BuildType;
929
- imageSource?: ImageSource;
930
- scanState?: ImageScanState;
931
- imageScanningConfiguration?: ImageScanningConfiguration;
932
- deprecationTime?: Date;
933
- lifecycleExecutionId?: string;
934
- executionRole?: string;
935
- workflows?: WorkflowConfiguration[];
914
+ arn?: string | undefined;
915
+ type?: ImageType | undefined;
916
+ name?: string | undefined;
917
+ version?: string | undefined;
918
+ platform?: Platform | undefined;
919
+ enhancedImageMetadataEnabled?: boolean | undefined;
920
+ osVersion?: string | undefined;
921
+ state?: ImageState | undefined;
922
+ imageRecipe?: ImageRecipe | undefined;
923
+ containerRecipe?: ContainerRecipe | undefined;
924
+ sourcePipelineName?: string | undefined;
925
+ sourcePipelineArn?: string | undefined;
926
+ infrastructureConfiguration?: InfrastructureConfiguration | undefined;
927
+ distributionConfiguration?: DistributionConfiguration | undefined;
928
+ imageTestsConfiguration?: ImageTestsConfiguration | undefined;
929
+ dateCreated?: string | undefined;
930
+ outputResources?: OutputResources | undefined;
931
+ tags?: Record<string, string> | undefined;
932
+ buildType?: BuildType | undefined;
933
+ imageSource?: ImageSource | undefined;
934
+ scanState?: ImageScanState | undefined;
935
+ imageScanningConfiguration?: ImageScanningConfiguration | undefined;
936
+ deprecationTime?: Date | undefined;
937
+ lifecycleExecutionId?: string | undefined;
938
+ executionRole?: string | undefined;
939
+ workflows?: WorkflowConfiguration[] | undefined;
936
940
  }
937
941
  export interface GetImageResponse {
938
- requestId?: string;
939
- image?: Image;
942
+ requestId?: string | undefined;
943
+ image?: Image | undefined;
940
944
  }
941
945
  export interface GetImagePipelineRequest {
942
946
  imagePipelineArn: string | undefined;
943
947
  }
944
948
  export interface ImagePipeline {
945
- arn?: string;
946
- name?: string;
947
- description?: string;
948
- platform?: Platform;
949
- enhancedImageMetadataEnabled?: boolean;
950
- imageRecipeArn?: string;
951
- containerRecipeArn?: string;
952
- infrastructureConfigurationArn?: string;
953
- distributionConfigurationArn?: string;
954
- imageTestsConfiguration?: ImageTestsConfiguration;
955
- schedule?: Schedule;
956
- status?: PipelineStatus;
957
- dateCreated?: string;
958
- dateUpdated?: string;
959
- dateLastRun?: string;
960
- dateNextRun?: string;
961
- tags?: Record<string, string>;
962
- imageScanningConfiguration?: ImageScanningConfiguration;
963
- executionRole?: string;
964
- workflows?: WorkflowConfiguration[];
949
+ arn?: string | undefined;
950
+ name?: string | undefined;
951
+ description?: string | undefined;
952
+ platform?: Platform | undefined;
953
+ enhancedImageMetadataEnabled?: boolean | undefined;
954
+ imageRecipeArn?: string | undefined;
955
+ containerRecipeArn?: string | undefined;
956
+ infrastructureConfigurationArn?: string | undefined;
957
+ distributionConfigurationArn?: string | undefined;
958
+ imageTestsConfiguration?: ImageTestsConfiguration | undefined;
959
+ schedule?: Schedule | undefined;
960
+ status?: PipelineStatus | undefined;
961
+ dateCreated?: string | undefined;
962
+ dateUpdated?: string | undefined;
963
+ dateLastRun?: string | undefined;
964
+ dateNextRun?: string | undefined;
965
+ tags?: Record<string, string> | undefined;
966
+ imageScanningConfiguration?: ImageScanningConfiguration | undefined;
967
+ executionRole?: string | undefined;
968
+ workflows?: WorkflowConfiguration[] | undefined;
965
969
  }
966
970
  export interface GetImagePipelineResponse {
967
- requestId?: string;
968
- imagePipeline?: ImagePipeline;
971
+ requestId?: string | undefined;
972
+ imagePipeline?: ImagePipeline | undefined;
969
973
  }
970
974
  export interface GetImagePolicyRequest {
971
975
  imageArn: string | undefined;
972
976
  }
973
977
  export interface GetImagePolicyResponse {
974
- requestId?: string;
975
- policy?: string;
978
+ requestId?: string | undefined;
979
+ policy?: string | undefined;
976
980
  }
977
981
  export interface GetImageRecipeRequest {
978
982
  imageRecipeArn: string | undefined;
979
983
  }
980
984
  export interface GetImageRecipeResponse {
981
- requestId?: string;
982
- imageRecipe?: ImageRecipe;
985
+ requestId?: string | undefined;
986
+ imageRecipe?: ImageRecipe | undefined;
983
987
  }
984
988
  export interface GetImageRecipePolicyRequest {
985
989
  imageRecipeArn: string | undefined;
986
990
  }
987
991
  export interface GetImageRecipePolicyResponse {
988
- requestId?: string;
989
- policy?: string;
992
+ requestId?: string | undefined;
993
+ policy?: string | undefined;
990
994
  }
991
995
  export interface GetInfrastructureConfigurationRequest {
992
996
  infrastructureConfigurationArn: string | undefined;
993
997
  }
994
998
  export interface GetInfrastructureConfigurationResponse {
995
- requestId?: string;
996
- infrastructureConfiguration?: InfrastructureConfiguration;
999
+ requestId?: string | undefined;
1000
+ infrastructureConfiguration?: InfrastructureConfiguration | undefined;
997
1001
  }
998
1002
  export interface GetLifecycleExecutionRequest {
999
1003
  lifecycleExecutionId: string | undefined;
1000
1004
  }
1001
1005
  export interface LifecycleExecutionResourcesImpactedSummary {
1002
- hasImpactedResources?: boolean;
1006
+ hasImpactedResources?: boolean | undefined;
1003
1007
  }
1004
1008
  export declare const LifecycleExecutionStatus: {
1005
1009
  readonly CANCELLED: "CANCELLED";
@@ -1012,39 +1016,41 @@ export declare const LifecycleExecutionStatus: {
1012
1016
  export type LifecycleExecutionStatus =
1013
1017
  (typeof LifecycleExecutionStatus)[keyof typeof LifecycleExecutionStatus];
1014
1018
  export interface LifecycleExecutionState {
1015
- status?: LifecycleExecutionStatus;
1016
- reason?: string;
1019
+ status?: LifecycleExecutionStatus | undefined;
1020
+ reason?: string | undefined;
1017
1021
  }
1018
1022
  export interface LifecycleExecution {
1019
- lifecycleExecutionId?: string;
1020
- lifecyclePolicyArn?: string;
1021
- resourcesImpactedSummary?: LifecycleExecutionResourcesImpactedSummary;
1022
- state?: LifecycleExecutionState;
1023
- startTime?: Date;
1024
- endTime?: Date;
1023
+ lifecycleExecutionId?: string | undefined;
1024
+ lifecyclePolicyArn?: string | undefined;
1025
+ resourcesImpactedSummary?:
1026
+ | LifecycleExecutionResourcesImpactedSummary
1027
+ | undefined;
1028
+ state?: LifecycleExecutionState | undefined;
1029
+ startTime?: Date | undefined;
1030
+ endTime?: Date | undefined;
1025
1031
  }
1026
1032
  export interface GetLifecycleExecutionResponse {
1027
- lifecycleExecution?: LifecycleExecution;
1033
+ lifecycleExecution?: LifecycleExecution | undefined;
1028
1034
  }
1029
1035
  export interface GetLifecyclePolicyRequest {
1030
1036
  lifecyclePolicyArn: string | undefined;
1031
1037
  }
1032
1038
  export interface LifecyclePolicy {
1033
- arn?: string;
1034
- name?: string;
1035
- description?: string;
1036
- status?: LifecyclePolicyStatus;
1037
- executionRole?: string;
1038
- resourceType?: LifecyclePolicyResourceType;
1039
- policyDetails?: LifecyclePolicyDetail[];
1040
- resourceSelection?: LifecyclePolicyResourceSelection;
1041
- dateCreated?: Date;
1042
- dateUpdated?: Date;
1043
- dateLastRun?: Date;
1044
- tags?: Record<string, string>;
1039
+ arn?: string | undefined;
1040
+ name?: string | undefined;
1041
+ description?: string | undefined;
1042
+ status?: LifecyclePolicyStatus | undefined;
1043
+ executionRole?: string | undefined;
1044
+ resourceType?: LifecyclePolicyResourceType | undefined;
1045
+ policyDetails?: LifecyclePolicyDetail[] | undefined;
1046
+ resourceSelection?: LifecyclePolicyResourceSelection | undefined;
1047
+ dateCreated?: Date | undefined;
1048
+ dateUpdated?: Date | undefined;
1049
+ dateLastRun?: Date | undefined;
1050
+ tags?: Record<string, string> | undefined;
1045
1051
  }
1046
1052
  export interface GetLifecyclePolicyResponse {
1047
- lifecyclePolicy?: LifecyclePolicy;
1053
+ lifecyclePolicy?: LifecyclePolicy | undefined;
1048
1054
  }
1049
1055
  export interface GetWorkflowRequest {
1050
1056
  workflowBuildVersionArn: string | undefined;
@@ -1052,8 +1058,8 @@ export interface GetWorkflowRequest {
1052
1058
  export interface WorkflowParameterDetail {
1053
1059
  name: string | undefined;
1054
1060
  type: string | undefined;
1055
- defaultValue?: string[];
1056
- description?: string;
1061
+ defaultValue?: string[] | undefined;
1062
+ description?: string | undefined;
1057
1063
  }
1058
1064
  export declare const WorkflowStatus: {
1059
1065
  readonly DEPRECATED: "DEPRECATED";
@@ -1061,26 +1067,26 @@ export declare const WorkflowStatus: {
1061
1067
  export type WorkflowStatus =
1062
1068
  (typeof WorkflowStatus)[keyof typeof WorkflowStatus];
1063
1069
  export interface WorkflowState {
1064
- status?: WorkflowStatus;
1065
- reason?: string;
1070
+ status?: WorkflowStatus | undefined;
1071
+ reason?: string | undefined;
1066
1072
  }
1067
1073
  export interface Workflow {
1068
- arn?: string;
1069
- name?: string;
1070
- version?: string;
1071
- description?: string;
1072
- changeDescription?: string;
1073
- type?: WorkflowType;
1074
- state?: WorkflowState;
1075
- owner?: string;
1076
- data?: string;
1077
- kmsKeyId?: string;
1078
- dateCreated?: string;
1079
- tags?: Record<string, string>;
1080
- parameters?: WorkflowParameterDetail[];
1074
+ arn?: string | undefined;
1075
+ name?: string | undefined;
1076
+ version?: string | undefined;
1077
+ description?: string | undefined;
1078
+ changeDescription?: string | undefined;
1079
+ type?: WorkflowType | undefined;
1080
+ state?: WorkflowState | undefined;
1081
+ owner?: string | undefined;
1082
+ data?: string | undefined;
1083
+ kmsKeyId?: string | undefined;
1084
+ dateCreated?: string | undefined;
1085
+ tags?: Record<string, string> | undefined;
1086
+ parameters?: WorkflowParameterDetail[] | undefined;
1081
1087
  }
1082
1088
  export interface GetWorkflowResponse {
1083
- workflow?: Workflow;
1089
+ workflow?: Workflow | undefined;
1084
1090
  }
1085
1091
  export interface GetWorkflowExecutionRequest {
1086
1092
  workflowExecutionId: string | undefined;
@@ -1098,20 +1104,20 @@ export declare const WorkflowExecutionStatus: {
1098
1104
  export type WorkflowExecutionStatus =
1099
1105
  (typeof WorkflowExecutionStatus)[keyof typeof WorkflowExecutionStatus];
1100
1106
  export interface GetWorkflowExecutionResponse {
1101
- requestId?: string;
1102
- workflowBuildVersionArn?: string;
1103
- workflowExecutionId?: string;
1104
- imageBuildVersionArn?: string;
1105
- type?: WorkflowType;
1106
- status?: WorkflowExecutionStatus;
1107
- message?: string;
1108
- totalStepCount?: number;
1109
- totalStepsSucceeded?: number;
1110
- totalStepsFailed?: number;
1111
- totalStepsSkipped?: number;
1112
- startTime?: string;
1113
- endTime?: string;
1114
- parallelGroup?: string;
1107
+ requestId?: string | undefined;
1108
+ workflowBuildVersionArn?: string | undefined;
1109
+ workflowExecutionId?: string | undefined;
1110
+ imageBuildVersionArn?: string | undefined;
1111
+ type?: WorkflowType | undefined;
1112
+ status?: WorkflowExecutionStatus | undefined;
1113
+ message?: string | undefined;
1114
+ totalStepCount?: number | undefined;
1115
+ totalStepsSucceeded?: number | undefined;
1116
+ totalStepsFailed?: number | undefined;
1117
+ totalStepsSkipped?: number | undefined;
1118
+ startTime?: string | undefined;
1119
+ endTime?: string | undefined;
1120
+ parallelGroup?: string | undefined;
1115
1121
  }
1116
1122
  export interface GetWorkflowStepExecutionRequest {
1117
1123
  stepExecutionId: string | undefined;
@@ -1135,61 +1141,61 @@ export declare const WorkflowStepExecutionStatus: {
1135
1141
  export type WorkflowStepExecutionStatus =
1136
1142
  (typeof WorkflowStepExecutionStatus)[keyof typeof WorkflowStepExecutionStatus];
1137
1143
  export interface GetWorkflowStepExecutionResponse {
1138
- requestId?: string;
1139
- stepExecutionId?: string;
1140
- workflowBuildVersionArn?: string;
1141
- workflowExecutionId?: string;
1142
- imageBuildVersionArn?: string;
1143
- name?: string;
1144
- description?: string;
1145
- action?: string;
1146
- status?: WorkflowStepExecutionStatus;
1147
- rollbackStatus?: WorkflowStepExecutionRollbackStatus;
1148
- message?: string;
1149
- inputs?: string;
1150
- outputs?: string;
1151
- startTime?: string;
1152
- endTime?: string;
1153
- onFailure?: string;
1154
- timeoutSeconds?: number;
1144
+ requestId?: string | undefined;
1145
+ stepExecutionId?: string | undefined;
1146
+ workflowBuildVersionArn?: string | undefined;
1147
+ workflowExecutionId?: string | undefined;
1148
+ imageBuildVersionArn?: string | undefined;
1149
+ name?: string | undefined;
1150
+ description?: string | undefined;
1151
+ action?: string | undefined;
1152
+ status?: WorkflowStepExecutionStatus | undefined;
1153
+ rollbackStatus?: WorkflowStepExecutionRollbackStatus | undefined;
1154
+ message?: string | undefined;
1155
+ inputs?: string | undefined;
1156
+ outputs?: string | undefined;
1157
+ startTime?: string | undefined;
1158
+ endTime?: string | undefined;
1159
+ onFailure?: string | undefined;
1160
+ timeoutSeconds?: number | undefined;
1155
1161
  }
1156
1162
  export interface ImageAggregation {
1157
- imageBuildVersionArn?: string;
1158
- severityCounts?: SeverityCounts;
1163
+ imageBuildVersionArn?: string | undefined;
1164
+ severityCounts?: SeverityCounts | undefined;
1159
1165
  }
1160
1166
  export interface ImportComponentRequest {
1161
1167
  name: string | undefined;
1162
1168
  semanticVersion: string | undefined;
1163
- description?: string;
1164
- changeDescription?: string;
1169
+ description?: string | undefined;
1170
+ changeDescription?: string | undefined;
1165
1171
  type: ComponentType | undefined;
1166
1172
  format: ComponentFormat | undefined;
1167
1173
  platform: Platform | undefined;
1168
- data?: string;
1169
- uri?: string;
1170
- kmsKeyId?: string;
1171
- tags?: Record<string, string>;
1172
- clientToken?: string;
1174
+ data?: string | undefined;
1175
+ uri?: string | undefined;
1176
+ kmsKeyId?: string | undefined;
1177
+ tags?: Record<string, string> | undefined;
1178
+ clientToken?: string | undefined;
1173
1179
  }
1174
1180
  export interface ImportComponentResponse {
1175
- requestId?: string;
1176
- clientToken?: string;
1177
- componentBuildVersionArn?: string;
1181
+ requestId?: string | undefined;
1182
+ clientToken?: string | undefined;
1183
+ componentBuildVersionArn?: string | undefined;
1178
1184
  }
1179
1185
  export interface ImportVmImageRequest {
1180
1186
  name: string | undefined;
1181
1187
  semanticVersion: string | undefined;
1182
- description?: string;
1188
+ description?: string | undefined;
1183
1189
  platform: Platform | undefined;
1184
- osVersion?: string;
1190
+ osVersion?: string | undefined;
1185
1191
  vmImportTaskId: string | undefined;
1186
- tags?: Record<string, string>;
1187
- clientToken?: string;
1192
+ tags?: Record<string, string> | undefined;
1193
+ clientToken?: string | undefined;
1188
1194
  }
1189
1195
  export interface ImportVmImageResponse {
1190
- requestId?: string;
1191
- imageArn?: string;
1192
- clientToken?: string;
1196
+ requestId?: string | undefined;
1197
+ imageArn?: string | undefined;
1198
+ clientToken?: string | undefined;
1193
1199
  }
1194
1200
  export declare class InvalidPaginationTokenException extends __BaseException {
1195
1201
  readonly name: "InvalidPaginationTokenException";
@@ -1203,13 +1209,13 @@ export declare class InvalidPaginationTokenException extends __BaseException {
1203
1209
  }
1204
1210
  export interface ListComponentBuildVersionsRequest {
1205
1211
  componentVersionArn: string | undefined;
1206
- maxResults?: number;
1207
- nextToken?: string;
1212
+ maxResults?: number | undefined;
1213
+ nextToken?: string | undefined;
1208
1214
  }
1209
1215
  export interface ListComponentBuildVersionsResponse {
1210
- requestId?: string;
1211
- componentSummaryList?: ComponentSummary[];
1212
- nextToken?: string;
1216
+ requestId?: string | undefined;
1217
+ componentSummaryList?: ComponentSummary[] | undefined;
1218
+ nextToken?: string | undefined;
1213
1219
  }
1214
1220
  export declare const Ownership: {
1215
1221
  readonly AMAZON: "Amazon";
@@ -1219,261 +1225,265 @@ export declare const Ownership: {
1219
1225
  };
1220
1226
  export type Ownership = (typeof Ownership)[keyof typeof Ownership];
1221
1227
  export interface ListComponentsRequest {
1222
- owner?: Ownership;
1223
- filters?: Filter[];
1224
- byName?: boolean;
1225
- maxResults?: number;
1226
- nextToken?: string;
1228
+ owner?: Ownership | undefined;
1229
+ filters?: Filter[] | undefined;
1230
+ byName?: boolean | undefined;
1231
+ maxResults?: number | undefined;
1232
+ nextToken?: string | undefined;
1227
1233
  }
1228
1234
  export interface ListComponentsResponse {
1229
- requestId?: string;
1230
- componentVersionList?: ComponentVersion[];
1231
- nextToken?: string;
1235
+ requestId?: string | undefined;
1236
+ componentVersionList?: ComponentVersion[] | undefined;
1237
+ nextToken?: string | undefined;
1232
1238
  }
1233
1239
  export interface ListContainerRecipesRequest {
1234
- owner?: Ownership;
1235
- filters?: Filter[];
1236
- maxResults?: number;
1237
- nextToken?: string;
1240
+ owner?: Ownership | undefined;
1241
+ filters?: Filter[] | undefined;
1242
+ maxResults?: number | undefined;
1243
+ nextToken?: string | undefined;
1238
1244
  }
1239
1245
  export interface ListContainerRecipesResponse {
1240
- requestId?: string;
1241
- containerRecipeSummaryList?: ContainerRecipeSummary[];
1242
- nextToken?: string;
1246
+ requestId?: string | undefined;
1247
+ containerRecipeSummaryList?: ContainerRecipeSummary[] | undefined;
1248
+ nextToken?: string | undefined;
1243
1249
  }
1244
1250
  export interface ListDistributionConfigurationsRequest {
1245
- filters?: Filter[];
1246
- maxResults?: number;
1247
- nextToken?: string;
1251
+ filters?: Filter[] | undefined;
1252
+ maxResults?: number | undefined;
1253
+ nextToken?: string | undefined;
1248
1254
  }
1249
1255
  export interface ListDistributionConfigurationsResponse {
1250
- requestId?: string;
1251
- distributionConfigurationSummaryList?: DistributionConfigurationSummary[];
1252
- nextToken?: string;
1256
+ requestId?: string | undefined;
1257
+ distributionConfigurationSummaryList?:
1258
+ | DistributionConfigurationSummary[]
1259
+ | undefined;
1260
+ nextToken?: string | undefined;
1253
1261
  }
1254
1262
  export interface ListImageBuildVersionsRequest {
1255
1263
  imageVersionArn: string | undefined;
1256
- filters?: Filter[];
1257
- maxResults?: number;
1258
- nextToken?: string;
1264
+ filters?: Filter[] | undefined;
1265
+ maxResults?: number | undefined;
1266
+ nextToken?: string | undefined;
1259
1267
  }
1260
1268
  export interface ImageSummary {
1261
- arn?: string;
1262
- name?: string;
1263
- type?: ImageType;
1264
- version?: string;
1265
- platform?: Platform;
1266
- osVersion?: string;
1267
- state?: ImageState;
1268
- owner?: string;
1269
- dateCreated?: string;
1270
- outputResources?: OutputResources;
1271
- tags?: Record<string, string>;
1272
- buildType?: BuildType;
1273
- imageSource?: ImageSource;
1274
- deprecationTime?: Date;
1275
- lifecycleExecutionId?: string;
1269
+ arn?: string | undefined;
1270
+ name?: string | undefined;
1271
+ type?: ImageType | undefined;
1272
+ version?: string | undefined;
1273
+ platform?: Platform | undefined;
1274
+ osVersion?: string | undefined;
1275
+ state?: ImageState | undefined;
1276
+ owner?: string | undefined;
1277
+ dateCreated?: string | undefined;
1278
+ outputResources?: OutputResources | undefined;
1279
+ tags?: Record<string, string> | undefined;
1280
+ buildType?: BuildType | undefined;
1281
+ imageSource?: ImageSource | undefined;
1282
+ deprecationTime?: Date | undefined;
1283
+ lifecycleExecutionId?: string | undefined;
1276
1284
  }
1277
1285
  export interface ListImageBuildVersionsResponse {
1278
- requestId?: string;
1279
- imageSummaryList?: ImageSummary[];
1280
- nextToken?: string;
1286
+ requestId?: string | undefined;
1287
+ imageSummaryList?: ImageSummary[] | undefined;
1288
+ nextToken?: string | undefined;
1281
1289
  }
1282
1290
  export interface ListImagePackagesRequest {
1283
1291
  imageBuildVersionArn: string | undefined;
1284
- maxResults?: number;
1285
- nextToken?: string;
1292
+ maxResults?: number | undefined;
1293
+ nextToken?: string | undefined;
1286
1294
  }
1287
1295
  export interface ImagePackage {
1288
- packageName?: string;
1289
- packageVersion?: string;
1296
+ packageName?: string | undefined;
1297
+ packageVersion?: string | undefined;
1290
1298
  }
1291
1299
  export interface ListImagePackagesResponse {
1292
- requestId?: string;
1293
- imagePackageList?: ImagePackage[];
1294
- nextToken?: string;
1300
+ requestId?: string | undefined;
1301
+ imagePackageList?: ImagePackage[] | undefined;
1302
+ nextToken?: string | undefined;
1295
1303
  }
1296
1304
  export interface ListImagePipelineImagesRequest {
1297
1305
  imagePipelineArn: string | undefined;
1298
- filters?: Filter[];
1299
- maxResults?: number;
1300
- nextToken?: string;
1306
+ filters?: Filter[] | undefined;
1307
+ maxResults?: number | undefined;
1308
+ nextToken?: string | undefined;
1301
1309
  }
1302
1310
  export interface ListImagePipelineImagesResponse {
1303
- requestId?: string;
1304
- imageSummaryList?: ImageSummary[];
1305
- nextToken?: string;
1311
+ requestId?: string | undefined;
1312
+ imageSummaryList?: ImageSummary[] | undefined;
1313
+ nextToken?: string | undefined;
1306
1314
  }
1307
1315
  export interface ListImagePipelinesRequest {
1308
- filters?: Filter[];
1309
- maxResults?: number;
1310
- nextToken?: string;
1316
+ filters?: Filter[] | undefined;
1317
+ maxResults?: number | undefined;
1318
+ nextToken?: string | undefined;
1311
1319
  }
1312
1320
  export interface ListImagePipelinesResponse {
1313
- requestId?: string;
1314
- imagePipelineList?: ImagePipeline[];
1315
- nextToken?: string;
1321
+ requestId?: string | undefined;
1322
+ imagePipelineList?: ImagePipeline[] | undefined;
1323
+ nextToken?: string | undefined;
1316
1324
  }
1317
1325
  export interface ListImageRecipesRequest {
1318
- owner?: Ownership;
1319
- filters?: Filter[];
1320
- maxResults?: number;
1321
- nextToken?: string;
1326
+ owner?: Ownership | undefined;
1327
+ filters?: Filter[] | undefined;
1328
+ maxResults?: number | undefined;
1329
+ nextToken?: string | undefined;
1322
1330
  }
1323
1331
  export interface ImageRecipeSummary {
1324
- arn?: string;
1325
- name?: string;
1326
- platform?: Platform;
1327
- owner?: string;
1328
- parentImage?: string;
1329
- dateCreated?: string;
1330
- tags?: Record<string, string>;
1332
+ arn?: string | undefined;
1333
+ name?: string | undefined;
1334
+ platform?: Platform | undefined;
1335
+ owner?: string | undefined;
1336
+ parentImage?: string | undefined;
1337
+ dateCreated?: string | undefined;
1338
+ tags?: Record<string, string> | undefined;
1331
1339
  }
1332
1340
  export interface ListImageRecipesResponse {
1333
- requestId?: string;
1334
- imageRecipeSummaryList?: ImageRecipeSummary[];
1335
- nextToken?: string;
1341
+ requestId?: string | undefined;
1342
+ imageRecipeSummaryList?: ImageRecipeSummary[] | undefined;
1343
+ nextToken?: string | undefined;
1336
1344
  }
1337
1345
  export interface ListImagesRequest {
1338
- owner?: Ownership;
1339
- filters?: Filter[];
1340
- byName?: boolean;
1341
- maxResults?: number;
1342
- nextToken?: string;
1343
- includeDeprecated?: boolean;
1346
+ owner?: Ownership | undefined;
1347
+ filters?: Filter[] | undefined;
1348
+ byName?: boolean | undefined;
1349
+ maxResults?: number | undefined;
1350
+ nextToken?: string | undefined;
1351
+ includeDeprecated?: boolean | undefined;
1344
1352
  }
1345
1353
  export interface ImageVersion {
1346
- arn?: string;
1347
- name?: string;
1348
- type?: ImageType;
1349
- version?: string;
1350
- platform?: Platform;
1351
- osVersion?: string;
1352
- owner?: string;
1353
- dateCreated?: string;
1354
- buildType?: BuildType;
1355
- imageSource?: ImageSource;
1354
+ arn?: string | undefined;
1355
+ name?: string | undefined;
1356
+ type?: ImageType | undefined;
1357
+ version?: string | undefined;
1358
+ platform?: Platform | undefined;
1359
+ osVersion?: string | undefined;
1360
+ owner?: string | undefined;
1361
+ dateCreated?: string | undefined;
1362
+ buildType?: BuildType | undefined;
1363
+ imageSource?: ImageSource | undefined;
1356
1364
  }
1357
1365
  export interface ListImagesResponse {
1358
- requestId?: string;
1359
- imageVersionList?: ImageVersion[];
1360
- nextToken?: string;
1366
+ requestId?: string | undefined;
1367
+ imageVersionList?: ImageVersion[] | undefined;
1368
+ nextToken?: string | undefined;
1361
1369
  }
1362
1370
  export interface ListImageScanFindingAggregationsRequest {
1363
- filter?: Filter;
1364
- nextToken?: string;
1371
+ filter?: Filter | undefined;
1372
+ nextToken?: string | undefined;
1365
1373
  }
1366
1374
  export interface ImagePipelineAggregation {
1367
- imagePipelineArn?: string;
1368
- severityCounts?: SeverityCounts;
1375
+ imagePipelineArn?: string | undefined;
1376
+ severityCounts?: SeverityCounts | undefined;
1369
1377
  }
1370
1378
  export interface VulnerabilityIdAggregation {
1371
- vulnerabilityId?: string;
1372
- severityCounts?: SeverityCounts;
1379
+ vulnerabilityId?: string | undefined;
1380
+ severityCounts?: SeverityCounts | undefined;
1373
1381
  }
1374
1382
  export interface ImageScanFindingAggregation {
1375
- accountAggregation?: AccountAggregation;
1376
- imageAggregation?: ImageAggregation;
1377
- imagePipelineAggregation?: ImagePipelineAggregation;
1378
- vulnerabilityIdAggregation?: VulnerabilityIdAggregation;
1383
+ accountAggregation?: AccountAggregation | undefined;
1384
+ imageAggregation?: ImageAggregation | undefined;
1385
+ imagePipelineAggregation?: ImagePipelineAggregation | undefined;
1386
+ vulnerabilityIdAggregation?: VulnerabilityIdAggregation | undefined;
1379
1387
  }
1380
1388
  export interface ListImageScanFindingAggregationsResponse {
1381
- requestId?: string;
1382
- aggregationType?: string;
1383
- responses?: ImageScanFindingAggregation[];
1384
- nextToken?: string;
1389
+ requestId?: string | undefined;
1390
+ aggregationType?: string | undefined;
1391
+ responses?: ImageScanFindingAggregation[] | undefined;
1392
+ nextToken?: string | undefined;
1385
1393
  }
1386
1394
  export interface ImageScanFindingsFilter {
1387
- name?: string;
1388
- values?: string[];
1395
+ name?: string | undefined;
1396
+ values?: string[] | undefined;
1389
1397
  }
1390
1398
  export interface ListImageScanFindingsRequest {
1391
- filters?: ImageScanFindingsFilter[];
1392
- maxResults?: number;
1393
- nextToken?: string;
1399
+ filters?: ImageScanFindingsFilter[] | undefined;
1400
+ maxResults?: number | undefined;
1401
+ nextToken?: string | undefined;
1394
1402
  }
1395
1403
  export interface InspectorScoreDetails {
1396
- adjustedCvss?: CvssScoreDetails;
1404
+ adjustedCvss?: CvssScoreDetails | undefined;
1397
1405
  }
1398
1406
  export interface VulnerablePackage {
1399
- name?: string;
1400
- version?: string;
1401
- sourceLayerHash?: string;
1402
- epoch?: number;
1403
- release?: string;
1404
- arch?: string;
1405
- packageManager?: string;
1406
- filePath?: string;
1407
- fixedInVersion?: string;
1408
- remediation?: string;
1407
+ name?: string | undefined;
1408
+ version?: string | undefined;
1409
+ sourceLayerHash?: string | undefined;
1410
+ epoch?: number | undefined;
1411
+ release?: string | undefined;
1412
+ arch?: string | undefined;
1413
+ packageManager?: string | undefined;
1414
+ filePath?: string | undefined;
1415
+ fixedInVersion?: string | undefined;
1416
+ remediation?: string | undefined;
1409
1417
  }
1410
1418
  export interface PackageVulnerabilityDetails {
1411
1419
  vulnerabilityId: string | undefined;
1412
- vulnerablePackages?: VulnerablePackage[];
1413
- source?: string;
1414
- cvss?: CvssScore[];
1415
- relatedVulnerabilities?: string[];
1416
- sourceUrl?: string;
1417
- vendorSeverity?: string;
1418
- vendorCreatedAt?: Date;
1419
- vendorUpdatedAt?: Date;
1420
- referenceUrls?: string[];
1420
+ vulnerablePackages?: VulnerablePackage[] | undefined;
1421
+ source?: string | undefined;
1422
+ cvss?: CvssScore[] | undefined;
1423
+ relatedVulnerabilities?: string[] | undefined;
1424
+ sourceUrl?: string | undefined;
1425
+ vendorSeverity?: string | undefined;
1426
+ vendorCreatedAt?: Date | undefined;
1427
+ vendorUpdatedAt?: Date | undefined;
1428
+ referenceUrls?: string[] | undefined;
1421
1429
  }
1422
1430
  export interface RemediationRecommendation {
1423
- text?: string;
1424
- url?: string;
1431
+ text?: string | undefined;
1432
+ url?: string | undefined;
1425
1433
  }
1426
1434
  export interface Remediation {
1427
- recommendation?: RemediationRecommendation;
1435
+ recommendation?: RemediationRecommendation | undefined;
1428
1436
  }
1429
1437
  export interface ImageScanFinding {
1430
- awsAccountId?: string;
1431
- imageBuildVersionArn?: string;
1432
- imagePipelineArn?: string;
1433
- type?: string;
1434
- description?: string;
1435
- title?: string;
1436
- remediation?: Remediation;
1437
- severity?: string;
1438
- firstObservedAt?: Date;
1439
- updatedAt?: Date;
1440
- inspectorScore?: number;
1441
- inspectorScoreDetails?: InspectorScoreDetails;
1442
- packageVulnerabilityDetails?: PackageVulnerabilityDetails;
1443
- fixAvailable?: string;
1438
+ awsAccountId?: string | undefined;
1439
+ imageBuildVersionArn?: string | undefined;
1440
+ imagePipelineArn?: string | undefined;
1441
+ type?: string | undefined;
1442
+ description?: string | undefined;
1443
+ title?: string | undefined;
1444
+ remediation?: Remediation | undefined;
1445
+ severity?: string | undefined;
1446
+ firstObservedAt?: Date | undefined;
1447
+ updatedAt?: Date | undefined;
1448
+ inspectorScore?: number | undefined;
1449
+ inspectorScoreDetails?: InspectorScoreDetails | undefined;
1450
+ packageVulnerabilityDetails?: PackageVulnerabilityDetails | undefined;
1451
+ fixAvailable?: string | undefined;
1444
1452
  }
1445
1453
  export interface ListImageScanFindingsResponse {
1446
- requestId?: string;
1447
- findings?: ImageScanFinding[];
1448
- nextToken?: string;
1454
+ requestId?: string | undefined;
1455
+ findings?: ImageScanFinding[] | undefined;
1456
+ nextToken?: string | undefined;
1449
1457
  }
1450
1458
  export interface ListInfrastructureConfigurationsRequest {
1451
- filters?: Filter[];
1452
- maxResults?: number;
1453
- nextToken?: string;
1459
+ filters?: Filter[] | undefined;
1460
+ maxResults?: number | undefined;
1461
+ nextToken?: string | undefined;
1454
1462
  }
1455
1463
  export interface InfrastructureConfigurationSummary {
1456
- arn?: string;
1457
- name?: string;
1458
- description?: string;
1459
- dateCreated?: string;
1460
- dateUpdated?: string;
1461
- resourceTags?: Record<string, string>;
1462
- tags?: Record<string, string>;
1463
- instanceTypes?: string[];
1464
- instanceProfileName?: string;
1465
- placement?: Placement;
1464
+ arn?: string | undefined;
1465
+ name?: string | undefined;
1466
+ description?: string | undefined;
1467
+ dateCreated?: string | undefined;
1468
+ dateUpdated?: string | undefined;
1469
+ resourceTags?: Record<string, string> | undefined;
1470
+ tags?: Record<string, string> | undefined;
1471
+ instanceTypes?: string[] | undefined;
1472
+ instanceProfileName?: string | undefined;
1473
+ placement?: Placement | undefined;
1466
1474
  }
1467
1475
  export interface ListInfrastructureConfigurationsResponse {
1468
- requestId?: string;
1469
- infrastructureConfigurationSummaryList?: InfrastructureConfigurationSummary[];
1470
- nextToken?: string;
1476
+ requestId?: string | undefined;
1477
+ infrastructureConfigurationSummaryList?:
1478
+ | InfrastructureConfigurationSummary[]
1479
+ | undefined;
1480
+ nextToken?: string | undefined;
1471
1481
  }
1472
1482
  export interface ListLifecycleExecutionResourcesRequest {
1473
1483
  lifecycleExecutionId: string | undefined;
1474
- parentResourceId?: string;
1475
- maxResults?: number;
1476
- nextToken?: string;
1484
+ parentResourceId?: string | undefined;
1485
+ maxResults?: number | undefined;
1486
+ nextToken?: string | undefined;
1477
1487
  }
1478
1488
  export declare const LifecycleExecutionResourceActionName: {
1479
1489
  readonly AVAILABLE: "AVAILABLE";
@@ -1484,8 +1494,8 @@ export declare const LifecycleExecutionResourceActionName: {
1484
1494
  export type LifecycleExecutionResourceActionName =
1485
1495
  (typeof LifecycleExecutionResourceActionName)[keyof typeof LifecycleExecutionResourceActionName];
1486
1496
  export interface LifecycleExecutionResourceAction {
1487
- name?: LifecycleExecutionResourceActionName;
1488
- reason?: string;
1497
+ name?: LifecycleExecutionResourceActionName | undefined;
1498
+ reason?: string | undefined;
1489
1499
  }
1490
1500
  export declare const LifecycleExecutionResourceStatus: {
1491
1501
  readonly FAILED: "FAILED";
@@ -1496,59 +1506,59 @@ export declare const LifecycleExecutionResourceStatus: {
1496
1506
  export type LifecycleExecutionResourceStatus =
1497
1507
  (typeof LifecycleExecutionResourceStatus)[keyof typeof LifecycleExecutionResourceStatus];
1498
1508
  export interface LifecycleExecutionResourceState {
1499
- status?: LifecycleExecutionResourceStatus;
1500
- reason?: string;
1509
+ status?: LifecycleExecutionResourceStatus | undefined;
1510
+ reason?: string | undefined;
1501
1511
  }
1502
1512
  export interface LifecycleExecutionSnapshotResource {
1503
- snapshotId?: string;
1504
- state?: LifecycleExecutionResourceState;
1513
+ snapshotId?: string | undefined;
1514
+ state?: LifecycleExecutionResourceState | undefined;
1505
1515
  }
1506
1516
  export interface LifecycleExecutionResource {
1507
- accountId?: string;
1508
- resourceId?: string;
1509
- state?: LifecycleExecutionResourceState;
1510
- action?: LifecycleExecutionResourceAction;
1511
- region?: string;
1512
- snapshots?: LifecycleExecutionSnapshotResource[];
1513
- imageUris?: string[];
1514
- startTime?: Date;
1515
- endTime?: Date;
1517
+ accountId?: string | undefined;
1518
+ resourceId?: string | undefined;
1519
+ state?: LifecycleExecutionResourceState | undefined;
1520
+ action?: LifecycleExecutionResourceAction | undefined;
1521
+ region?: string | undefined;
1522
+ snapshots?: LifecycleExecutionSnapshotResource[] | undefined;
1523
+ imageUris?: string[] | undefined;
1524
+ startTime?: Date | undefined;
1525
+ endTime?: Date | undefined;
1516
1526
  }
1517
1527
  export interface ListLifecycleExecutionResourcesResponse {
1518
- lifecycleExecutionId?: string;
1519
- lifecycleExecutionState?: LifecycleExecutionState;
1520
- resources?: LifecycleExecutionResource[];
1521
- nextToken?: string;
1528
+ lifecycleExecutionId?: string | undefined;
1529
+ lifecycleExecutionState?: LifecycleExecutionState | undefined;
1530
+ resources?: LifecycleExecutionResource[] | undefined;
1531
+ nextToken?: string | undefined;
1522
1532
  }
1523
1533
  export interface ListLifecycleExecutionsRequest {
1524
- maxResults?: number;
1525
- nextToken?: string;
1534
+ maxResults?: number | undefined;
1535
+ nextToken?: string | undefined;
1526
1536
  resourceArn: string | undefined;
1527
1537
  }
1528
1538
  export interface ListLifecycleExecutionsResponse {
1529
- lifecycleExecutions?: LifecycleExecution[];
1530
- nextToken?: string;
1539
+ lifecycleExecutions?: LifecycleExecution[] | undefined;
1540
+ nextToken?: string | undefined;
1531
1541
  }
1532
1542
  export interface ListLifecyclePoliciesRequest {
1533
- filters?: Filter[];
1534
- maxResults?: number;
1535
- nextToken?: string;
1543
+ filters?: Filter[] | undefined;
1544
+ maxResults?: number | undefined;
1545
+ nextToken?: string | undefined;
1536
1546
  }
1537
1547
  export interface LifecyclePolicySummary {
1538
- arn?: string;
1539
- name?: string;
1540
- description?: string;
1541
- status?: LifecyclePolicyStatus;
1542
- executionRole?: string;
1543
- resourceType?: LifecyclePolicyResourceType;
1544
- dateCreated?: Date;
1545
- dateUpdated?: Date;
1546
- dateLastRun?: Date;
1547
- tags?: Record<string, string>;
1548
+ arn?: string | undefined;
1549
+ name?: string | undefined;
1550
+ description?: string | undefined;
1551
+ status?: LifecyclePolicyStatus | undefined;
1552
+ executionRole?: string | undefined;
1553
+ resourceType?: LifecyclePolicyResourceType | undefined;
1554
+ dateCreated?: Date | undefined;
1555
+ dateUpdated?: Date | undefined;
1556
+ dateLastRun?: Date | undefined;
1557
+ tags?: Record<string, string> | undefined;
1548
1558
  }
1549
1559
  export interface ListLifecyclePoliciesResponse {
1550
- lifecyclePolicySummaryList?: LifecyclePolicySummary[];
1551
- nextToken?: string;
1560
+ lifecyclePolicySummaryList?: LifecyclePolicySummary[] | undefined;
1561
+ nextToken?: string | undefined;
1552
1562
  }
1553
1563
  export declare class InvalidParameterException extends __BaseException {
1554
1564
  readonly name: "InvalidParameterException";
@@ -1561,118 +1571,118 @@ export interface ListTagsForResourceRequest {
1561
1571
  resourceArn: string | undefined;
1562
1572
  }
1563
1573
  export interface ListTagsForResourceResponse {
1564
- tags?: Record<string, string>;
1574
+ tags?: Record<string, string> | undefined;
1565
1575
  }
1566
1576
  export interface ListWaitingWorkflowStepsRequest {
1567
- maxResults?: number;
1568
- nextToken?: string;
1577
+ maxResults?: number | undefined;
1578
+ nextToken?: string | undefined;
1569
1579
  }
1570
1580
  export interface WorkflowStepExecution {
1571
- stepExecutionId?: string;
1572
- imageBuildVersionArn?: string;
1573
- workflowExecutionId?: string;
1574
- workflowBuildVersionArn?: string;
1575
- name?: string;
1576
- action?: string;
1577
- startTime?: string;
1581
+ stepExecutionId?: string | undefined;
1582
+ imageBuildVersionArn?: string | undefined;
1583
+ workflowExecutionId?: string | undefined;
1584
+ workflowBuildVersionArn?: string | undefined;
1585
+ name?: string | undefined;
1586
+ action?: string | undefined;
1587
+ startTime?: string | undefined;
1578
1588
  }
1579
1589
  export interface ListWaitingWorkflowStepsResponse {
1580
- steps?: WorkflowStepExecution[];
1581
- nextToken?: string;
1590
+ steps?: WorkflowStepExecution[] | undefined;
1591
+ nextToken?: string | undefined;
1582
1592
  }
1583
1593
  export interface ListWorkflowBuildVersionsRequest {
1584
1594
  workflowVersionArn: string | undefined;
1585
- maxResults?: number;
1586
- nextToken?: string;
1595
+ maxResults?: number | undefined;
1596
+ nextToken?: string | undefined;
1587
1597
  }
1588
1598
  export interface WorkflowSummary {
1589
- arn?: string;
1590
- name?: string;
1591
- version?: string;
1592
- description?: string;
1593
- changeDescription?: string;
1594
- type?: WorkflowType;
1595
- owner?: string;
1596
- state?: WorkflowState;
1597
- dateCreated?: string;
1598
- tags?: Record<string, string>;
1599
+ arn?: string | undefined;
1600
+ name?: string | undefined;
1601
+ version?: string | undefined;
1602
+ description?: string | undefined;
1603
+ changeDescription?: string | undefined;
1604
+ type?: WorkflowType | undefined;
1605
+ owner?: string | undefined;
1606
+ state?: WorkflowState | undefined;
1607
+ dateCreated?: string | undefined;
1608
+ tags?: Record<string, string> | undefined;
1599
1609
  }
1600
1610
  export interface ListWorkflowBuildVersionsResponse {
1601
- workflowSummaryList?: WorkflowSummary[];
1602
- nextToken?: string;
1611
+ workflowSummaryList?: WorkflowSummary[] | undefined;
1612
+ nextToken?: string | undefined;
1603
1613
  }
1604
1614
  export interface ListWorkflowExecutionsRequest {
1605
- maxResults?: number;
1606
- nextToken?: string;
1615
+ maxResults?: number | undefined;
1616
+ nextToken?: string | undefined;
1607
1617
  imageBuildVersionArn: string | undefined;
1608
1618
  }
1609
1619
  export interface WorkflowExecutionMetadata {
1610
- workflowBuildVersionArn?: string;
1611
- workflowExecutionId?: string;
1612
- type?: WorkflowType;
1613
- status?: WorkflowExecutionStatus;
1614
- message?: string;
1615
- totalStepCount?: number;
1616
- totalStepsSucceeded?: number;
1617
- totalStepsFailed?: number;
1618
- totalStepsSkipped?: number;
1619
- startTime?: string;
1620
- endTime?: string;
1621
- parallelGroup?: string;
1620
+ workflowBuildVersionArn?: string | undefined;
1621
+ workflowExecutionId?: string | undefined;
1622
+ type?: WorkflowType | undefined;
1623
+ status?: WorkflowExecutionStatus | undefined;
1624
+ message?: string | undefined;
1625
+ totalStepCount?: number | undefined;
1626
+ totalStepsSucceeded?: number | undefined;
1627
+ totalStepsFailed?: number | undefined;
1628
+ totalStepsSkipped?: number | undefined;
1629
+ startTime?: string | undefined;
1630
+ endTime?: string | undefined;
1631
+ parallelGroup?: string | undefined;
1622
1632
  }
1623
1633
  export interface ListWorkflowExecutionsResponse {
1624
- requestId?: string;
1625
- workflowExecutions?: WorkflowExecutionMetadata[];
1626
- imageBuildVersionArn?: string;
1627
- message?: string;
1628
- nextToken?: string;
1634
+ requestId?: string | undefined;
1635
+ workflowExecutions?: WorkflowExecutionMetadata[] | undefined;
1636
+ imageBuildVersionArn?: string | undefined;
1637
+ message?: string | undefined;
1638
+ nextToken?: string | undefined;
1629
1639
  }
1630
1640
  export interface ListWorkflowsRequest {
1631
- owner?: Ownership;
1632
- filters?: Filter[];
1633
- byName?: boolean;
1634
- maxResults?: number;
1635
- nextToken?: string;
1641
+ owner?: Ownership | undefined;
1642
+ filters?: Filter[] | undefined;
1643
+ byName?: boolean | undefined;
1644
+ maxResults?: number | undefined;
1645
+ nextToken?: string | undefined;
1636
1646
  }
1637
1647
  export interface WorkflowVersion {
1638
- arn?: string;
1639
- name?: string;
1640
- version?: string;
1641
- description?: string;
1642
- type?: WorkflowType;
1643
- owner?: string;
1644
- dateCreated?: string;
1648
+ arn?: string | undefined;
1649
+ name?: string | undefined;
1650
+ version?: string | undefined;
1651
+ description?: string | undefined;
1652
+ type?: WorkflowType | undefined;
1653
+ owner?: string | undefined;
1654
+ dateCreated?: string | undefined;
1645
1655
  }
1646
1656
  export interface ListWorkflowsResponse {
1647
- workflowVersionList?: WorkflowVersion[];
1648
- nextToken?: string;
1657
+ workflowVersionList?: WorkflowVersion[] | undefined;
1658
+ nextToken?: string | undefined;
1649
1659
  }
1650
1660
  export interface ListWorkflowStepExecutionsRequest {
1651
- maxResults?: number;
1652
- nextToken?: string;
1661
+ maxResults?: number | undefined;
1662
+ nextToken?: string | undefined;
1653
1663
  workflowExecutionId: string | undefined;
1654
1664
  }
1655
1665
  export interface WorkflowStepMetadata {
1656
- stepExecutionId?: string;
1657
- name?: string;
1658
- description?: string;
1659
- action?: string;
1660
- status?: WorkflowStepExecutionStatus;
1661
- rollbackStatus?: WorkflowStepExecutionRollbackStatus;
1662
- message?: string;
1663
- inputs?: string;
1664
- outputs?: string;
1665
- startTime?: string;
1666
- endTime?: string;
1666
+ stepExecutionId?: string | undefined;
1667
+ name?: string | undefined;
1668
+ description?: string | undefined;
1669
+ action?: string | undefined;
1670
+ status?: WorkflowStepExecutionStatus | undefined;
1671
+ rollbackStatus?: WorkflowStepExecutionRollbackStatus | undefined;
1672
+ message?: string | undefined;
1673
+ inputs?: string | undefined;
1674
+ outputs?: string | undefined;
1675
+ startTime?: string | undefined;
1676
+ endTime?: string | undefined;
1667
1677
  }
1668
1678
  export interface ListWorkflowStepExecutionsResponse {
1669
- requestId?: string;
1670
- steps?: WorkflowStepMetadata[];
1671
- workflowBuildVersionArn?: string;
1672
- workflowExecutionId?: string;
1673
- imageBuildVersionArn?: string;
1674
- message?: string;
1675
- nextToken?: string;
1679
+ requestId?: string | undefined;
1680
+ steps?: WorkflowStepMetadata[] | undefined;
1681
+ workflowBuildVersionArn?: string | undefined;
1682
+ workflowExecutionId?: string | undefined;
1683
+ imageBuildVersionArn?: string | undefined;
1684
+ message?: string | undefined;
1685
+ nextToken?: string | undefined;
1676
1686
  }
1677
1687
  export declare class InvalidParameterValueException extends __BaseException {
1678
1688
  readonly name: "InvalidParameterValueException";
@@ -1686,32 +1696,32 @@ export interface PutComponentPolicyRequest {
1686
1696
  policy: string | undefined;
1687
1697
  }
1688
1698
  export interface PutComponentPolicyResponse {
1689
- requestId?: string;
1690
- componentArn?: string;
1699
+ requestId?: string | undefined;
1700
+ componentArn?: string | undefined;
1691
1701
  }
1692
1702
  export interface PutContainerRecipePolicyRequest {
1693
1703
  containerRecipeArn: string | undefined;
1694
1704
  policy: string | undefined;
1695
1705
  }
1696
1706
  export interface PutContainerRecipePolicyResponse {
1697
- requestId?: string;
1698
- containerRecipeArn?: string;
1707
+ requestId?: string | undefined;
1708
+ containerRecipeArn?: string | undefined;
1699
1709
  }
1700
1710
  export interface PutImagePolicyRequest {
1701
1711
  imageArn: string | undefined;
1702
1712
  policy: string | undefined;
1703
1713
  }
1704
1714
  export interface PutImagePolicyResponse {
1705
- requestId?: string;
1706
- imageArn?: string;
1715
+ requestId?: string | undefined;
1716
+ imageArn?: string | undefined;
1707
1717
  }
1708
1718
  export interface PutImageRecipePolicyRequest {
1709
1719
  imageRecipeArn: string | undefined;
1710
1720
  policy: string | undefined;
1711
1721
  }
1712
1722
  export interface PutImageRecipePolicyResponse {
1713
- requestId?: string;
1714
- imageRecipeArn?: string;
1723
+ requestId?: string | undefined;
1724
+ imageRecipeArn?: string | undefined;
1715
1725
  }
1716
1726
  export declare const WorkflowStepActionType: {
1717
1727
  readonly RESUME: "RESUME";
@@ -1723,30 +1733,30 @@ export interface SendWorkflowStepActionRequest {
1723
1733
  stepExecutionId: string | undefined;
1724
1734
  imageBuildVersionArn: string | undefined;
1725
1735
  action: WorkflowStepActionType | undefined;
1726
- reason?: string;
1727
- clientToken?: string;
1736
+ reason?: string | undefined;
1737
+ clientToken?: string | undefined;
1728
1738
  }
1729
1739
  export interface SendWorkflowStepActionResponse {
1730
- stepExecutionId?: string;
1731
- imageBuildVersionArn?: string;
1732
- clientToken?: string;
1740
+ stepExecutionId?: string | undefined;
1741
+ imageBuildVersionArn?: string | undefined;
1742
+ clientToken?: string | undefined;
1733
1743
  }
1734
1744
  export interface StartImagePipelineExecutionRequest {
1735
1745
  imagePipelineArn: string | undefined;
1736
- clientToken?: string;
1746
+ clientToken?: string | undefined;
1737
1747
  }
1738
1748
  export interface StartImagePipelineExecutionResponse {
1739
- requestId?: string;
1740
- clientToken?: string;
1741
- imageBuildVersionArn?: string;
1749
+ requestId?: string | undefined;
1750
+ clientToken?: string | undefined;
1751
+ imageBuildVersionArn?: string | undefined;
1742
1752
  }
1743
1753
  export interface ResourceStateUpdateExclusionRules {
1744
- amis?: LifecyclePolicyDetailExclusionRulesAmis;
1754
+ amis?: LifecyclePolicyDetailExclusionRulesAmis | undefined;
1745
1755
  }
1746
1756
  export interface ResourceStateUpdateIncludeResources {
1747
- amis?: boolean;
1748
- snapshots?: boolean;
1749
- containers?: boolean;
1757
+ amis?: boolean | undefined;
1758
+ snapshots?: boolean | undefined;
1759
+ containers?: boolean | undefined;
1750
1760
  }
1751
1761
  export declare const ResourceStatus: {
1752
1762
  readonly AVAILABLE: "AVAILABLE";
@@ -1757,20 +1767,20 @@ export declare const ResourceStatus: {
1757
1767
  export type ResourceStatus =
1758
1768
  (typeof ResourceStatus)[keyof typeof ResourceStatus];
1759
1769
  export interface ResourceState {
1760
- status?: ResourceStatus;
1770
+ status?: ResourceStatus | undefined;
1761
1771
  }
1762
1772
  export interface StartResourceStateUpdateRequest {
1763
1773
  resourceArn: string | undefined;
1764
1774
  state: ResourceState | undefined;
1765
- executionRole?: string;
1766
- includeResources?: ResourceStateUpdateIncludeResources;
1767
- exclusionRules?: ResourceStateUpdateExclusionRules;
1768
- updateAt?: Date;
1769
- clientToken?: string;
1775
+ executionRole?: string | undefined;
1776
+ includeResources?: ResourceStateUpdateIncludeResources | undefined;
1777
+ exclusionRules?: ResourceStateUpdateExclusionRules | undefined;
1778
+ updateAt?: Date | undefined;
1779
+ clientToken?: string | undefined;
1770
1780
  }
1771
1781
  export interface StartResourceStateUpdateResponse {
1772
- lifecycleExecutionId?: string;
1773
- resourceArn?: string;
1782
+ lifecycleExecutionId?: string | undefined;
1783
+ resourceArn?: string | undefined;
1774
1784
  }
1775
1785
  export interface TagResourceRequest {
1776
1786
  resourceArn: string | undefined;
@@ -1784,67 +1794,67 @@ export interface UntagResourceRequest {
1784
1794
  export interface UntagResourceResponse {}
1785
1795
  export interface UpdateDistributionConfigurationRequest {
1786
1796
  distributionConfigurationArn: string | undefined;
1787
- description?: string;
1797
+ description?: string | undefined;
1788
1798
  distributions: Distribution[] | undefined;
1789
- clientToken?: string;
1799
+ clientToken?: string | undefined;
1790
1800
  }
1791
1801
  export interface UpdateDistributionConfigurationResponse {
1792
- requestId?: string;
1793
- clientToken?: string;
1794
- distributionConfigurationArn?: string;
1802
+ requestId?: string | undefined;
1803
+ clientToken?: string | undefined;
1804
+ distributionConfigurationArn?: string | undefined;
1795
1805
  }
1796
1806
  export interface UpdateImagePipelineRequest {
1797
1807
  imagePipelineArn: string | undefined;
1798
- description?: string;
1799
- imageRecipeArn?: string;
1800
- containerRecipeArn?: string;
1808
+ description?: string | undefined;
1809
+ imageRecipeArn?: string | undefined;
1810
+ containerRecipeArn?: string | undefined;
1801
1811
  infrastructureConfigurationArn: string | undefined;
1802
- distributionConfigurationArn?: string;
1803
- imageTestsConfiguration?: ImageTestsConfiguration;
1804
- enhancedImageMetadataEnabled?: boolean;
1805
- schedule?: Schedule;
1806
- status?: PipelineStatus;
1807
- clientToken?: string;
1808
- imageScanningConfiguration?: ImageScanningConfiguration;
1809
- workflows?: WorkflowConfiguration[];
1810
- executionRole?: string;
1812
+ distributionConfigurationArn?: string | undefined;
1813
+ imageTestsConfiguration?: ImageTestsConfiguration | undefined;
1814
+ enhancedImageMetadataEnabled?: boolean | undefined;
1815
+ schedule?: Schedule | undefined;
1816
+ status?: PipelineStatus | undefined;
1817
+ clientToken?: string | undefined;
1818
+ imageScanningConfiguration?: ImageScanningConfiguration | undefined;
1819
+ workflows?: WorkflowConfiguration[] | undefined;
1820
+ executionRole?: string | undefined;
1811
1821
  }
1812
1822
  export interface UpdateImagePipelineResponse {
1813
- requestId?: string;
1814
- clientToken?: string;
1815
- imagePipelineArn?: string;
1823
+ requestId?: string | undefined;
1824
+ clientToken?: string | undefined;
1825
+ imagePipelineArn?: string | undefined;
1816
1826
  }
1817
1827
  export interface UpdateInfrastructureConfigurationRequest {
1818
1828
  infrastructureConfigurationArn: string | undefined;
1819
- description?: string;
1820
- instanceTypes?: string[];
1829
+ description?: string | undefined;
1830
+ instanceTypes?: string[] | undefined;
1821
1831
  instanceProfileName: string | undefined;
1822
- securityGroupIds?: string[];
1823
- subnetId?: string;
1824
- logging?: Logging;
1825
- keyPair?: string;
1826
- terminateInstanceOnFailure?: boolean;
1827
- snsTopicArn?: string;
1828
- resourceTags?: Record<string, string>;
1829
- instanceMetadataOptions?: InstanceMetadataOptions;
1830
- placement?: Placement;
1831
- clientToken?: string;
1832
+ securityGroupIds?: string[] | undefined;
1833
+ subnetId?: string | undefined;
1834
+ logging?: Logging | undefined;
1835
+ keyPair?: string | undefined;
1836
+ terminateInstanceOnFailure?: boolean | undefined;
1837
+ snsTopicArn?: string | undefined;
1838
+ resourceTags?: Record<string, string> | undefined;
1839
+ instanceMetadataOptions?: InstanceMetadataOptions | undefined;
1840
+ placement?: Placement | undefined;
1841
+ clientToken?: string | undefined;
1832
1842
  }
1833
1843
  export interface UpdateInfrastructureConfigurationResponse {
1834
- requestId?: string;
1835
- clientToken?: string;
1836
- infrastructureConfigurationArn?: string;
1844
+ requestId?: string | undefined;
1845
+ clientToken?: string | undefined;
1846
+ infrastructureConfigurationArn?: string | undefined;
1837
1847
  }
1838
1848
  export interface UpdateLifecyclePolicyRequest {
1839
1849
  lifecyclePolicyArn: string | undefined;
1840
- description?: string;
1841
- status?: LifecyclePolicyStatus;
1850
+ description?: string | undefined;
1851
+ status?: LifecyclePolicyStatus | undefined;
1842
1852
  executionRole: string | undefined;
1843
1853
  resourceType: LifecyclePolicyResourceType | undefined;
1844
1854
  policyDetails: LifecyclePolicyDetail[] | undefined;
1845
1855
  resourceSelection: LifecyclePolicyResourceSelection | undefined;
1846
- clientToken?: string;
1856
+ clientToken?: string | undefined;
1847
1857
  }
1848
1858
  export interface UpdateLifecyclePolicyResponse {
1849
- lifecyclePolicyArn?: string;
1859
+ lifecyclePolicyArn?: string | undefined;
1850
1860
  }