@aws-sdk/client-imagebuilder 3.934.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +197 -196
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +196 -0
- package/dist-es/models/errors.js +205 -0
- package/dist-es/models/models_0.js +1 -401
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/commands/UpdateInfrastructureConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateLifecyclePolicyCommand.d.ts +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +484 -0
- package/dist-types/models/errors.d.ts +216 -0
- package/dist-types/models/models_0.d.ts +190 -700
- package/dist-types/ts3.4/commands/UpdateInfrastructureConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateLifecyclePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +257 -0
- package/dist-types/ts3.4/models/errors.d.ts +124 -0
- package/dist-types/ts3.4/models/models_0.d.ts +72 -381
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -2
- package/dist-es/models/models_1.js +0 -1
- package/dist-types/models/index.d.ts +0 -2
- package/dist-types/models/models_1.d.ts +0 -190
- package/dist-types/ts3.4/models/index.d.ts +0 -2
- package/dist-types/ts3.4/models/models_1.d.ts +0 -43
|
@@ -1,5 +1,41 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
BuildType,
|
|
3
|
+
ComponentFormat,
|
|
4
|
+
ComponentStatus,
|
|
5
|
+
ComponentType,
|
|
6
|
+
ContainerRepositoryService,
|
|
7
|
+
ContainerType,
|
|
8
|
+
DiskImageFormat,
|
|
9
|
+
EbsVolumeType,
|
|
10
|
+
ImageScanStatus,
|
|
11
|
+
ImageSource,
|
|
12
|
+
ImageStatus,
|
|
13
|
+
ImageType,
|
|
14
|
+
LifecycleExecutionResourceActionName,
|
|
15
|
+
LifecycleExecutionResourceStatus,
|
|
16
|
+
LifecycleExecutionStatus,
|
|
17
|
+
LifecyclePolicyDetailActionType,
|
|
18
|
+
LifecyclePolicyDetailFilterType,
|
|
19
|
+
LifecyclePolicyResourceType,
|
|
20
|
+
LifecyclePolicyStatus,
|
|
21
|
+
LifecyclePolicyTimeUnit,
|
|
22
|
+
MarketplaceResourceType,
|
|
23
|
+
OnWorkflowFailure,
|
|
24
|
+
Ownership,
|
|
25
|
+
PipelineExecutionStartCondition,
|
|
26
|
+
PipelineStatus,
|
|
27
|
+
Platform,
|
|
28
|
+
ProductCodeType,
|
|
29
|
+
ResourceStatus,
|
|
30
|
+
SsmParameterDataType,
|
|
31
|
+
TenancyType,
|
|
32
|
+
WorkflowExecutionStatus,
|
|
33
|
+
WorkflowStatus,
|
|
34
|
+
WorkflowStepActionType,
|
|
35
|
+
WorkflowStepExecutionRollbackStatus,
|
|
36
|
+
WorkflowStepExecutionStatus,
|
|
37
|
+
WorkflowType,
|
|
38
|
+
} from "./enums";
|
|
3
39
|
export interface SeverityCounts {
|
|
4
40
|
all?: number | undefined;
|
|
5
41
|
critical?: number | undefined;
|
|
@@ -17,21 +53,6 @@ export interface AdditionalInstanceConfiguration {
|
|
|
17
53
|
systemsManagerAgent?: SystemsManagerAgent | undefined;
|
|
18
54
|
userDataOverride?: string | undefined;
|
|
19
55
|
}
|
|
20
|
-
export declare const ImageStatus: {
|
|
21
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
22
|
-
readonly BUILDING: "BUILDING";
|
|
23
|
-
readonly CANCELLED: "CANCELLED";
|
|
24
|
-
readonly CREATING: "CREATING";
|
|
25
|
-
readonly DELETED: "DELETED";
|
|
26
|
-
readonly DEPRECATED: "DEPRECATED";
|
|
27
|
-
readonly DISABLED: "DISABLED";
|
|
28
|
-
readonly DISTRIBUTING: "DISTRIBUTING";
|
|
29
|
-
readonly FAILED: "FAILED";
|
|
30
|
-
readonly INTEGRATING: "INTEGRATING";
|
|
31
|
-
readonly PENDING: "PENDING";
|
|
32
|
-
readonly TESTING: "TESTING";
|
|
33
|
-
};
|
|
34
|
-
export type ImageStatus = (typeof ImageStatus)[keyof typeof ImageStatus];
|
|
35
56
|
export interface ImageState {
|
|
36
57
|
status?: ImageStatus | undefined;
|
|
37
58
|
reason?: string | undefined;
|
|
@@ -61,20 +82,6 @@ export interface AmiDistributionConfiguration {
|
|
|
61
82
|
export interface AutoDisablePolicy {
|
|
62
83
|
failureCount: number | undefined;
|
|
63
84
|
}
|
|
64
|
-
export declare const BuildType: {
|
|
65
|
-
readonly IMPORT: "IMPORT";
|
|
66
|
-
readonly IMPORT_ISO: "IMPORT_ISO";
|
|
67
|
-
readonly SCHEDULED: "SCHEDULED";
|
|
68
|
-
readonly USER_INITIATED: "USER_INITIATED";
|
|
69
|
-
};
|
|
70
|
-
export type BuildType = (typeof BuildType)[keyof typeof BuildType];
|
|
71
|
-
export declare class CallRateLimitExceededException extends __BaseException {
|
|
72
|
-
readonly name: "CallRateLimitExceededException";
|
|
73
|
-
readonly $fault: "client";
|
|
74
|
-
constructor(
|
|
75
|
-
opts: __ExceptionOptionType<CallRateLimitExceededException, __BaseException>
|
|
76
|
-
);
|
|
77
|
-
}
|
|
78
85
|
export interface CancelImageCreationRequest {
|
|
79
86
|
imageBuildVersionArn: string | undefined;
|
|
80
87
|
clientToken?: string | undefined;
|
|
@@ -84,52 +91,6 @@ export interface CancelImageCreationResponse {
|
|
|
84
91
|
clientToken?: string | undefined;
|
|
85
92
|
imageBuildVersionArn?: string | undefined;
|
|
86
93
|
}
|
|
87
|
-
export declare class ClientException extends __BaseException {
|
|
88
|
-
readonly name: "ClientException";
|
|
89
|
-
readonly $fault: "client";
|
|
90
|
-
constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
|
|
91
|
-
}
|
|
92
|
-
export declare class ForbiddenException extends __BaseException {
|
|
93
|
-
readonly name: "ForbiddenException";
|
|
94
|
-
readonly $fault: "client";
|
|
95
|
-
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
96
|
-
}
|
|
97
|
-
export declare class IdempotentParameterMismatchException extends __BaseException {
|
|
98
|
-
readonly name: "IdempotentParameterMismatchException";
|
|
99
|
-
readonly $fault: "client";
|
|
100
|
-
constructor(
|
|
101
|
-
opts: __ExceptionOptionType<
|
|
102
|
-
IdempotentParameterMismatchException,
|
|
103
|
-
__BaseException
|
|
104
|
-
>
|
|
105
|
-
);
|
|
106
|
-
}
|
|
107
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
108
|
-
readonly name: "InvalidRequestException";
|
|
109
|
-
readonly $fault: "client";
|
|
110
|
-
constructor(
|
|
111
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
112
|
-
);
|
|
113
|
-
}
|
|
114
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
115
|
-
readonly name: "ResourceInUseException";
|
|
116
|
-
readonly $fault: "client";
|
|
117
|
-
constructor(
|
|
118
|
-
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
119
|
-
);
|
|
120
|
-
}
|
|
121
|
-
export declare class ServiceException extends __BaseException {
|
|
122
|
-
readonly name: "ServiceException";
|
|
123
|
-
readonly $fault: "server";
|
|
124
|
-
constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
|
|
125
|
-
}
|
|
126
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
127
|
-
readonly name: "ServiceUnavailableException";
|
|
128
|
-
readonly $fault: "server";
|
|
129
|
-
constructor(
|
|
130
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
131
|
-
);
|
|
132
|
-
}
|
|
133
94
|
export interface CancelLifecycleExecutionRequest {
|
|
134
95
|
lifecycleExecutionId: string | undefined;
|
|
135
96
|
clientToken?: string | undefined;
|
|
@@ -143,37 +104,14 @@ export interface ComponentParameterDetail {
|
|
|
143
104
|
defaultValue?: string[] | undefined;
|
|
144
105
|
description?: string | undefined;
|
|
145
106
|
}
|
|
146
|
-
export declare const Platform: {
|
|
147
|
-
readonly LINUX: "Linux";
|
|
148
|
-
readonly MACOS: "macOS";
|
|
149
|
-
readonly WINDOWS: "Windows";
|
|
150
|
-
};
|
|
151
|
-
export type Platform = (typeof Platform)[keyof typeof Platform];
|
|
152
|
-
export declare const ProductCodeType: {
|
|
153
|
-
readonly MARKETPLACE: "marketplace";
|
|
154
|
-
};
|
|
155
|
-
export type ProductCodeType =
|
|
156
|
-
(typeof ProductCodeType)[keyof typeof ProductCodeType];
|
|
157
107
|
export interface ProductCodeListItem {
|
|
158
108
|
productCodeId: string | undefined;
|
|
159
109
|
productCodeType: ProductCodeType | undefined;
|
|
160
110
|
}
|
|
161
|
-
export declare const ComponentStatus: {
|
|
162
|
-
readonly ACTIVE: "ACTIVE";
|
|
163
|
-
readonly DEPRECATED: "DEPRECATED";
|
|
164
|
-
readonly DISABLED: "DISABLED";
|
|
165
|
-
};
|
|
166
|
-
export type ComponentStatus =
|
|
167
|
-
(typeof ComponentStatus)[keyof typeof ComponentStatus];
|
|
168
111
|
export interface ComponentState {
|
|
169
112
|
status?: ComponentStatus | undefined;
|
|
170
113
|
reason?: string | undefined;
|
|
171
114
|
}
|
|
172
|
-
export declare const ComponentType: {
|
|
173
|
-
readonly BUILD: "BUILD";
|
|
174
|
-
readonly TEST: "TEST";
|
|
175
|
-
};
|
|
176
|
-
export type ComponentType = (typeof ComponentType)[keyof typeof ComponentType];
|
|
177
115
|
export interface Component {
|
|
178
116
|
arn?: string | undefined;
|
|
179
117
|
name?: string | undefined;
|
|
@@ -203,11 +141,6 @@ export interface ComponentConfiguration {
|
|
|
203
141
|
componentArn: string | undefined;
|
|
204
142
|
parameters?: ComponentParameter[] | undefined;
|
|
205
143
|
}
|
|
206
|
-
export declare const ComponentFormat: {
|
|
207
|
-
readonly SHELL: "SHELL";
|
|
208
|
-
};
|
|
209
|
-
export type ComponentFormat =
|
|
210
|
-
(typeof ComponentFormat)[keyof typeof ComponentFormat];
|
|
211
144
|
export interface ComponentSummary {
|
|
212
145
|
arn?: string | undefined;
|
|
213
146
|
name?: string | undefined;
|
|
@@ -241,11 +174,6 @@ export interface Container {
|
|
|
241
174
|
region?: string | undefined;
|
|
242
175
|
imageUris?: string[] | undefined;
|
|
243
176
|
}
|
|
244
|
-
export declare const ContainerRepositoryService: {
|
|
245
|
-
readonly ECR: "ECR";
|
|
246
|
-
};
|
|
247
|
-
export type ContainerRepositoryService =
|
|
248
|
-
(typeof ContainerRepositoryService)[keyof typeof ContainerRepositoryService];
|
|
249
177
|
export interface TargetContainerRepository {
|
|
250
178
|
service: ContainerRepositoryService | undefined;
|
|
251
179
|
repositoryName: string | undefined;
|
|
@@ -255,20 +183,6 @@ export interface ContainerDistributionConfiguration {
|
|
|
255
183
|
containerTags?: string[] | undefined;
|
|
256
184
|
targetRepository: TargetContainerRepository | undefined;
|
|
257
185
|
}
|
|
258
|
-
export declare const ContainerType: {
|
|
259
|
-
readonly DOCKER: "DOCKER";
|
|
260
|
-
};
|
|
261
|
-
export type ContainerType = (typeof ContainerType)[keyof typeof ContainerType];
|
|
262
|
-
export declare const EbsVolumeType: {
|
|
263
|
-
readonly GP2: "gp2";
|
|
264
|
-
readonly GP3: "gp3";
|
|
265
|
-
readonly IO1: "io1";
|
|
266
|
-
readonly IO2: "io2";
|
|
267
|
-
readonly SC1: "sc1";
|
|
268
|
-
readonly ST1: "st1";
|
|
269
|
-
readonly STANDARD: "standard";
|
|
270
|
-
};
|
|
271
|
-
export type EbsVolumeType = (typeof EbsVolumeType)[keyof typeof EbsVolumeType];
|
|
272
186
|
export interface EbsInstanceBlockDeviceSpecification {
|
|
273
187
|
encrypted?: boolean | undefined;
|
|
274
188
|
deleteOnTermination?: boolean | undefined;
|
|
@@ -337,30 +251,6 @@ export interface CreateComponentResponse {
|
|
|
337
251
|
clientToken?: string | undefined;
|
|
338
252
|
componentBuildVersionArn?: string | undefined;
|
|
339
253
|
}
|
|
340
|
-
export declare class InvalidParameterCombinationException extends __BaseException {
|
|
341
|
-
readonly name: "InvalidParameterCombinationException";
|
|
342
|
-
readonly $fault: "client";
|
|
343
|
-
constructor(
|
|
344
|
-
opts: __ExceptionOptionType<
|
|
345
|
-
InvalidParameterCombinationException,
|
|
346
|
-
__BaseException
|
|
347
|
-
>
|
|
348
|
-
);
|
|
349
|
-
}
|
|
350
|
-
export declare class InvalidVersionNumberException extends __BaseException {
|
|
351
|
-
readonly name: "InvalidVersionNumberException";
|
|
352
|
-
readonly $fault: "client";
|
|
353
|
-
constructor(
|
|
354
|
-
opts: __ExceptionOptionType<InvalidVersionNumberException, __BaseException>
|
|
355
|
-
);
|
|
356
|
-
}
|
|
357
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
358
|
-
readonly name: "ServiceQuotaExceededException";
|
|
359
|
-
readonly $fault: "client";
|
|
360
|
-
constructor(
|
|
361
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
362
|
-
);
|
|
363
|
-
}
|
|
364
254
|
export interface CreateContainerRecipeRequest {
|
|
365
255
|
containerType: ContainerType | undefined;
|
|
366
256
|
name: string | undefined;
|
|
@@ -384,13 +274,6 @@ export interface CreateContainerRecipeResponse {
|
|
|
384
274
|
clientToken?: string | undefined;
|
|
385
275
|
containerRecipeArn?: string | undefined;
|
|
386
276
|
}
|
|
387
|
-
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
388
|
-
readonly name: "ResourceAlreadyExistsException";
|
|
389
|
-
readonly $fault: "client";
|
|
390
|
-
constructor(
|
|
391
|
-
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
392
|
-
);
|
|
393
|
-
}
|
|
394
277
|
export interface FastLaunchLaunchTemplateSpecification {
|
|
395
278
|
launchTemplateId?: string | undefined;
|
|
396
279
|
launchTemplateName?: string | undefined;
|
|
@@ -411,25 +294,12 @@ export interface LaunchTemplateConfiguration {
|
|
|
411
294
|
accountId?: string | undefined;
|
|
412
295
|
setDefaultVersion?: boolean | undefined;
|
|
413
296
|
}
|
|
414
|
-
export declare const DiskImageFormat: {
|
|
415
|
-
readonly RAW: "RAW";
|
|
416
|
-
readonly VHD: "VHD";
|
|
417
|
-
readonly VMDK: "VMDK";
|
|
418
|
-
};
|
|
419
|
-
export type DiskImageFormat =
|
|
420
|
-
(typeof DiskImageFormat)[keyof typeof DiskImageFormat];
|
|
421
297
|
export interface S3ExportConfiguration {
|
|
422
298
|
roleName: string | undefined;
|
|
423
299
|
diskImageFormat: DiskImageFormat | undefined;
|
|
424
300
|
s3Bucket: string | undefined;
|
|
425
301
|
s3Prefix?: string | undefined;
|
|
426
302
|
}
|
|
427
|
-
export declare const SsmParameterDataType: {
|
|
428
|
-
readonly AWS_EC2_IMAGE: "aws:ec2:image";
|
|
429
|
-
readonly TEXT: "text";
|
|
430
|
-
};
|
|
431
|
-
export type SsmParameterDataType =
|
|
432
|
-
(typeof SsmParameterDataType)[keyof typeof SsmParameterDataType];
|
|
433
303
|
export interface SsmParameterConfiguration {
|
|
434
304
|
amiAccountId?: string | undefined;
|
|
435
305
|
parameterName: string | undefined;
|
|
@@ -474,12 +344,6 @@ export interface ImageTestsConfiguration {
|
|
|
474
344
|
export interface ImageLoggingConfiguration {
|
|
475
345
|
logGroupName?: string | undefined;
|
|
476
346
|
}
|
|
477
|
-
export declare const OnWorkflowFailure: {
|
|
478
|
-
readonly ABORT: "ABORT";
|
|
479
|
-
readonly CONTINUE: "CONTINUE";
|
|
480
|
-
};
|
|
481
|
-
export type OnWorkflowFailure =
|
|
482
|
-
(typeof OnWorkflowFailure)[keyof typeof OnWorkflowFailure];
|
|
483
347
|
export interface WorkflowParameter {
|
|
484
348
|
name: string | undefined;
|
|
485
349
|
value: string[] | undefined;
|
|
@@ -513,24 +377,12 @@ export interface PipelineLoggingConfiguration {
|
|
|
513
377
|
imageLogGroupName?: string | undefined;
|
|
514
378
|
pipelineLogGroupName?: string | undefined;
|
|
515
379
|
}
|
|
516
|
-
export declare const PipelineExecutionStartCondition: {
|
|
517
|
-
readonly EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE: "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE";
|
|
518
|
-
readonly EXPRESSION_MATCH_ONLY: "EXPRESSION_MATCH_ONLY";
|
|
519
|
-
};
|
|
520
|
-
export type PipelineExecutionStartCondition =
|
|
521
|
-
(typeof PipelineExecutionStartCondition)[keyof typeof PipelineExecutionStartCondition];
|
|
522
380
|
export interface Schedule {
|
|
523
381
|
scheduleExpression?: string | undefined;
|
|
524
382
|
timezone?: string | undefined;
|
|
525
383
|
pipelineExecutionStartCondition?: PipelineExecutionStartCondition | undefined;
|
|
526
384
|
autoDisablePolicy?: AutoDisablePolicy | undefined;
|
|
527
385
|
}
|
|
528
|
-
export declare const PipelineStatus: {
|
|
529
|
-
readonly DISABLED: "DISABLED";
|
|
530
|
-
readonly ENABLED: "ENABLED";
|
|
531
|
-
};
|
|
532
|
-
export type PipelineStatus =
|
|
533
|
-
(typeof PipelineStatus)[keyof typeof PipelineStatus];
|
|
534
386
|
export interface CreateImagePipelineRequest {
|
|
535
387
|
name: string | undefined;
|
|
536
388
|
description?: string | undefined;
|
|
@@ -583,12 +435,6 @@ export interface S3Logs {
|
|
|
583
435
|
export interface Logging {
|
|
584
436
|
s3Logs?: S3Logs | undefined;
|
|
585
437
|
}
|
|
586
|
-
export declare const TenancyType: {
|
|
587
|
-
readonly DEDICATED: "dedicated";
|
|
588
|
-
readonly DEFAULT: "default";
|
|
589
|
-
readonly HOST: "host";
|
|
590
|
-
};
|
|
591
|
-
export type TenancyType = (typeof TenancyType)[keyof typeof TenancyType];
|
|
592
438
|
export interface Placement {
|
|
593
439
|
availabilityZone?: string | undefined;
|
|
594
440
|
tenancy?: TenancyType | undefined;
|
|
@@ -622,25 +468,10 @@ export interface LifecyclePolicyDetailActionIncludeResources {
|
|
|
622
468
|
snapshots?: boolean | undefined;
|
|
623
469
|
containers?: boolean | undefined;
|
|
624
470
|
}
|
|
625
|
-
export declare const LifecyclePolicyDetailActionType: {
|
|
626
|
-
readonly DELETE: "DELETE";
|
|
627
|
-
readonly DEPRECATE: "DEPRECATE";
|
|
628
|
-
readonly DISABLE: "DISABLE";
|
|
629
|
-
};
|
|
630
|
-
export type LifecyclePolicyDetailActionType =
|
|
631
|
-
(typeof LifecyclePolicyDetailActionType)[keyof typeof LifecyclePolicyDetailActionType];
|
|
632
471
|
export interface LifecyclePolicyDetailAction {
|
|
633
472
|
type: LifecyclePolicyDetailActionType | undefined;
|
|
634
473
|
includeResources?: LifecyclePolicyDetailActionIncludeResources | undefined;
|
|
635
474
|
}
|
|
636
|
-
export declare const LifecyclePolicyTimeUnit: {
|
|
637
|
-
readonly DAYS: "DAYS";
|
|
638
|
-
readonly MONTHS: "MONTHS";
|
|
639
|
-
readonly WEEKS: "WEEKS";
|
|
640
|
-
readonly YEARS: "YEARS";
|
|
641
|
-
};
|
|
642
|
-
export type LifecyclePolicyTimeUnit =
|
|
643
|
-
(typeof LifecyclePolicyTimeUnit)[keyof typeof LifecyclePolicyTimeUnit];
|
|
644
475
|
export interface LifecyclePolicyDetailExclusionRulesAmisLastLaunched {
|
|
645
476
|
value: number | undefined;
|
|
646
477
|
unit: LifecyclePolicyTimeUnit | undefined;
|
|
@@ -658,12 +489,6 @@ export interface LifecyclePolicyDetailExclusionRules {
|
|
|
658
489
|
tagMap?: Record<string, string> | undefined;
|
|
659
490
|
amis?: LifecyclePolicyDetailExclusionRulesAmis | undefined;
|
|
660
491
|
}
|
|
661
|
-
export declare const LifecyclePolicyDetailFilterType: {
|
|
662
|
-
readonly AGE: "AGE";
|
|
663
|
-
readonly COUNT: "COUNT";
|
|
664
|
-
};
|
|
665
|
-
export type LifecyclePolicyDetailFilterType =
|
|
666
|
-
(typeof LifecyclePolicyDetailFilterType)[keyof typeof LifecyclePolicyDetailFilterType];
|
|
667
492
|
export interface LifecyclePolicyDetailFilter {
|
|
668
493
|
type: LifecyclePolicyDetailFilterType | undefined;
|
|
669
494
|
value: number | undefined;
|
|
@@ -683,18 +508,6 @@ export interface LifecyclePolicyResourceSelection {
|
|
|
683
508
|
recipes?: LifecyclePolicyResourceSelectionRecipe[] | undefined;
|
|
684
509
|
tagMap?: Record<string, string> | undefined;
|
|
685
510
|
}
|
|
686
|
-
export declare const LifecyclePolicyResourceType: {
|
|
687
|
-
readonly AMI_IMAGE: "AMI_IMAGE";
|
|
688
|
-
readonly CONTAINER_IMAGE: "CONTAINER_IMAGE";
|
|
689
|
-
};
|
|
690
|
-
export type LifecyclePolicyResourceType =
|
|
691
|
-
(typeof LifecyclePolicyResourceType)[keyof typeof LifecyclePolicyResourceType];
|
|
692
|
-
export declare const LifecyclePolicyStatus: {
|
|
693
|
-
readonly DISABLED: "DISABLED";
|
|
694
|
-
readonly ENABLED: "ENABLED";
|
|
695
|
-
};
|
|
696
|
-
export type LifecyclePolicyStatus =
|
|
697
|
-
(typeof LifecyclePolicyStatus)[keyof typeof LifecyclePolicyStatus];
|
|
698
511
|
export interface CreateLifecyclePolicyRequest {
|
|
699
512
|
name: string | undefined;
|
|
700
513
|
description?: string | undefined;
|
|
@@ -710,12 +523,6 @@ export interface CreateLifecyclePolicyResponse {
|
|
|
710
523
|
clientToken?: string | undefined;
|
|
711
524
|
lifecyclePolicyArn?: string | undefined;
|
|
712
525
|
}
|
|
713
|
-
export declare const WorkflowType: {
|
|
714
|
-
readonly BUILD: "BUILD";
|
|
715
|
-
readonly DISTRIBUTION: "DISTRIBUTION";
|
|
716
|
-
readonly TEST: "TEST";
|
|
717
|
-
};
|
|
718
|
-
export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
|
|
719
526
|
export interface CreateWorkflowRequest {
|
|
720
527
|
name: string | undefined;
|
|
721
528
|
semanticVersion: string | undefined;
|
|
@@ -757,13 +564,6 @@ export interface DeleteComponentResponse {
|
|
|
757
564
|
requestId?: string | undefined;
|
|
758
565
|
componentBuildVersionArn?: string | undefined;
|
|
759
566
|
}
|
|
760
|
-
export declare class ResourceDependencyException extends __BaseException {
|
|
761
|
-
readonly name: "ResourceDependencyException";
|
|
762
|
-
readonly $fault: "client";
|
|
763
|
-
constructor(
|
|
764
|
-
opts: __ExceptionOptionType<ResourceDependencyException, __BaseException>
|
|
765
|
-
);
|
|
766
|
-
}
|
|
767
567
|
export interface DeleteContainerRecipeRequest {
|
|
768
568
|
containerRecipeArn: string | undefined;
|
|
769
569
|
}
|
|
@@ -855,13 +655,6 @@ export interface GetComponentPolicyResponse {
|
|
|
855
655
|
requestId?: string | undefined;
|
|
856
656
|
policy?: string | undefined;
|
|
857
657
|
}
|
|
858
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
859
|
-
readonly name: "ResourceNotFoundException";
|
|
860
|
-
readonly $fault: "client";
|
|
861
|
-
constructor(
|
|
862
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
863
|
-
);
|
|
864
|
-
}
|
|
865
658
|
export interface GetContainerRecipeRequest {
|
|
866
659
|
containerRecipeArn: string | undefined;
|
|
867
660
|
}
|
|
@@ -886,11 +679,6 @@ export interface GetDistributionConfigurationResponse {
|
|
|
886
679
|
export interface GetImageRequest {
|
|
887
680
|
imageBuildVersionArn: string | undefined;
|
|
888
681
|
}
|
|
889
|
-
export declare const ImageType: {
|
|
890
|
-
readonly AMI: "AMI";
|
|
891
|
-
readonly DOCKER: "DOCKER";
|
|
892
|
-
};
|
|
893
|
-
export type ImageType = (typeof ImageType)[keyof typeof ImageType];
|
|
894
682
|
export interface ImageRecipe {
|
|
895
683
|
arn?: string | undefined;
|
|
896
684
|
type?: ImageType | undefined;
|
|
@@ -908,13 +696,6 @@ export interface ImageRecipe {
|
|
|
908
696
|
additionalInstanceConfiguration?: AdditionalInstanceConfiguration | undefined;
|
|
909
697
|
amiTags?: Record<string, string> | undefined;
|
|
910
698
|
}
|
|
911
|
-
export declare const ImageSource: {
|
|
912
|
-
readonly AMAZON_MANAGED: "AMAZON_MANAGED";
|
|
913
|
-
readonly AWS_MARKETPLACE: "AWS_MARKETPLACE";
|
|
914
|
-
readonly CUSTOM: "CUSTOM";
|
|
915
|
-
readonly IMPORTED: "IMPORTED";
|
|
916
|
-
};
|
|
917
|
-
export type ImageSource = (typeof ImageSource)[keyof typeof ImageSource];
|
|
918
699
|
export interface InfrastructureConfiguration {
|
|
919
700
|
arn?: string | undefined;
|
|
920
701
|
name?: string | undefined;
|
|
@@ -938,17 +719,6 @@ export interface OutputResources {
|
|
|
938
719
|
amis?: Ami[] | undefined;
|
|
939
720
|
containers?: Container[] | undefined;
|
|
940
721
|
}
|
|
941
|
-
export declare const ImageScanStatus: {
|
|
942
|
-
readonly ABANDONED: "ABANDONED";
|
|
943
|
-
readonly COLLECTING: "COLLECTING";
|
|
944
|
-
readonly COMPLETED: "COMPLETED";
|
|
945
|
-
readonly FAILED: "FAILED";
|
|
946
|
-
readonly PENDING: "PENDING";
|
|
947
|
-
readonly SCANNING: "SCANNING";
|
|
948
|
-
readonly TIMED_OUT: "TIMED_OUT";
|
|
949
|
-
};
|
|
950
|
-
export type ImageScanStatus =
|
|
951
|
-
(typeof ImageScanStatus)[keyof typeof ImageScanStatus];
|
|
952
722
|
export interface ImageScanState {
|
|
953
723
|
status?: ImageScanStatus | undefined;
|
|
954
724
|
reason?: string | undefined;
|
|
@@ -1052,16 +822,6 @@ export interface GetLifecycleExecutionRequest {
|
|
|
1052
822
|
export interface LifecycleExecutionResourcesImpactedSummary {
|
|
1053
823
|
hasImpactedResources?: boolean | undefined;
|
|
1054
824
|
}
|
|
1055
|
-
export declare const LifecycleExecutionStatus: {
|
|
1056
|
-
readonly CANCELLED: "CANCELLED";
|
|
1057
|
-
readonly CANCELLING: "CANCELLING";
|
|
1058
|
-
readonly FAILED: "FAILED";
|
|
1059
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1060
|
-
readonly PENDING: "PENDING";
|
|
1061
|
-
readonly SUCCESS: "SUCCESS";
|
|
1062
|
-
};
|
|
1063
|
-
export type LifecycleExecutionStatus =
|
|
1064
|
-
(typeof LifecycleExecutionStatus)[keyof typeof LifecycleExecutionStatus];
|
|
1065
825
|
export interface LifecycleExecutionState {
|
|
1066
826
|
status?: LifecycleExecutionStatus | undefined;
|
|
1067
827
|
reason?: string | undefined;
|
|
@@ -1099,12 +859,6 @@ export interface LifecyclePolicy {
|
|
|
1099
859
|
export interface GetLifecyclePolicyResponse {
|
|
1100
860
|
lifecyclePolicy?: LifecyclePolicy | undefined;
|
|
1101
861
|
}
|
|
1102
|
-
export declare const MarketplaceResourceType: {
|
|
1103
|
-
readonly COMPONENT_ARTIFACT: "COMPONENT_ARTIFACT";
|
|
1104
|
-
readonly COMPONENT_DATA: "COMPONENT_DATA";
|
|
1105
|
-
};
|
|
1106
|
-
export type MarketplaceResourceType =
|
|
1107
|
-
(typeof MarketplaceResourceType)[keyof typeof MarketplaceResourceType];
|
|
1108
862
|
export interface GetMarketplaceResourceRequest {
|
|
1109
863
|
resourceType: MarketplaceResourceType | undefined;
|
|
1110
864
|
resourceArn: string | undefined;
|
|
@@ -1124,11 +878,6 @@ export interface WorkflowParameterDetail {
|
|
|
1124
878
|
defaultValue?: string[] | undefined;
|
|
1125
879
|
description?: string | undefined;
|
|
1126
880
|
}
|
|
1127
|
-
export declare const WorkflowStatus: {
|
|
1128
|
-
readonly DEPRECATED: "DEPRECATED";
|
|
1129
|
-
};
|
|
1130
|
-
export type WorkflowStatus =
|
|
1131
|
-
(typeof WorkflowStatus)[keyof typeof WorkflowStatus];
|
|
1132
881
|
export interface WorkflowState {
|
|
1133
882
|
status?: WorkflowStatus | undefined;
|
|
1134
883
|
reason?: string | undefined;
|
|
@@ -1154,18 +903,6 @@ export interface GetWorkflowResponse {
|
|
|
1154
903
|
export interface GetWorkflowExecutionRequest {
|
|
1155
904
|
workflowExecutionId: string | undefined;
|
|
1156
905
|
}
|
|
1157
|
-
export declare const WorkflowExecutionStatus: {
|
|
1158
|
-
readonly CANCELLED: "CANCELLED";
|
|
1159
|
-
readonly COMPLETED: "COMPLETED";
|
|
1160
|
-
readonly FAILED: "FAILED";
|
|
1161
|
-
readonly PENDING: "PENDING";
|
|
1162
|
-
readonly ROLLBACK_COMPLETED: "ROLLBACK_COMPLETED";
|
|
1163
|
-
readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
|
|
1164
|
-
readonly RUNNING: "RUNNING";
|
|
1165
|
-
readonly SKIPPED: "SKIPPED";
|
|
1166
|
-
};
|
|
1167
|
-
export type WorkflowExecutionStatus =
|
|
1168
|
-
(typeof WorkflowExecutionStatus)[keyof typeof WorkflowExecutionStatus];
|
|
1169
906
|
export interface GetWorkflowExecutionResponse {
|
|
1170
907
|
requestId?: string | undefined;
|
|
1171
908
|
workflowBuildVersionArn?: string | undefined;
|
|
@@ -1185,24 +922,6 @@ export interface GetWorkflowExecutionResponse {
|
|
|
1185
922
|
export interface GetWorkflowStepExecutionRequest {
|
|
1186
923
|
stepExecutionId: string | undefined;
|
|
1187
924
|
}
|
|
1188
|
-
export declare const WorkflowStepExecutionRollbackStatus: {
|
|
1189
|
-
readonly COMPLETED: "COMPLETED";
|
|
1190
|
-
readonly FAILED: "FAILED";
|
|
1191
|
-
readonly RUNNING: "RUNNING";
|
|
1192
|
-
readonly SKIPPED: "SKIPPED";
|
|
1193
|
-
};
|
|
1194
|
-
export type WorkflowStepExecutionRollbackStatus =
|
|
1195
|
-
(typeof WorkflowStepExecutionRollbackStatus)[keyof typeof WorkflowStepExecutionRollbackStatus];
|
|
1196
|
-
export declare const WorkflowStepExecutionStatus: {
|
|
1197
|
-
readonly CANCELLED: "CANCELLED";
|
|
1198
|
-
readonly COMPLETED: "COMPLETED";
|
|
1199
|
-
readonly FAILED: "FAILED";
|
|
1200
|
-
readonly PENDING: "PENDING";
|
|
1201
|
-
readonly RUNNING: "RUNNING";
|
|
1202
|
-
readonly SKIPPED: "SKIPPED";
|
|
1203
|
-
};
|
|
1204
|
-
export type WorkflowStepExecutionStatus =
|
|
1205
|
-
(typeof WorkflowStepExecutionStatus)[keyof typeof WorkflowStepExecutionStatus];
|
|
1206
925
|
export interface GetWorkflowStepExecutionResponse {
|
|
1207
926
|
requestId?: string | undefined;
|
|
1208
927
|
stepExecutionId?: string | undefined;
|
|
@@ -1278,16 +997,6 @@ export interface ImportVmImageResponse {
|
|
|
1278
997
|
imageArn?: string | undefined;
|
|
1279
998
|
clientToken?: string | undefined;
|
|
1280
999
|
}
|
|
1281
|
-
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
1282
|
-
readonly name: "InvalidPaginationTokenException";
|
|
1283
|
-
readonly $fault: "client";
|
|
1284
|
-
constructor(
|
|
1285
|
-
opts: __ExceptionOptionType<
|
|
1286
|
-
InvalidPaginationTokenException,
|
|
1287
|
-
__BaseException
|
|
1288
|
-
>
|
|
1289
|
-
);
|
|
1290
|
-
}
|
|
1291
1000
|
export interface ListComponentBuildVersionsRequest {
|
|
1292
1001
|
componentVersionArn?: string | undefined;
|
|
1293
1002
|
maxResults?: number | undefined;
|
|
@@ -1298,14 +1007,6 @@ export interface ListComponentBuildVersionsResponse {
|
|
|
1298
1007
|
componentSummaryList?: ComponentSummary[] | undefined;
|
|
1299
1008
|
nextToken?: string | undefined;
|
|
1300
1009
|
}
|
|
1301
|
-
export declare const Ownership: {
|
|
1302
|
-
readonly AMAZON: "Amazon";
|
|
1303
|
-
readonly AWS_MARKETPLACE: "AWSMarketplace";
|
|
1304
|
-
readonly SELF: "Self";
|
|
1305
|
-
readonly SHARED: "Shared";
|
|
1306
|
-
readonly THIRDPARTY: "ThirdParty";
|
|
1307
|
-
};
|
|
1308
|
-
export type Ownership = (typeof Ownership)[keyof typeof Ownership];
|
|
1309
1010
|
export interface ListComponentsRequest {
|
|
1310
1011
|
owner?: Ownership | undefined;
|
|
1311
1012
|
filters?: Filter[] | undefined;
|
|
@@ -1568,26 +1269,10 @@ export interface ListLifecycleExecutionResourcesRequest {
|
|
|
1568
1269
|
maxResults?: number | undefined;
|
|
1569
1270
|
nextToken?: string | undefined;
|
|
1570
1271
|
}
|
|
1571
|
-
export declare const LifecycleExecutionResourceActionName: {
|
|
1572
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
1573
|
-
readonly DELETE: "DELETE";
|
|
1574
|
-
readonly DEPRECATE: "DEPRECATE";
|
|
1575
|
-
readonly DISABLE: "DISABLE";
|
|
1576
|
-
};
|
|
1577
|
-
export type LifecycleExecutionResourceActionName =
|
|
1578
|
-
(typeof LifecycleExecutionResourceActionName)[keyof typeof LifecycleExecutionResourceActionName];
|
|
1579
1272
|
export interface LifecycleExecutionResourceAction {
|
|
1580
1273
|
name?: LifecycleExecutionResourceActionName | undefined;
|
|
1581
1274
|
reason?: string | undefined;
|
|
1582
1275
|
}
|
|
1583
|
-
export declare const LifecycleExecutionResourceStatus: {
|
|
1584
|
-
readonly FAILED: "FAILED";
|
|
1585
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1586
|
-
readonly SKIPPED: "SKIPPED";
|
|
1587
|
-
readonly SUCCESS: "SUCCESS";
|
|
1588
|
-
};
|
|
1589
|
-
export type LifecycleExecutionResourceStatus =
|
|
1590
|
-
(typeof LifecycleExecutionResourceStatus)[keyof typeof LifecycleExecutionResourceStatus];
|
|
1591
1276
|
export interface LifecycleExecutionResourceState {
|
|
1592
1277
|
status?: LifecycleExecutionResourceStatus | undefined;
|
|
1593
1278
|
reason?: string | undefined;
|
|
@@ -1643,13 +1328,6 @@ export interface ListLifecyclePoliciesResponse {
|
|
|
1643
1328
|
lifecyclePolicySummaryList?: LifecyclePolicySummary[] | undefined;
|
|
1644
1329
|
nextToken?: string | undefined;
|
|
1645
1330
|
}
|
|
1646
|
-
export declare class InvalidParameterException extends __BaseException {
|
|
1647
|
-
readonly name: "InvalidParameterException";
|
|
1648
|
-
readonly $fault: "client";
|
|
1649
|
-
constructor(
|
|
1650
|
-
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
1651
|
-
);
|
|
1652
|
-
}
|
|
1653
1331
|
export interface ListTagsForResourceRequest {
|
|
1654
1332
|
resourceArn: string | undefined;
|
|
1655
1333
|
}
|
|
@@ -1767,13 +1445,6 @@ export interface ListWorkflowStepExecutionsResponse {
|
|
|
1767
1445
|
message?: string | undefined;
|
|
1768
1446
|
nextToken?: string | undefined;
|
|
1769
1447
|
}
|
|
1770
|
-
export declare class InvalidParameterValueException extends __BaseException {
|
|
1771
|
-
readonly name: "InvalidParameterValueException";
|
|
1772
|
-
readonly $fault: "client";
|
|
1773
|
-
constructor(
|
|
1774
|
-
opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
|
|
1775
|
-
);
|
|
1776
|
-
}
|
|
1777
1448
|
export interface PutComponentPolicyRequest {
|
|
1778
1449
|
componentArn: string | undefined;
|
|
1779
1450
|
policy: string | undefined;
|
|
@@ -1806,12 +1477,6 @@ export interface PutImageRecipePolicyResponse {
|
|
|
1806
1477
|
requestId?: string | undefined;
|
|
1807
1478
|
imageRecipeArn?: string | undefined;
|
|
1808
1479
|
}
|
|
1809
|
-
export declare const WorkflowStepActionType: {
|
|
1810
|
-
readonly RESUME: "RESUME";
|
|
1811
|
-
readonly STOP: "STOP";
|
|
1812
|
-
};
|
|
1813
|
-
export type WorkflowStepActionType =
|
|
1814
|
-
(typeof WorkflowStepActionType)[keyof typeof WorkflowStepActionType];
|
|
1815
1480
|
export interface SendWorkflowStepActionRequest {
|
|
1816
1481
|
stepExecutionId: string | undefined;
|
|
1817
1482
|
imageBuildVersionArn: string | undefined;
|
|
@@ -1842,14 +1507,6 @@ export interface ResourceStateUpdateIncludeResources {
|
|
|
1842
1507
|
snapshots?: boolean | undefined;
|
|
1843
1508
|
containers?: boolean | undefined;
|
|
1844
1509
|
}
|
|
1845
|
-
export declare const ResourceStatus: {
|
|
1846
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
1847
|
-
readonly DELETED: "DELETED";
|
|
1848
|
-
readonly DEPRECATED: "DEPRECATED";
|
|
1849
|
-
readonly DISABLED: "DISABLED";
|
|
1850
|
-
};
|
|
1851
|
-
export type ResourceStatus =
|
|
1852
|
-
(typeof ResourceStatus)[keyof typeof ResourceStatus];
|
|
1853
1510
|
export interface ResourceState {
|
|
1854
1511
|
status?: ResourceStatus | undefined;
|
|
1855
1512
|
}
|
|
@@ -1909,3 +1566,37 @@ export interface UpdateImagePipelineResponse {
|
|
|
1909
1566
|
clientToken?: string | undefined;
|
|
1910
1567
|
imagePipelineArn?: string | undefined;
|
|
1911
1568
|
}
|
|
1569
|
+
export interface UpdateInfrastructureConfigurationRequest {
|
|
1570
|
+
infrastructureConfigurationArn: string | undefined;
|
|
1571
|
+
description?: string | undefined;
|
|
1572
|
+
instanceTypes?: string[] | undefined;
|
|
1573
|
+
instanceProfileName: string | undefined;
|
|
1574
|
+
securityGroupIds?: string[] | undefined;
|
|
1575
|
+
subnetId?: string | undefined;
|
|
1576
|
+
logging?: Logging | undefined;
|
|
1577
|
+
keyPair?: string | undefined;
|
|
1578
|
+
terminateInstanceOnFailure?: boolean | undefined;
|
|
1579
|
+
snsTopicArn?: string | undefined;
|
|
1580
|
+
resourceTags?: Record<string, string> | undefined;
|
|
1581
|
+
instanceMetadataOptions?: InstanceMetadataOptions | undefined;
|
|
1582
|
+
placement?: Placement | undefined;
|
|
1583
|
+
clientToken?: string | undefined;
|
|
1584
|
+
}
|
|
1585
|
+
export interface UpdateInfrastructureConfigurationResponse {
|
|
1586
|
+
requestId?: string | undefined;
|
|
1587
|
+
clientToken?: string | undefined;
|
|
1588
|
+
infrastructureConfigurationArn?: string | undefined;
|
|
1589
|
+
}
|
|
1590
|
+
export interface UpdateLifecyclePolicyRequest {
|
|
1591
|
+
lifecyclePolicyArn: string | undefined;
|
|
1592
|
+
description?: string | undefined;
|
|
1593
|
+
status?: LifecyclePolicyStatus | undefined;
|
|
1594
|
+
executionRole: string | undefined;
|
|
1595
|
+
resourceType: LifecyclePolicyResourceType | undefined;
|
|
1596
|
+
policyDetails: LifecyclePolicyDetail[] | undefined;
|
|
1597
|
+
resourceSelection: LifecyclePolicyResourceSelection | undefined;
|
|
1598
|
+
clientToken?: string | undefined;
|
|
1599
|
+
}
|
|
1600
|
+
export interface UpdateLifecyclePolicyResponse {
|
|
1601
|
+
lifecyclePolicyArn?: string | undefined;
|
|
1602
|
+
}
|