@aws-sdk/client-imagebuilder 3.295.0 → 3.297.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-types/Imagebuilder.d.ts +51 -0
- package/dist-types/ImagebuilderClient.d.ts +24 -4
- package/dist-types/commands/CancelImageCreationCommand.d.ts +16 -0
- package/dist-types/commands/CreateComponentCommand.d.ts +16 -0
- package/dist-types/commands/CreateContainerRecipeCommand.d.ts +16 -0
- package/dist-types/commands/CreateDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateImageCommand.d.ts +16 -0
- package/dist-types/commands/CreateImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/CreateImageRecipeCommand.d.ts +16 -0
- package/dist-types/commands/CreateInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteComponentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteContainerRecipeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImageRecipeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetComponentCommand.d.ts +16 -0
- package/dist-types/commands/GetComponentPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetContainerRecipeCommand.d.ts +16 -0
- package/dist-types/commands/GetContainerRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetImageCommand.d.ts +16 -0
- package/dist-types/commands/GetImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/GetImagePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetImageRecipeCommand.d.ts +16 -0
- package/dist-types/commands/GetImageRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/ImportComponentCommand.d.ts +16 -0
- package/dist-types/commands/ImportVmImageCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentBuildVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
- package/dist-types/commands/ListContainerRecipesCommand.d.ts +16 -0
- package/dist-types/commands/ListDistributionConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListImageBuildVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListImagePackagesCommand.d.ts +16 -0
- package/dist-types/commands/ListImagePipelineImagesCommand.d.ts +16 -0
- package/dist-types/commands/ListImagePipelinesCommand.d.ts +16 -0
- package/dist-types/commands/ListImageRecipesCommand.d.ts +16 -0
- package/dist-types/commands/ListImagesCommand.d.ts +16 -0
- package/dist-types/commands/ListInfrastructureConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutComponentPolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutContainerRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutImagePolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutImageRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/StartImagePipelineExecutionCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/UpdateInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/models/ImagebuilderServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +403 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListComponentBuildVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListContainerRecipesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDistributionConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImageBuildVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagePackagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagePipelineImagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagePipelinesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImageRecipesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInfrastructureConfigurationsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ImagebuilderServiceException as __BaseException } from "./ImagebuilderServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>Contains settings for the Systems Manager agent on your build instance.</p>
|
|
5
6
|
*/
|
|
6
7
|
export interface SystemsManagerAgent {
|
|
@@ -13,6 +14,7 @@ export interface SystemsManagerAgent {
|
|
|
13
14
|
uninstallAfterBuild?: boolean;
|
|
14
15
|
}
|
|
15
16
|
/**
|
|
17
|
+
* @public
|
|
16
18
|
* <p>In addition to your infrastructure configuration, these settings provide an extra layer of
|
|
17
19
|
* control over your build instances. You can also specify commands to run on launch for all of
|
|
18
20
|
* your build instances.</p>
|
|
@@ -46,6 +48,9 @@ export interface AdditionalInstanceConfiguration {
|
|
|
46
48
|
*/
|
|
47
49
|
userDataOverride?: string;
|
|
48
50
|
}
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
49
54
|
export declare enum ImageStatus {
|
|
50
55
|
AVAILABLE = "AVAILABLE",
|
|
51
56
|
BUILDING = "BUILDING",
|
|
@@ -60,6 +65,7 @@ export declare enum ImageStatus {
|
|
|
60
65
|
TESTING = "TESTING"
|
|
61
66
|
}
|
|
62
67
|
/**
|
|
68
|
+
* @public
|
|
63
69
|
* <p> Image state shows the image status and the reason for that status.</p>
|
|
64
70
|
*/
|
|
65
71
|
export interface ImageState {
|
|
@@ -73,6 +79,7 @@ export interface ImageState {
|
|
|
73
79
|
reason?: string;
|
|
74
80
|
}
|
|
75
81
|
/**
|
|
82
|
+
* @public
|
|
76
83
|
* <p> Details of an Amazon EC2 AMI.</p>
|
|
77
84
|
*/
|
|
78
85
|
export interface Ami {
|
|
@@ -102,6 +109,7 @@ export interface Ami {
|
|
|
102
109
|
accountId?: string;
|
|
103
110
|
}
|
|
104
111
|
/**
|
|
112
|
+
* @public
|
|
105
113
|
* <p>Describes the configuration for a launch permission. The launch permission modification
|
|
106
114
|
* request is sent to the <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyImageAttribute.html">Amazon EC2 ModifyImageAttribute</a>
|
|
107
115
|
* API on behalf of the user for each Region they have selected to distribute the AMI. To make an AMI public,
|
|
@@ -129,6 +137,7 @@ export interface LaunchPermissionConfiguration {
|
|
|
129
137
|
organizationalUnitArns?: string[];
|
|
130
138
|
}
|
|
131
139
|
/**
|
|
140
|
+
* @public
|
|
132
141
|
* <p> Define and configure the output AMIs of the pipeline.</p>
|
|
133
142
|
*/
|
|
134
143
|
export interface AmiDistributionConfiguration {
|
|
@@ -158,12 +167,16 @@ export interface AmiDistributionConfiguration {
|
|
|
158
167
|
*/
|
|
159
168
|
launchPermission?: LaunchPermissionConfiguration;
|
|
160
169
|
}
|
|
170
|
+
/**
|
|
171
|
+
* @public
|
|
172
|
+
*/
|
|
161
173
|
export declare enum BuildType {
|
|
162
174
|
IMPORT = "IMPORT",
|
|
163
175
|
SCHEDULED = "SCHEDULED",
|
|
164
176
|
USER_INITIATED = "USER_INITIATED"
|
|
165
177
|
}
|
|
166
178
|
/**
|
|
179
|
+
* @public
|
|
167
180
|
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
168
181
|
*/
|
|
169
182
|
export declare class CallRateLimitExceededException extends __BaseException {
|
|
@@ -174,6 +187,9 @@ export declare class CallRateLimitExceededException extends __BaseException {
|
|
|
174
187
|
*/
|
|
175
188
|
constructor(opts: __ExceptionOptionType<CallRateLimitExceededException, __BaseException>);
|
|
176
189
|
}
|
|
190
|
+
/**
|
|
191
|
+
* @public
|
|
192
|
+
*/
|
|
177
193
|
export interface CancelImageCreationRequest {
|
|
178
194
|
/**
|
|
179
195
|
* <p>The Amazon Resource Name (ARN) of the image whose creation you want to cancel.</p>
|
|
@@ -186,6 +202,9 @@ export interface CancelImageCreationRequest {
|
|
|
186
202
|
*/
|
|
187
203
|
clientToken?: string;
|
|
188
204
|
}
|
|
205
|
+
/**
|
|
206
|
+
* @public
|
|
207
|
+
*/
|
|
189
208
|
export interface CancelImageCreationResponse {
|
|
190
209
|
/**
|
|
191
210
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -201,6 +220,7 @@ export interface CancelImageCreationResponse {
|
|
|
201
220
|
imageBuildVersionArn?: string;
|
|
202
221
|
}
|
|
203
222
|
/**
|
|
223
|
+
* @public
|
|
204
224
|
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
205
225
|
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
206
226
|
* invalid resource identifier.</p>
|
|
@@ -214,6 +234,7 @@ export declare class ClientException extends __BaseException {
|
|
|
214
234
|
constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
|
|
215
235
|
}
|
|
216
236
|
/**
|
|
237
|
+
* @public
|
|
217
238
|
* <p>You are not authorized to perform the requested operation.</p>
|
|
218
239
|
*/
|
|
219
240
|
export declare class ForbiddenException extends __BaseException {
|
|
@@ -225,6 +246,7 @@ export declare class ForbiddenException extends __BaseException {
|
|
|
225
246
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
226
247
|
}
|
|
227
248
|
/**
|
|
249
|
+
* @public
|
|
228
250
|
* <p>You have specified a client token for an operation using parameter values that differ from
|
|
229
251
|
* a previous request that used the same client token.</p>
|
|
230
252
|
*/
|
|
@@ -237,6 +259,7 @@ export declare class IdempotentParameterMismatchException extends __BaseExceptio
|
|
|
237
259
|
constructor(opts: __ExceptionOptionType<IdempotentParameterMismatchException, __BaseException>);
|
|
238
260
|
}
|
|
239
261
|
/**
|
|
262
|
+
* @public
|
|
240
263
|
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
241
264
|
*/
|
|
242
265
|
export declare class InvalidRequestException extends __BaseException {
|
|
@@ -248,6 +271,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
248
271
|
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
249
272
|
}
|
|
250
273
|
/**
|
|
274
|
+
* @public
|
|
251
275
|
* <p>The resource that you are trying to operate on is currently in use. Review the message
|
|
252
276
|
* details and retry later.</p>
|
|
253
277
|
*/
|
|
@@ -260,6 +284,7 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
260
284
|
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
261
285
|
}
|
|
262
286
|
/**
|
|
287
|
+
* @public
|
|
263
288
|
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
264
289
|
*/
|
|
265
290
|
export declare class ServiceException extends __BaseException {
|
|
@@ -271,6 +296,7 @@ export declare class ServiceException extends __BaseException {
|
|
|
271
296
|
constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
|
|
272
297
|
}
|
|
273
298
|
/**
|
|
299
|
+
* @public
|
|
274
300
|
* <p>The service is unable to process your request at this time.</p>
|
|
275
301
|
*/
|
|
276
302
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
@@ -282,6 +308,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
282
308
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
283
309
|
}
|
|
284
310
|
/**
|
|
311
|
+
* @public
|
|
285
312
|
* <p>Defines a parameter that is used to provide configuration details for the component.</p>
|
|
286
313
|
*/
|
|
287
314
|
export interface ComponentParameterDetail {
|
|
@@ -302,14 +329,21 @@ export interface ComponentParameterDetail {
|
|
|
302
329
|
*/
|
|
303
330
|
description?: string;
|
|
304
331
|
}
|
|
332
|
+
/**
|
|
333
|
+
* @public
|
|
334
|
+
*/
|
|
305
335
|
export declare enum Platform {
|
|
306
336
|
LINUX = "Linux",
|
|
307
337
|
WINDOWS = "Windows"
|
|
308
338
|
}
|
|
339
|
+
/**
|
|
340
|
+
* @public
|
|
341
|
+
*/
|
|
309
342
|
export declare enum ComponentStatus {
|
|
310
343
|
DEPRECATED = "DEPRECATED"
|
|
311
344
|
}
|
|
312
345
|
/**
|
|
346
|
+
* @public
|
|
313
347
|
* <p>A group of fields that describe the current status of components
|
|
314
348
|
* that are no longer active.</p>
|
|
315
349
|
*/
|
|
@@ -323,11 +357,15 @@ export interface ComponentState {
|
|
|
323
357
|
*/
|
|
324
358
|
reason?: string;
|
|
325
359
|
}
|
|
360
|
+
/**
|
|
361
|
+
* @public
|
|
362
|
+
*/
|
|
326
363
|
export declare enum ComponentType {
|
|
327
364
|
BUILD = "BUILD",
|
|
328
365
|
TEST = "TEST"
|
|
329
366
|
}
|
|
330
367
|
/**
|
|
368
|
+
* @public
|
|
331
369
|
* <p>A detailed view of a component.</p>
|
|
332
370
|
*/
|
|
333
371
|
export interface Component {
|
|
@@ -412,6 +450,7 @@ export interface Component {
|
|
|
412
450
|
obfuscate?: boolean;
|
|
413
451
|
}
|
|
414
452
|
/**
|
|
453
|
+
* @public
|
|
415
454
|
* <p>Contains a key/value pair that sets the named component parameter.</p>
|
|
416
455
|
*/
|
|
417
456
|
export interface ComponentParameter {
|
|
@@ -425,6 +464,7 @@ export interface ComponentParameter {
|
|
|
425
464
|
value: string[] | undefined;
|
|
426
465
|
}
|
|
427
466
|
/**
|
|
467
|
+
* @public
|
|
428
468
|
* <p> Configuration details of the component.</p>
|
|
429
469
|
*/
|
|
430
470
|
export interface ComponentConfiguration {
|
|
@@ -437,10 +477,14 @@ export interface ComponentConfiguration {
|
|
|
437
477
|
*/
|
|
438
478
|
parameters?: ComponentParameter[];
|
|
439
479
|
}
|
|
480
|
+
/**
|
|
481
|
+
* @public
|
|
482
|
+
*/
|
|
440
483
|
export declare enum ComponentFormat {
|
|
441
484
|
SHELL = "SHELL"
|
|
442
485
|
}
|
|
443
486
|
/**
|
|
487
|
+
* @public
|
|
444
488
|
* <p>A high-level summary of a component.</p>
|
|
445
489
|
*/
|
|
446
490
|
export interface ComponentSummary {
|
|
@@ -507,6 +551,7 @@ export interface ComponentSummary {
|
|
|
507
551
|
obfuscate?: boolean;
|
|
508
552
|
}
|
|
509
553
|
/**
|
|
554
|
+
* @public
|
|
510
555
|
* <p>The defining characteristics of a specific version of an Amazon Web Services TOE component.</p>
|
|
511
556
|
*/
|
|
512
557
|
export interface ComponentVersion {
|
|
@@ -584,6 +629,7 @@ export interface ComponentVersion {
|
|
|
584
629
|
dateCreated?: string;
|
|
585
630
|
}
|
|
586
631
|
/**
|
|
632
|
+
* @public
|
|
587
633
|
* <p>A container encapsulates the runtime environment for an application.</p>
|
|
588
634
|
*/
|
|
589
635
|
export interface Container {
|
|
@@ -596,10 +642,14 @@ export interface Container {
|
|
|
596
642
|
*/
|
|
597
643
|
imageUris?: string[];
|
|
598
644
|
}
|
|
645
|
+
/**
|
|
646
|
+
* @public
|
|
647
|
+
*/
|
|
599
648
|
export declare enum ContainerRepositoryService {
|
|
600
649
|
ECR = "ECR"
|
|
601
650
|
}
|
|
602
651
|
/**
|
|
652
|
+
* @public
|
|
603
653
|
* <p>The container repository where the output container image is stored.</p>
|
|
604
654
|
*/
|
|
605
655
|
export interface TargetContainerRepository {
|
|
@@ -613,6 +663,7 @@ export interface TargetContainerRepository {
|
|
|
613
663
|
repositoryName: string | undefined;
|
|
614
664
|
}
|
|
615
665
|
/**
|
|
666
|
+
* @public
|
|
616
667
|
* <p>Container distribution settings for encryption, licensing, and sharing in a specific Region.</p>
|
|
617
668
|
*/
|
|
618
669
|
export interface ContainerDistributionConfiguration {
|
|
@@ -629,9 +680,15 @@ export interface ContainerDistributionConfiguration {
|
|
|
629
680
|
*/
|
|
630
681
|
targetRepository: TargetContainerRepository | undefined;
|
|
631
682
|
}
|
|
683
|
+
/**
|
|
684
|
+
* @public
|
|
685
|
+
*/
|
|
632
686
|
export declare enum ContainerType {
|
|
633
687
|
DOCKER = "DOCKER"
|
|
634
688
|
}
|
|
689
|
+
/**
|
|
690
|
+
* @public
|
|
691
|
+
*/
|
|
635
692
|
export declare enum EbsVolumeType {
|
|
636
693
|
GP2 = "gp2",
|
|
637
694
|
GP3 = "gp3",
|
|
@@ -642,6 +699,7 @@ export declare enum EbsVolumeType {
|
|
|
642
699
|
STANDARD = "standard"
|
|
643
700
|
}
|
|
644
701
|
/**
|
|
702
|
+
* @public
|
|
645
703
|
* <p>Amazon EBS-specific block device mapping specifications.</p>
|
|
646
704
|
*/
|
|
647
705
|
export interface EbsInstanceBlockDeviceSpecification {
|
|
@@ -681,6 +739,7 @@ export interface EbsInstanceBlockDeviceSpecification {
|
|
|
681
739
|
throughput?: number;
|
|
682
740
|
}
|
|
683
741
|
/**
|
|
742
|
+
* @public
|
|
684
743
|
* <p>Defines block device mappings for the instance used to configure your image.</p>
|
|
685
744
|
*/
|
|
686
745
|
export interface InstanceBlockDeviceMapping {
|
|
@@ -702,6 +761,7 @@ export interface InstanceBlockDeviceMapping {
|
|
|
702
761
|
noDevice?: string;
|
|
703
762
|
}
|
|
704
763
|
/**
|
|
764
|
+
* @public
|
|
705
765
|
* <p>Defines a custom base AMI and block device mapping configurations of an instance
|
|
706
766
|
* used for building and testing container images.</p>
|
|
707
767
|
*/
|
|
@@ -717,6 +777,7 @@ export interface InstanceConfiguration {
|
|
|
717
777
|
blockDeviceMappings?: InstanceBlockDeviceMapping[];
|
|
718
778
|
}
|
|
719
779
|
/**
|
|
780
|
+
* @public
|
|
720
781
|
* <p>A container recipe.</p>
|
|
721
782
|
*/
|
|
722
783
|
export interface ContainerRecipe {
|
|
@@ -824,6 +885,7 @@ export interface ContainerRecipe {
|
|
|
824
885
|
targetRepository?: TargetContainerRepository;
|
|
825
886
|
}
|
|
826
887
|
/**
|
|
888
|
+
* @public
|
|
827
889
|
* <p>A summary of a container recipe</p>
|
|
828
890
|
*/
|
|
829
891
|
export interface ContainerRecipeSummary {
|
|
@@ -860,6 +922,9 @@ export interface ContainerRecipeSummary {
|
|
|
860
922
|
*/
|
|
861
923
|
tags?: Record<string, string>;
|
|
862
924
|
}
|
|
925
|
+
/**
|
|
926
|
+
* @public
|
|
927
|
+
*/
|
|
863
928
|
export interface CreateComponentRequest {
|
|
864
929
|
/**
|
|
865
930
|
* <p>The name of the component.</p>
|
|
@@ -928,6 +993,9 @@ export interface CreateComponentRequest {
|
|
|
928
993
|
*/
|
|
929
994
|
clientToken?: string;
|
|
930
995
|
}
|
|
996
|
+
/**
|
|
997
|
+
* @public
|
|
998
|
+
*/
|
|
931
999
|
export interface CreateComponentResponse {
|
|
932
1000
|
/**
|
|
933
1001
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -943,6 +1011,7 @@ export interface CreateComponentResponse {
|
|
|
943
1011
|
componentBuildVersionArn?: string;
|
|
944
1012
|
}
|
|
945
1013
|
/**
|
|
1014
|
+
* @public
|
|
946
1015
|
* <p>You have specified two or more mutually exclusive parameters. Review the error message for
|
|
947
1016
|
* details.</p>
|
|
948
1017
|
*/
|
|
@@ -955,6 +1024,7 @@ export declare class InvalidParameterCombinationException extends __BaseExceptio
|
|
|
955
1024
|
constructor(opts: __ExceptionOptionType<InvalidParameterCombinationException, __BaseException>);
|
|
956
1025
|
}
|
|
957
1026
|
/**
|
|
1027
|
+
* @public
|
|
958
1028
|
* <p>Your version number is out of bounds or does not follow the required syntax.</p>
|
|
959
1029
|
*/
|
|
960
1030
|
export declare class InvalidVersionNumberException extends __BaseException {
|
|
@@ -966,6 +1036,7 @@ export declare class InvalidVersionNumberException extends __BaseException {
|
|
|
966
1036
|
constructor(opts: __ExceptionOptionType<InvalidVersionNumberException, __BaseException>);
|
|
967
1037
|
}
|
|
968
1038
|
/**
|
|
1039
|
+
* @public
|
|
969
1040
|
* <p>You have exceeded the number of permitted resources or operations for this service. For service quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/imagebuilder.html#limits_imagebuilder">EC2 Image Builder endpoints and quotas</a>.</p>
|
|
970
1041
|
*/
|
|
971
1042
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -976,6 +1047,9 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
976
1047
|
*/
|
|
977
1048
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
978
1049
|
}
|
|
1050
|
+
/**
|
|
1051
|
+
* @public
|
|
1052
|
+
*/
|
|
979
1053
|
export interface CreateContainerRecipeRequest {
|
|
980
1054
|
/**
|
|
981
1055
|
* <p>The type of container to create.</p>
|
|
@@ -1055,6 +1129,9 @@ export interface CreateContainerRecipeRequest {
|
|
|
1055
1129
|
*/
|
|
1056
1130
|
clientToken?: string;
|
|
1057
1131
|
}
|
|
1132
|
+
/**
|
|
1133
|
+
* @public
|
|
1134
|
+
*/
|
|
1058
1135
|
export interface CreateContainerRecipeResponse {
|
|
1059
1136
|
/**
|
|
1060
1137
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1070,6 +1147,7 @@ export interface CreateContainerRecipeResponse {
|
|
|
1070
1147
|
containerRecipeArn?: string;
|
|
1071
1148
|
}
|
|
1072
1149
|
/**
|
|
1150
|
+
* @public
|
|
1073
1151
|
* <p>The resource that you are trying to create already exists.</p>
|
|
1074
1152
|
*/
|
|
1075
1153
|
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
@@ -1081,6 +1159,7 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
1081
1159
|
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
1082
1160
|
}
|
|
1083
1161
|
/**
|
|
1162
|
+
* @public
|
|
1084
1163
|
* <p>Identifies the launch template that the associated Windows AMI uses for
|
|
1085
1164
|
* launching an instance when faster launching is enabled.</p>
|
|
1086
1165
|
* <note>
|
|
@@ -1103,6 +1182,7 @@ export interface FastLaunchLaunchTemplateSpecification {
|
|
|
1103
1182
|
launchTemplateVersion?: string;
|
|
1104
1183
|
}
|
|
1105
1184
|
/**
|
|
1185
|
+
* @public
|
|
1106
1186
|
* <p>Configuration settings for creating and managing pre-provisioned snapshots
|
|
1107
1187
|
* for a fast-launch enabled Windows AMI.</p>
|
|
1108
1188
|
*/
|
|
@@ -1114,6 +1194,7 @@ export interface FastLaunchSnapshotConfiguration {
|
|
|
1114
1194
|
targetResourceCount?: number;
|
|
1115
1195
|
}
|
|
1116
1196
|
/**
|
|
1197
|
+
* @public
|
|
1117
1198
|
* <p>Define and configure faster launching for output Windows AMIs.</p>
|
|
1118
1199
|
*/
|
|
1119
1200
|
export interface FastLaunchConfiguration {
|
|
@@ -1145,6 +1226,7 @@ export interface FastLaunchConfiguration {
|
|
|
1145
1226
|
accountId?: string;
|
|
1146
1227
|
}
|
|
1147
1228
|
/**
|
|
1229
|
+
* @public
|
|
1148
1230
|
* <p>Identifies an Amazon EC2 launch template to use for a specific account.</p>
|
|
1149
1231
|
*/
|
|
1150
1232
|
export interface LaunchTemplateConfiguration {
|
|
@@ -1161,12 +1243,16 @@ export interface LaunchTemplateConfiguration {
|
|
|
1161
1243
|
*/
|
|
1162
1244
|
setDefaultVersion?: boolean;
|
|
1163
1245
|
}
|
|
1246
|
+
/**
|
|
1247
|
+
* @public
|
|
1248
|
+
*/
|
|
1164
1249
|
export declare enum DiskImageFormat {
|
|
1165
1250
|
RAW = "RAW",
|
|
1166
1251
|
VHD = "VHD",
|
|
1167
1252
|
VMDK = "VMDK"
|
|
1168
1253
|
}
|
|
1169
1254
|
/**
|
|
1255
|
+
* @public
|
|
1170
1256
|
* <p>Properties that configure export from your build instance
|
|
1171
1257
|
* to a compatible file format for your VM.</p>
|
|
1172
1258
|
*/
|
|
@@ -1208,6 +1294,7 @@ export interface S3ExportConfiguration {
|
|
|
1208
1294
|
s3Prefix?: string;
|
|
1209
1295
|
}
|
|
1210
1296
|
/**
|
|
1297
|
+
* @public
|
|
1211
1298
|
* <p> Defines the settings for a specific Region.</p>
|
|
1212
1299
|
*/
|
|
1213
1300
|
export interface Distribution {
|
|
@@ -1244,6 +1331,9 @@ export interface Distribution {
|
|
|
1244
1331
|
*/
|
|
1245
1332
|
fastLaunchConfigurations?: FastLaunchConfiguration[];
|
|
1246
1333
|
}
|
|
1334
|
+
/**
|
|
1335
|
+
* @public
|
|
1336
|
+
*/
|
|
1247
1337
|
export interface CreateDistributionConfigurationRequest {
|
|
1248
1338
|
/**
|
|
1249
1339
|
* <p> The name of the distribution configuration.</p>
|
|
@@ -1266,6 +1356,9 @@ export interface CreateDistributionConfigurationRequest {
|
|
|
1266
1356
|
*/
|
|
1267
1357
|
clientToken?: string;
|
|
1268
1358
|
}
|
|
1359
|
+
/**
|
|
1360
|
+
* @public
|
|
1361
|
+
*/
|
|
1269
1362
|
export interface CreateDistributionConfigurationResponse {
|
|
1270
1363
|
/**
|
|
1271
1364
|
* <p> The request ID that uniquely identifies this request.</p>
|
|
@@ -1282,6 +1375,7 @@ export interface CreateDistributionConfigurationResponse {
|
|
|
1282
1375
|
distributionConfigurationArn?: string;
|
|
1283
1376
|
}
|
|
1284
1377
|
/**
|
|
1378
|
+
* @public
|
|
1285
1379
|
* <p>Configure image tests for your pipeline build. Tests run after building
|
|
1286
1380
|
* the image, to verify that the AMI or container image is valid before
|
|
1287
1381
|
* distributing it.</p>
|
|
@@ -1300,6 +1394,9 @@ export interface ImageTestsConfiguration {
|
|
|
1300
1394
|
*/
|
|
1301
1395
|
timeoutMinutes?: number;
|
|
1302
1396
|
}
|
|
1397
|
+
/**
|
|
1398
|
+
* @public
|
|
1399
|
+
*/
|
|
1303
1400
|
export interface CreateImageRequest {
|
|
1304
1401
|
/**
|
|
1305
1402
|
* <p> The Amazon Resource Name (ARN) of the image recipe that defines how images are
|
|
@@ -1339,6 +1436,9 @@ export interface CreateImageRequest {
|
|
|
1339
1436
|
*/
|
|
1340
1437
|
clientToken?: string;
|
|
1341
1438
|
}
|
|
1439
|
+
/**
|
|
1440
|
+
* @public
|
|
1441
|
+
*/
|
|
1342
1442
|
export interface CreateImageResponse {
|
|
1343
1443
|
/**
|
|
1344
1444
|
* <p> The request ID that uniquely identifies this request.</p>
|
|
@@ -1353,11 +1453,15 @@ export interface CreateImageResponse {
|
|
|
1353
1453
|
*/
|
|
1354
1454
|
imageBuildVersionArn?: string;
|
|
1355
1455
|
}
|
|
1456
|
+
/**
|
|
1457
|
+
* @public
|
|
1458
|
+
*/
|
|
1356
1459
|
export declare enum PipelineExecutionStartCondition {
|
|
1357
1460
|
EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE = "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE",
|
|
1358
1461
|
EXPRESSION_MATCH_ONLY = "EXPRESSION_MATCH_ONLY"
|
|
1359
1462
|
}
|
|
1360
1463
|
/**
|
|
1464
|
+
* @public
|
|
1361
1465
|
* <p>A schedule configures how often and when a pipeline will automatically create a new image.</p>
|
|
1362
1466
|
*/
|
|
1363
1467
|
export interface Schedule {
|
|
@@ -1387,10 +1491,16 @@ export interface Schedule {
|
|
|
1387
1491
|
*/
|
|
1388
1492
|
pipelineExecutionStartCondition?: PipelineExecutionStartCondition | string;
|
|
1389
1493
|
}
|
|
1494
|
+
/**
|
|
1495
|
+
* @public
|
|
1496
|
+
*/
|
|
1390
1497
|
export declare enum PipelineStatus {
|
|
1391
1498
|
DISABLED = "DISABLED",
|
|
1392
1499
|
ENABLED = "ENABLED"
|
|
1393
1500
|
}
|
|
1501
|
+
/**
|
|
1502
|
+
* @public
|
|
1503
|
+
*/
|
|
1394
1504
|
export interface CreateImagePipelineRequest {
|
|
1395
1505
|
/**
|
|
1396
1506
|
* <p> The name of the image pipeline.</p>
|
|
@@ -1446,6 +1556,9 @@ export interface CreateImagePipelineRequest {
|
|
|
1446
1556
|
*/
|
|
1447
1557
|
clientToken?: string;
|
|
1448
1558
|
}
|
|
1559
|
+
/**
|
|
1560
|
+
* @public
|
|
1561
|
+
*/
|
|
1449
1562
|
export interface CreateImagePipelineResponse {
|
|
1450
1563
|
/**
|
|
1451
1564
|
* <p> The request ID that uniquely identifies this request.</p>
|
|
@@ -1460,6 +1573,9 @@ export interface CreateImagePipelineResponse {
|
|
|
1460
1573
|
*/
|
|
1461
1574
|
imagePipelineArn?: string;
|
|
1462
1575
|
}
|
|
1576
|
+
/**
|
|
1577
|
+
* @public
|
|
1578
|
+
*/
|
|
1463
1579
|
export interface CreateImageRecipeRequest {
|
|
1464
1580
|
/**
|
|
1465
1581
|
* <p> The name of the image recipe.</p>
|
|
@@ -1519,6 +1635,9 @@ export interface CreateImageRecipeRequest {
|
|
|
1519
1635
|
*/
|
|
1520
1636
|
clientToken?: string;
|
|
1521
1637
|
}
|
|
1638
|
+
/**
|
|
1639
|
+
* @public
|
|
1640
|
+
*/
|
|
1522
1641
|
export interface CreateImageRecipeResponse {
|
|
1523
1642
|
/**
|
|
1524
1643
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1534,6 +1653,7 @@ export interface CreateImageRecipeResponse {
|
|
|
1534
1653
|
imageRecipeArn?: string;
|
|
1535
1654
|
}
|
|
1536
1655
|
/**
|
|
1656
|
+
* @public
|
|
1537
1657
|
* <p>The instance metadata options that apply to the HTTP requests that
|
|
1538
1658
|
* pipeline builds use to launch EC2 build and test instances. For more
|
|
1539
1659
|
* information about instance metadata options, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-instance-metadata-options.html">Configure
|
|
@@ -1575,6 +1695,7 @@ export interface InstanceMetadataOptions {
|
|
|
1575
1695
|
httpPutResponseHopLimit?: number;
|
|
1576
1696
|
}
|
|
1577
1697
|
/**
|
|
1698
|
+
* @public
|
|
1578
1699
|
* <p>Amazon S3 logging configuration.</p>
|
|
1579
1700
|
*/
|
|
1580
1701
|
export interface S3Logs {
|
|
@@ -1588,6 +1709,7 @@ export interface S3Logs {
|
|
|
1588
1709
|
s3KeyPrefix?: string;
|
|
1589
1710
|
}
|
|
1590
1711
|
/**
|
|
1712
|
+
* @public
|
|
1591
1713
|
* <p>Logging configuration defines where Image Builder uploads your logs.</p>
|
|
1592
1714
|
*/
|
|
1593
1715
|
export interface Logging {
|
|
@@ -1596,6 +1718,9 @@ export interface Logging {
|
|
|
1596
1718
|
*/
|
|
1597
1719
|
s3Logs?: S3Logs;
|
|
1598
1720
|
}
|
|
1721
|
+
/**
|
|
1722
|
+
* @public
|
|
1723
|
+
*/
|
|
1599
1724
|
export interface CreateInfrastructureConfigurationRequest {
|
|
1600
1725
|
/**
|
|
1601
1726
|
* <p>The name of the infrastructure configuration.</p>
|
|
@@ -1665,6 +1790,9 @@ export interface CreateInfrastructureConfigurationRequest {
|
|
|
1665
1790
|
*/
|
|
1666
1791
|
clientToken?: string;
|
|
1667
1792
|
}
|
|
1793
|
+
/**
|
|
1794
|
+
* @public
|
|
1795
|
+
*/
|
|
1668
1796
|
export interface CreateInfrastructureConfigurationResponse {
|
|
1669
1797
|
/**
|
|
1670
1798
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1680,12 +1808,18 @@ export interface CreateInfrastructureConfigurationResponse {
|
|
|
1680
1808
|
*/
|
|
1681
1809
|
infrastructureConfigurationArn?: string;
|
|
1682
1810
|
}
|
|
1811
|
+
/**
|
|
1812
|
+
* @public
|
|
1813
|
+
*/
|
|
1683
1814
|
export interface DeleteComponentRequest {
|
|
1684
1815
|
/**
|
|
1685
1816
|
* <p>The Amazon Resource Name (ARN) of the component build version to delete.</p>
|
|
1686
1817
|
*/
|
|
1687
1818
|
componentBuildVersionArn: string | undefined;
|
|
1688
1819
|
}
|
|
1820
|
+
/**
|
|
1821
|
+
* @public
|
|
1822
|
+
*/
|
|
1689
1823
|
export interface DeleteComponentResponse {
|
|
1690
1824
|
/**
|
|
1691
1825
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1697,6 +1831,7 @@ export interface DeleteComponentResponse {
|
|
|
1697
1831
|
componentBuildVersionArn?: string;
|
|
1698
1832
|
}
|
|
1699
1833
|
/**
|
|
1834
|
+
* @public
|
|
1700
1835
|
* <p>You have attempted to mutate or delete a resource with a dependency that prohibits this
|
|
1701
1836
|
* action. See the error message for more details.</p>
|
|
1702
1837
|
*/
|
|
@@ -1708,12 +1843,18 @@ export declare class ResourceDependencyException extends __BaseException {
|
|
|
1708
1843
|
*/
|
|
1709
1844
|
constructor(opts: __ExceptionOptionType<ResourceDependencyException, __BaseException>);
|
|
1710
1845
|
}
|
|
1846
|
+
/**
|
|
1847
|
+
* @public
|
|
1848
|
+
*/
|
|
1711
1849
|
export interface DeleteContainerRecipeRequest {
|
|
1712
1850
|
/**
|
|
1713
1851
|
* <p>The Amazon Resource Name (ARN) of the container recipe to delete.</p>
|
|
1714
1852
|
*/
|
|
1715
1853
|
containerRecipeArn: string | undefined;
|
|
1716
1854
|
}
|
|
1855
|
+
/**
|
|
1856
|
+
* @public
|
|
1857
|
+
*/
|
|
1717
1858
|
export interface DeleteContainerRecipeResponse {
|
|
1718
1859
|
/**
|
|
1719
1860
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1724,12 +1865,18 @@ export interface DeleteContainerRecipeResponse {
|
|
|
1724
1865
|
*/
|
|
1725
1866
|
containerRecipeArn?: string;
|
|
1726
1867
|
}
|
|
1868
|
+
/**
|
|
1869
|
+
* @public
|
|
1870
|
+
*/
|
|
1727
1871
|
export interface DeleteDistributionConfigurationRequest {
|
|
1728
1872
|
/**
|
|
1729
1873
|
* <p>The Amazon Resource Name (ARN) of the distribution configuration to delete.</p>
|
|
1730
1874
|
*/
|
|
1731
1875
|
distributionConfigurationArn: string | undefined;
|
|
1732
1876
|
}
|
|
1877
|
+
/**
|
|
1878
|
+
* @public
|
|
1879
|
+
*/
|
|
1733
1880
|
export interface DeleteDistributionConfigurationResponse {
|
|
1734
1881
|
/**
|
|
1735
1882
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1740,12 +1887,18 @@ export interface DeleteDistributionConfigurationResponse {
|
|
|
1740
1887
|
*/
|
|
1741
1888
|
distributionConfigurationArn?: string;
|
|
1742
1889
|
}
|
|
1890
|
+
/**
|
|
1891
|
+
* @public
|
|
1892
|
+
*/
|
|
1743
1893
|
export interface DeleteImageRequest {
|
|
1744
1894
|
/**
|
|
1745
1895
|
* <p>The Amazon Resource Name (ARN) of the Image Builder image resource to delete.</p>
|
|
1746
1896
|
*/
|
|
1747
1897
|
imageBuildVersionArn: string | undefined;
|
|
1748
1898
|
}
|
|
1899
|
+
/**
|
|
1900
|
+
* @public
|
|
1901
|
+
*/
|
|
1749
1902
|
export interface DeleteImageResponse {
|
|
1750
1903
|
/**
|
|
1751
1904
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1756,12 +1909,18 @@ export interface DeleteImageResponse {
|
|
|
1756
1909
|
*/
|
|
1757
1910
|
imageBuildVersionArn?: string;
|
|
1758
1911
|
}
|
|
1912
|
+
/**
|
|
1913
|
+
* @public
|
|
1914
|
+
*/
|
|
1759
1915
|
export interface DeleteImagePipelineRequest {
|
|
1760
1916
|
/**
|
|
1761
1917
|
* <p>The Amazon Resource Name (ARN) of the image pipeline to delete.</p>
|
|
1762
1918
|
*/
|
|
1763
1919
|
imagePipelineArn: string | undefined;
|
|
1764
1920
|
}
|
|
1921
|
+
/**
|
|
1922
|
+
* @public
|
|
1923
|
+
*/
|
|
1765
1924
|
export interface DeleteImagePipelineResponse {
|
|
1766
1925
|
/**
|
|
1767
1926
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1772,12 +1931,18 @@ export interface DeleteImagePipelineResponse {
|
|
|
1772
1931
|
*/
|
|
1773
1932
|
imagePipelineArn?: string;
|
|
1774
1933
|
}
|
|
1934
|
+
/**
|
|
1935
|
+
* @public
|
|
1936
|
+
*/
|
|
1775
1937
|
export interface DeleteImageRecipeRequest {
|
|
1776
1938
|
/**
|
|
1777
1939
|
* <p>The Amazon Resource Name (ARN) of the image recipe to delete.</p>
|
|
1778
1940
|
*/
|
|
1779
1941
|
imageRecipeArn: string | undefined;
|
|
1780
1942
|
}
|
|
1943
|
+
/**
|
|
1944
|
+
* @public
|
|
1945
|
+
*/
|
|
1781
1946
|
export interface DeleteImageRecipeResponse {
|
|
1782
1947
|
/**
|
|
1783
1948
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1788,12 +1953,18 @@ export interface DeleteImageRecipeResponse {
|
|
|
1788
1953
|
*/
|
|
1789
1954
|
imageRecipeArn?: string;
|
|
1790
1955
|
}
|
|
1956
|
+
/**
|
|
1957
|
+
* @public
|
|
1958
|
+
*/
|
|
1791
1959
|
export interface DeleteInfrastructureConfigurationRequest {
|
|
1792
1960
|
/**
|
|
1793
1961
|
* <p>The Amazon Resource Name (ARN) of the infrastructure configuration to delete.</p>
|
|
1794
1962
|
*/
|
|
1795
1963
|
infrastructureConfigurationArn: string | undefined;
|
|
1796
1964
|
}
|
|
1965
|
+
/**
|
|
1966
|
+
* @public
|
|
1967
|
+
*/
|
|
1797
1968
|
export interface DeleteInfrastructureConfigurationResponse {
|
|
1798
1969
|
/**
|
|
1799
1970
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1805,6 +1976,7 @@ export interface DeleteInfrastructureConfigurationResponse {
|
|
|
1805
1976
|
infrastructureConfigurationArn?: string;
|
|
1806
1977
|
}
|
|
1807
1978
|
/**
|
|
1979
|
+
* @public
|
|
1808
1980
|
* <p>A distribution configuration.</p>
|
|
1809
1981
|
*/
|
|
1810
1982
|
export interface DistributionConfiguration {
|
|
@@ -1843,6 +2015,7 @@ export interface DistributionConfiguration {
|
|
|
1843
2015
|
tags?: Record<string, string>;
|
|
1844
2016
|
}
|
|
1845
2017
|
/**
|
|
2018
|
+
* @public
|
|
1846
2019
|
* <p>A high-level overview of a distribution configuration.</p>
|
|
1847
2020
|
*/
|
|
1848
2021
|
export interface DistributionConfigurationSummary {
|
|
@@ -1876,6 +2049,7 @@ export interface DistributionConfigurationSummary {
|
|
|
1876
2049
|
regions?: string[];
|
|
1877
2050
|
}
|
|
1878
2051
|
/**
|
|
2052
|
+
* @public
|
|
1879
2053
|
* <p>A filter name and value pair that is used to return a more specific list of results from a
|
|
1880
2054
|
* list operation. Filters can be used to match a set of resources by specific criteria, such as
|
|
1881
2055
|
* tags, attributes, or IDs.</p>
|
|
@@ -1890,6 +2064,9 @@ export interface Filter {
|
|
|
1890
2064
|
*/
|
|
1891
2065
|
values?: string[];
|
|
1892
2066
|
}
|
|
2067
|
+
/**
|
|
2068
|
+
* @public
|
|
2069
|
+
*/
|
|
1893
2070
|
export interface GetComponentRequest {
|
|
1894
2071
|
/**
|
|
1895
2072
|
* <p>The Amazon Resource Name (ARN) of the component that you want to retrieve. Regex requires
|
|
@@ -1897,6 +2074,9 @@ export interface GetComponentRequest {
|
|
|
1897
2074
|
*/
|
|
1898
2075
|
componentBuildVersionArn: string | undefined;
|
|
1899
2076
|
}
|
|
2077
|
+
/**
|
|
2078
|
+
* @public
|
|
2079
|
+
*/
|
|
1900
2080
|
export interface GetComponentResponse {
|
|
1901
2081
|
/**
|
|
1902
2082
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1907,12 +2087,18 @@ export interface GetComponentResponse {
|
|
|
1907
2087
|
*/
|
|
1908
2088
|
component?: Component;
|
|
1909
2089
|
}
|
|
2090
|
+
/**
|
|
2091
|
+
* @public
|
|
2092
|
+
*/
|
|
1910
2093
|
export interface GetComponentPolicyRequest {
|
|
1911
2094
|
/**
|
|
1912
2095
|
* <p>The Amazon Resource Name (ARN) of the component whose policy you want to retrieve.</p>
|
|
1913
2096
|
*/
|
|
1914
2097
|
componentArn: string | undefined;
|
|
1915
2098
|
}
|
|
2099
|
+
/**
|
|
2100
|
+
* @public
|
|
2101
|
+
*/
|
|
1916
2102
|
export interface GetComponentPolicyResponse {
|
|
1917
2103
|
/**
|
|
1918
2104
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1924,6 +2110,7 @@ export interface GetComponentPolicyResponse {
|
|
|
1924
2110
|
policy?: string;
|
|
1925
2111
|
}
|
|
1926
2112
|
/**
|
|
2113
|
+
* @public
|
|
1927
2114
|
* <p>At least one of the resources referenced by your request does not exist.</p>
|
|
1928
2115
|
*/
|
|
1929
2116
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -1934,12 +2121,18 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
1934
2121
|
*/
|
|
1935
2122
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
1936
2123
|
}
|
|
2124
|
+
/**
|
|
2125
|
+
* @public
|
|
2126
|
+
*/
|
|
1937
2127
|
export interface GetContainerRecipeRequest {
|
|
1938
2128
|
/**
|
|
1939
2129
|
* <p>The Amazon Resource Name (ARN) of the container recipe to retrieve.</p>
|
|
1940
2130
|
*/
|
|
1941
2131
|
containerRecipeArn: string | undefined;
|
|
1942
2132
|
}
|
|
2133
|
+
/**
|
|
2134
|
+
* @public
|
|
2135
|
+
*/
|
|
1943
2136
|
export interface GetContainerRecipeResponse {
|
|
1944
2137
|
/**
|
|
1945
2138
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1950,12 +2143,18 @@ export interface GetContainerRecipeResponse {
|
|
|
1950
2143
|
*/
|
|
1951
2144
|
containerRecipe?: ContainerRecipe;
|
|
1952
2145
|
}
|
|
2146
|
+
/**
|
|
2147
|
+
* @public
|
|
2148
|
+
*/
|
|
1953
2149
|
export interface GetContainerRecipePolicyRequest {
|
|
1954
2150
|
/**
|
|
1955
2151
|
* <p>The Amazon Resource Name (ARN) of the container recipe for the policy being requested.</p>
|
|
1956
2152
|
*/
|
|
1957
2153
|
containerRecipeArn: string | undefined;
|
|
1958
2154
|
}
|
|
2155
|
+
/**
|
|
2156
|
+
* @public
|
|
2157
|
+
*/
|
|
1959
2158
|
export interface GetContainerRecipePolicyResponse {
|
|
1960
2159
|
/**
|
|
1961
2160
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1966,6 +2165,9 @@ export interface GetContainerRecipePolicyResponse {
|
|
|
1966
2165
|
*/
|
|
1967
2166
|
policy?: string;
|
|
1968
2167
|
}
|
|
2168
|
+
/**
|
|
2169
|
+
* @public
|
|
2170
|
+
*/
|
|
1969
2171
|
export interface GetDistributionConfigurationRequest {
|
|
1970
2172
|
/**
|
|
1971
2173
|
* <p>The Amazon Resource Name (ARN) of the distribution configuration that you want to
|
|
@@ -1973,6 +2175,9 @@ export interface GetDistributionConfigurationRequest {
|
|
|
1973
2175
|
*/
|
|
1974
2176
|
distributionConfigurationArn: string | undefined;
|
|
1975
2177
|
}
|
|
2178
|
+
/**
|
|
2179
|
+
* @public
|
|
2180
|
+
*/
|
|
1976
2181
|
export interface GetDistributionConfigurationResponse {
|
|
1977
2182
|
/**
|
|
1978
2183
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -1983,17 +2188,24 @@ export interface GetDistributionConfigurationResponse {
|
|
|
1983
2188
|
*/
|
|
1984
2189
|
distributionConfiguration?: DistributionConfiguration;
|
|
1985
2190
|
}
|
|
2191
|
+
/**
|
|
2192
|
+
* @public
|
|
2193
|
+
*/
|
|
1986
2194
|
export interface GetImageRequest {
|
|
1987
2195
|
/**
|
|
1988
2196
|
* <p>The Amazon Resource Name (ARN) of the image that you want to retrieve.</p>
|
|
1989
2197
|
*/
|
|
1990
2198
|
imageBuildVersionArn: string | undefined;
|
|
1991
2199
|
}
|
|
2200
|
+
/**
|
|
2201
|
+
* @public
|
|
2202
|
+
*/
|
|
1992
2203
|
export declare enum ImageType {
|
|
1993
2204
|
AMI = "AMI",
|
|
1994
2205
|
DOCKER = "DOCKER"
|
|
1995
2206
|
}
|
|
1996
2207
|
/**
|
|
2208
|
+
* @public
|
|
1997
2209
|
* <p>An image recipe.</p>
|
|
1998
2210
|
*/
|
|
1999
2211
|
export interface ImageRecipe {
|
|
@@ -2059,6 +2271,9 @@ export interface ImageRecipe {
|
|
|
2059
2271
|
*/
|
|
2060
2272
|
additionalInstanceConfiguration?: AdditionalInstanceConfiguration;
|
|
2061
2273
|
}
|
|
2274
|
+
/**
|
|
2275
|
+
* @public
|
|
2276
|
+
*/
|
|
2062
2277
|
export declare enum ImageSource {
|
|
2063
2278
|
AMAZON_MANAGED = "AMAZON_MANAGED",
|
|
2064
2279
|
AWS_MARKETPLACE = "AWS_MARKETPLACE",
|
|
@@ -2066,6 +2281,7 @@ export declare enum ImageSource {
|
|
|
2066
2281
|
IMPORTED = "IMPORTED"
|
|
2067
2282
|
}
|
|
2068
2283
|
/**
|
|
2284
|
+
* @public
|
|
2069
2285
|
* <p>Details of the infrastructure configuration.</p>
|
|
2070
2286
|
*/
|
|
2071
2287
|
export interface InfrastructureConfiguration {
|
|
@@ -2141,6 +2357,7 @@ export interface InfrastructureConfiguration {
|
|
|
2141
2357
|
tags?: Record<string, string>;
|
|
2142
2358
|
}
|
|
2143
2359
|
/**
|
|
2360
|
+
* @public
|
|
2144
2361
|
* <p>The resources produced by this image.</p>
|
|
2145
2362
|
*/
|
|
2146
2363
|
export interface OutputResources {
|
|
@@ -2154,6 +2371,7 @@ export interface OutputResources {
|
|
|
2154
2371
|
containers?: Container[];
|
|
2155
2372
|
}
|
|
2156
2373
|
/**
|
|
2374
|
+
* @public
|
|
2157
2375
|
* <p>An Image Builder image. You must specify exactly one recipe for the image – either
|
|
2158
2376
|
* a container recipe (<code>containerRecipe</code>), which creates a container
|
|
2159
2377
|
* image, or an image recipe (<code>imageRecipe</code>), which creates an AMI.</p>
|
|
@@ -2295,6 +2513,9 @@ export interface Image {
|
|
|
2295
2513
|
*/
|
|
2296
2514
|
imageSource?: ImageSource | string;
|
|
2297
2515
|
}
|
|
2516
|
+
/**
|
|
2517
|
+
* @public
|
|
2518
|
+
*/
|
|
2298
2519
|
export interface GetImageResponse {
|
|
2299
2520
|
/**
|
|
2300
2521
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -2305,6 +2526,9 @@ export interface GetImageResponse {
|
|
|
2305
2526
|
*/
|
|
2306
2527
|
image?: Image;
|
|
2307
2528
|
}
|
|
2529
|
+
/**
|
|
2530
|
+
* @public
|
|
2531
|
+
*/
|
|
2308
2532
|
export interface GetImagePipelineRequest {
|
|
2309
2533
|
/**
|
|
2310
2534
|
* <p>The Amazon Resource Name (ARN) of the image pipeline that you want to retrieve.</p>
|
|
@@ -2312,6 +2536,7 @@ export interface GetImagePipelineRequest {
|
|
|
2312
2536
|
imagePipelineArn: string | undefined;
|
|
2313
2537
|
}
|
|
2314
2538
|
/**
|
|
2539
|
+
* @public
|
|
2315
2540
|
* <p>Details of an image pipeline.</p>
|
|
2316
2541
|
*/
|
|
2317
2542
|
export interface ImagePipeline {
|
|
@@ -2389,6 +2614,9 @@ export interface ImagePipeline {
|
|
|
2389
2614
|
*/
|
|
2390
2615
|
tags?: Record<string, string>;
|
|
2391
2616
|
}
|
|
2617
|
+
/**
|
|
2618
|
+
* @public
|
|
2619
|
+
*/
|
|
2392
2620
|
export interface GetImagePipelineResponse {
|
|
2393
2621
|
/**
|
|
2394
2622
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -2399,12 +2627,18 @@ export interface GetImagePipelineResponse {
|
|
|
2399
2627
|
*/
|
|
2400
2628
|
imagePipeline?: ImagePipeline;
|
|
2401
2629
|
}
|
|
2630
|
+
/**
|
|
2631
|
+
* @public
|
|
2632
|
+
*/
|
|
2402
2633
|
export interface GetImagePolicyRequest {
|
|
2403
2634
|
/**
|
|
2404
2635
|
* <p>The Amazon Resource Name (ARN) of the image whose policy you want to retrieve.</p>
|
|
2405
2636
|
*/
|
|
2406
2637
|
imageArn: string | undefined;
|
|
2407
2638
|
}
|
|
2639
|
+
/**
|
|
2640
|
+
* @public
|
|
2641
|
+
*/
|
|
2408
2642
|
export interface GetImagePolicyResponse {
|
|
2409
2643
|
/**
|
|
2410
2644
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -2415,12 +2649,18 @@ export interface GetImagePolicyResponse {
|
|
|
2415
2649
|
*/
|
|
2416
2650
|
policy?: string;
|
|
2417
2651
|
}
|
|
2652
|
+
/**
|
|
2653
|
+
* @public
|
|
2654
|
+
*/
|
|
2418
2655
|
export interface GetImageRecipeRequest {
|
|
2419
2656
|
/**
|
|
2420
2657
|
* <p>The Amazon Resource Name (ARN) of the image recipe that you want to retrieve.</p>
|
|
2421
2658
|
*/
|
|
2422
2659
|
imageRecipeArn: string | undefined;
|
|
2423
2660
|
}
|
|
2661
|
+
/**
|
|
2662
|
+
* @public
|
|
2663
|
+
*/
|
|
2424
2664
|
export interface GetImageRecipeResponse {
|
|
2425
2665
|
/**
|
|
2426
2666
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -2431,12 +2671,18 @@ export interface GetImageRecipeResponse {
|
|
|
2431
2671
|
*/
|
|
2432
2672
|
imageRecipe?: ImageRecipe;
|
|
2433
2673
|
}
|
|
2674
|
+
/**
|
|
2675
|
+
* @public
|
|
2676
|
+
*/
|
|
2434
2677
|
export interface GetImageRecipePolicyRequest {
|
|
2435
2678
|
/**
|
|
2436
2679
|
* <p>The Amazon Resource Name (ARN) of the image recipe whose policy you want to retrieve.</p>
|
|
2437
2680
|
*/
|
|
2438
2681
|
imageRecipeArn: string | undefined;
|
|
2439
2682
|
}
|
|
2683
|
+
/**
|
|
2684
|
+
* @public
|
|
2685
|
+
*/
|
|
2440
2686
|
export interface GetImageRecipePolicyResponse {
|
|
2441
2687
|
/**
|
|
2442
2688
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -2448,6 +2694,7 @@ export interface GetImageRecipePolicyResponse {
|
|
|
2448
2694
|
policy?: string;
|
|
2449
2695
|
}
|
|
2450
2696
|
/**
|
|
2697
|
+
* @public
|
|
2451
2698
|
* <p> GetInfrastructureConfiguration request object.</p>
|
|
2452
2699
|
*/
|
|
2453
2700
|
export interface GetInfrastructureConfigurationRequest {
|
|
@@ -2458,6 +2705,7 @@ export interface GetInfrastructureConfigurationRequest {
|
|
|
2458
2705
|
infrastructureConfigurationArn: string | undefined;
|
|
2459
2706
|
}
|
|
2460
2707
|
/**
|
|
2708
|
+
* @public
|
|
2461
2709
|
* <p>GetInfrastructureConfiguration response object.</p>
|
|
2462
2710
|
*/
|
|
2463
2711
|
export interface GetInfrastructureConfigurationResponse {
|
|
@@ -2470,6 +2718,9 @@ export interface GetInfrastructureConfigurationResponse {
|
|
|
2470
2718
|
*/
|
|
2471
2719
|
infrastructureConfiguration?: InfrastructureConfiguration;
|
|
2472
2720
|
}
|
|
2721
|
+
/**
|
|
2722
|
+
* @public
|
|
2723
|
+
*/
|
|
2473
2724
|
export interface ImportComponentRequest {
|
|
2474
2725
|
/**
|
|
2475
2726
|
* <p> The name of the component.</p>
|
|
@@ -2535,6 +2786,9 @@ export interface ImportComponentRequest {
|
|
|
2535
2786
|
*/
|
|
2536
2787
|
clientToken?: string;
|
|
2537
2788
|
}
|
|
2789
|
+
/**
|
|
2790
|
+
* @public
|
|
2791
|
+
*/
|
|
2538
2792
|
export interface ImportComponentResponse {
|
|
2539
2793
|
/**
|
|
2540
2794
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -2549,6 +2803,9 @@ export interface ImportComponentResponse {
|
|
|
2549
2803
|
*/
|
|
2550
2804
|
componentBuildVersionArn?: string;
|
|
2551
2805
|
}
|
|
2806
|
+
/**
|
|
2807
|
+
* @public
|
|
2808
|
+
*/
|
|
2552
2809
|
export interface ImportVmImageRequest {
|
|
2553
2810
|
/**
|
|
2554
2811
|
* <p>The name of the base image that is created by the import process.</p>
|
|
@@ -2600,6 +2857,9 @@ export interface ImportVmImageRequest {
|
|
|
2600
2857
|
*/
|
|
2601
2858
|
clientToken?: string;
|
|
2602
2859
|
}
|
|
2860
|
+
/**
|
|
2861
|
+
* @public
|
|
2862
|
+
*/
|
|
2603
2863
|
export interface ImportVmImageResponse {
|
|
2604
2864
|
/**
|
|
2605
2865
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -2617,6 +2877,7 @@ export interface ImportVmImageResponse {
|
|
|
2617
2877
|
clientToken?: string;
|
|
2618
2878
|
}
|
|
2619
2879
|
/**
|
|
2880
|
+
* @public
|
|
2620
2881
|
* <p>You have provided an invalid pagination token in your request.</p>
|
|
2621
2882
|
*/
|
|
2622
2883
|
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
@@ -2627,6 +2888,9 @@ export declare class InvalidPaginationTokenException extends __BaseException {
|
|
|
2627
2888
|
*/
|
|
2628
2889
|
constructor(opts: __ExceptionOptionType<InvalidPaginationTokenException, __BaseException>);
|
|
2629
2890
|
}
|
|
2891
|
+
/**
|
|
2892
|
+
* @public
|
|
2893
|
+
*/
|
|
2630
2894
|
export interface ListComponentBuildVersionsRequest {
|
|
2631
2895
|
/**
|
|
2632
2896
|
* <p>The component version Amazon Resource Name (ARN) whose versions you want to list.</p>
|
|
@@ -2642,6 +2906,9 @@ export interface ListComponentBuildVersionsRequest {
|
|
|
2642
2906
|
*/
|
|
2643
2907
|
nextToken?: string;
|
|
2644
2908
|
}
|
|
2909
|
+
/**
|
|
2910
|
+
* @public
|
|
2911
|
+
*/
|
|
2645
2912
|
export interface ListComponentBuildVersionsResponse {
|
|
2646
2913
|
/**
|
|
2647
2914
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -2658,12 +2925,18 @@ export interface ListComponentBuildVersionsResponse {
|
|
|
2658
2925
|
*/
|
|
2659
2926
|
nextToken?: string;
|
|
2660
2927
|
}
|
|
2928
|
+
/**
|
|
2929
|
+
* @public
|
|
2930
|
+
*/
|
|
2661
2931
|
export declare enum Ownership {
|
|
2662
2932
|
AMAZON = "Amazon",
|
|
2663
2933
|
SELF = "Self",
|
|
2664
2934
|
SHARED = "Shared",
|
|
2665
2935
|
THIRDPARTY = "ThirdParty"
|
|
2666
2936
|
}
|
|
2937
|
+
/**
|
|
2938
|
+
* @public
|
|
2939
|
+
*/
|
|
2667
2940
|
export interface ListComponentsRequest {
|
|
2668
2941
|
/**
|
|
2669
2942
|
* <p>Filters results based on the type of owner for the component. By default, this request
|
|
@@ -2722,6 +2995,9 @@ export interface ListComponentsRequest {
|
|
|
2722
2995
|
*/
|
|
2723
2996
|
nextToken?: string;
|
|
2724
2997
|
}
|
|
2998
|
+
/**
|
|
2999
|
+
* @public
|
|
3000
|
+
*/
|
|
2725
3001
|
export interface ListComponentsResponse {
|
|
2726
3002
|
/**
|
|
2727
3003
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -2742,6 +3018,9 @@ export interface ListComponentsResponse {
|
|
|
2742
3018
|
*/
|
|
2743
3019
|
nextToken?: string;
|
|
2744
3020
|
}
|
|
3021
|
+
/**
|
|
3022
|
+
* @public
|
|
3023
|
+
*/
|
|
2745
3024
|
export interface ListContainerRecipesRequest {
|
|
2746
3025
|
/**
|
|
2747
3026
|
* <p>Returns container recipes belonging to the specified owner, that have been shared with you. You can omit this field to return container recipes belonging to your account.</p>
|
|
@@ -2782,6 +3061,9 @@ export interface ListContainerRecipesRequest {
|
|
|
2782
3061
|
*/
|
|
2783
3062
|
nextToken?: string;
|
|
2784
3063
|
}
|
|
3064
|
+
/**
|
|
3065
|
+
* @public
|
|
3066
|
+
*/
|
|
2785
3067
|
export interface ListContainerRecipesResponse {
|
|
2786
3068
|
/**
|
|
2787
3069
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -2796,6 +3078,9 @@ export interface ListContainerRecipesResponse {
|
|
|
2796
3078
|
*/
|
|
2797
3079
|
nextToken?: string;
|
|
2798
3080
|
}
|
|
3081
|
+
/**
|
|
3082
|
+
* @public
|
|
3083
|
+
*/
|
|
2799
3084
|
export interface ListDistributionConfigurationsRequest {
|
|
2800
3085
|
/**
|
|
2801
3086
|
* <p>You can filter on <code>name</code> to streamline results.</p>
|
|
@@ -2811,6 +3096,9 @@ export interface ListDistributionConfigurationsRequest {
|
|
|
2811
3096
|
*/
|
|
2812
3097
|
nextToken?: string;
|
|
2813
3098
|
}
|
|
3099
|
+
/**
|
|
3100
|
+
* @public
|
|
3101
|
+
*/
|
|
2814
3102
|
export interface ListDistributionConfigurationsResponse {
|
|
2815
3103
|
/**
|
|
2816
3104
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -2827,6 +3115,9 @@ export interface ListDistributionConfigurationsResponse {
|
|
|
2827
3115
|
*/
|
|
2828
3116
|
nextToken?: string;
|
|
2829
3117
|
}
|
|
3118
|
+
/**
|
|
3119
|
+
* @public
|
|
3120
|
+
*/
|
|
2830
3121
|
export interface ListImageBuildVersionsRequest {
|
|
2831
3122
|
/**
|
|
2832
3123
|
* <p>The Amazon Resource Name (ARN) of the image whose build versions you want to retrieve.</p>
|
|
@@ -2874,6 +3165,7 @@ export interface ListImageBuildVersionsRequest {
|
|
|
2874
3165
|
nextToken?: string;
|
|
2875
3166
|
}
|
|
2876
3167
|
/**
|
|
3168
|
+
* @public
|
|
2877
3169
|
* <p>An image summary.</p>
|
|
2878
3170
|
*/
|
|
2879
3171
|
export interface ImageSummary {
|
|
@@ -2949,6 +3241,9 @@ export interface ImageSummary {
|
|
|
2949
3241
|
*/
|
|
2950
3242
|
imageSource?: ImageSource | string;
|
|
2951
3243
|
}
|
|
3244
|
+
/**
|
|
3245
|
+
* @public
|
|
3246
|
+
*/
|
|
2952
3247
|
export interface ListImageBuildVersionsResponse {
|
|
2953
3248
|
/**
|
|
2954
3249
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -2965,6 +3260,9 @@ export interface ListImageBuildVersionsResponse {
|
|
|
2965
3260
|
*/
|
|
2966
3261
|
nextToken?: string;
|
|
2967
3262
|
}
|
|
3263
|
+
/**
|
|
3264
|
+
* @public
|
|
3265
|
+
*/
|
|
2968
3266
|
export interface ListImagePackagesRequest {
|
|
2969
3267
|
/**
|
|
2970
3268
|
* <p>Filter results for the ListImagePackages request by the Image Build Version ARN</p>
|
|
@@ -2980,6 +3278,7 @@ export interface ListImagePackagesRequest {
|
|
|
2980
3278
|
nextToken?: string;
|
|
2981
3279
|
}
|
|
2982
3280
|
/**
|
|
3281
|
+
* @public
|
|
2983
3282
|
* <p>Represents a package installed on an Image Builder image.</p>
|
|
2984
3283
|
*/
|
|
2985
3284
|
export interface ImagePackage {
|
|
@@ -2992,6 +3291,9 @@ export interface ImagePackage {
|
|
|
2992
3291
|
*/
|
|
2993
3292
|
packageVersion?: string;
|
|
2994
3293
|
}
|
|
3294
|
+
/**
|
|
3295
|
+
* @public
|
|
3296
|
+
*/
|
|
2995
3297
|
export interface ListImagePackagesResponse {
|
|
2996
3298
|
/**
|
|
2997
3299
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -3006,6 +3308,9 @@ export interface ListImagePackagesResponse {
|
|
|
3006
3308
|
*/
|
|
3007
3309
|
nextToken?: string;
|
|
3008
3310
|
}
|
|
3311
|
+
/**
|
|
3312
|
+
* @public
|
|
3313
|
+
*/
|
|
3009
3314
|
export interface ListImagePipelineImagesRequest {
|
|
3010
3315
|
/**
|
|
3011
3316
|
* <p>The Amazon Resource Name (ARN) of the image pipeline whose images you want to view.</p>
|
|
@@ -3037,6 +3342,9 @@ export interface ListImagePipelineImagesRequest {
|
|
|
3037
3342
|
*/
|
|
3038
3343
|
nextToken?: string;
|
|
3039
3344
|
}
|
|
3345
|
+
/**
|
|
3346
|
+
* @public
|
|
3347
|
+
*/
|
|
3040
3348
|
export interface ListImagePipelineImagesResponse {
|
|
3041
3349
|
/**
|
|
3042
3350
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -3053,6 +3361,9 @@ export interface ListImagePipelineImagesResponse {
|
|
|
3053
3361
|
*/
|
|
3054
3362
|
nextToken?: string;
|
|
3055
3363
|
}
|
|
3364
|
+
/**
|
|
3365
|
+
* @public
|
|
3366
|
+
*/
|
|
3056
3367
|
export interface ListImagePipelinesRequest {
|
|
3057
3368
|
/**
|
|
3058
3369
|
* <p>Use the following filters to streamline results:</p>
|
|
@@ -3100,6 +3411,9 @@ export interface ListImagePipelinesRequest {
|
|
|
3100
3411
|
*/
|
|
3101
3412
|
nextToken?: string;
|
|
3102
3413
|
}
|
|
3414
|
+
/**
|
|
3415
|
+
* @public
|
|
3416
|
+
*/
|
|
3103
3417
|
export interface ListImagePipelinesResponse {
|
|
3104
3418
|
/**
|
|
3105
3419
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -3116,6 +3430,9 @@ export interface ListImagePipelinesResponse {
|
|
|
3116
3430
|
*/
|
|
3117
3431
|
nextToken?: string;
|
|
3118
3432
|
}
|
|
3433
|
+
/**
|
|
3434
|
+
* @public
|
|
3435
|
+
*/
|
|
3119
3436
|
export interface ListImageRecipesRequest {
|
|
3120
3437
|
/**
|
|
3121
3438
|
* <p>The owner defines which image recipes you want to list. By default, this request will only
|
|
@@ -3156,6 +3473,7 @@ export interface ListImageRecipesRequest {
|
|
|
3156
3473
|
nextToken?: string;
|
|
3157
3474
|
}
|
|
3158
3475
|
/**
|
|
3476
|
+
* @public
|
|
3159
3477
|
* <p>A summary of an image recipe.</p>
|
|
3160
3478
|
*/
|
|
3161
3479
|
export interface ImageRecipeSummary {
|
|
@@ -3188,6 +3506,9 @@ export interface ImageRecipeSummary {
|
|
|
3188
3506
|
*/
|
|
3189
3507
|
tags?: Record<string, string>;
|
|
3190
3508
|
}
|
|
3509
|
+
/**
|
|
3510
|
+
* @public
|
|
3511
|
+
*/
|
|
3191
3512
|
export interface ListImageRecipesResponse {
|
|
3192
3513
|
/**
|
|
3193
3514
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -3204,6 +3525,9 @@ export interface ListImageRecipesResponse {
|
|
|
3204
3525
|
*/
|
|
3205
3526
|
nextToken?: string;
|
|
3206
3527
|
}
|
|
3528
|
+
/**
|
|
3529
|
+
* @public
|
|
3530
|
+
*/
|
|
3207
3531
|
export interface ListImagesRequest {
|
|
3208
3532
|
/**
|
|
3209
3533
|
* <p>The owner defines which images you want to list. By default, this request will only show
|
|
@@ -3262,6 +3586,7 @@ export interface ListImagesRequest {
|
|
|
3262
3586
|
includeDeprecated?: boolean;
|
|
3263
3587
|
}
|
|
3264
3588
|
/**
|
|
3589
|
+
* @public
|
|
3265
3590
|
* <p>The defining characteristics of a specific version of an Image Builder image.</p>
|
|
3266
3591
|
*/
|
|
3267
3592
|
export interface ImageVersion {
|
|
@@ -3358,6 +3683,9 @@ export interface ImageVersion {
|
|
|
3358
3683
|
*/
|
|
3359
3684
|
imageSource?: ImageSource | string;
|
|
3360
3685
|
}
|
|
3686
|
+
/**
|
|
3687
|
+
* @public
|
|
3688
|
+
*/
|
|
3361
3689
|
export interface ListImagesResponse {
|
|
3362
3690
|
/**
|
|
3363
3691
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -3383,6 +3711,9 @@ export interface ListImagesResponse {
|
|
|
3383
3711
|
*/
|
|
3384
3712
|
nextToken?: string;
|
|
3385
3713
|
}
|
|
3714
|
+
/**
|
|
3715
|
+
* @public
|
|
3716
|
+
*/
|
|
3386
3717
|
export interface ListInfrastructureConfigurationsRequest {
|
|
3387
3718
|
/**
|
|
3388
3719
|
* <p>You can filter on <code>name</code> to streamline results.</p>
|
|
@@ -3399,6 +3730,7 @@ export interface ListInfrastructureConfigurationsRequest {
|
|
|
3399
3730
|
nextToken?: string;
|
|
3400
3731
|
}
|
|
3401
3732
|
/**
|
|
3733
|
+
* @public
|
|
3402
3734
|
* <p>The infrastructure used when building Amazon EC2 AMIs.</p>
|
|
3403
3735
|
*/
|
|
3404
3736
|
export interface InfrastructureConfigurationSummary {
|
|
@@ -3439,6 +3771,9 @@ export interface InfrastructureConfigurationSummary {
|
|
|
3439
3771
|
*/
|
|
3440
3772
|
instanceProfileName?: string;
|
|
3441
3773
|
}
|
|
3774
|
+
/**
|
|
3775
|
+
* @public
|
|
3776
|
+
*/
|
|
3442
3777
|
export interface ListInfrastructureConfigurationsResponse {
|
|
3443
3778
|
/**
|
|
3444
3779
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -3456,6 +3791,7 @@ export interface ListInfrastructureConfigurationsResponse {
|
|
|
3456
3791
|
nextToken?: string;
|
|
3457
3792
|
}
|
|
3458
3793
|
/**
|
|
3794
|
+
* @public
|
|
3459
3795
|
* <p>The specified parameter is invalid. Review the available parameters for the API
|
|
3460
3796
|
* request.</p>
|
|
3461
3797
|
*/
|
|
@@ -3467,12 +3803,18 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
3467
3803
|
*/
|
|
3468
3804
|
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
3469
3805
|
}
|
|
3806
|
+
/**
|
|
3807
|
+
* @public
|
|
3808
|
+
*/
|
|
3470
3809
|
export interface ListTagsForResourceRequest {
|
|
3471
3810
|
/**
|
|
3472
3811
|
* <p>The Amazon Resource Name (ARN) of the resource whose tags you want to retrieve.</p>
|
|
3473
3812
|
*/
|
|
3474
3813
|
resourceArn: string | undefined;
|
|
3475
3814
|
}
|
|
3815
|
+
/**
|
|
3816
|
+
* @public
|
|
3817
|
+
*/
|
|
3476
3818
|
export interface ListTagsForResourceResponse {
|
|
3477
3819
|
/**
|
|
3478
3820
|
* <p>The tags for the specified resource.</p>
|
|
@@ -3480,6 +3822,7 @@ export interface ListTagsForResourceResponse {
|
|
|
3480
3822
|
tags?: Record<string, string>;
|
|
3481
3823
|
}
|
|
3482
3824
|
/**
|
|
3825
|
+
* @public
|
|
3483
3826
|
* <p>The value that you provided for the specified parameter is invalid.</p>
|
|
3484
3827
|
*/
|
|
3485
3828
|
export declare class InvalidParameterValueException extends __BaseException {
|
|
@@ -3490,6 +3833,9 @@ export declare class InvalidParameterValueException extends __BaseException {
|
|
|
3490
3833
|
*/
|
|
3491
3834
|
constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
|
|
3492
3835
|
}
|
|
3836
|
+
/**
|
|
3837
|
+
* @public
|
|
3838
|
+
*/
|
|
3493
3839
|
export interface PutComponentPolicyRequest {
|
|
3494
3840
|
/**
|
|
3495
3841
|
* <p>The Amazon Resource Name (ARN) of the component that this policy should be applied to.</p>
|
|
@@ -3500,6 +3846,9 @@ export interface PutComponentPolicyRequest {
|
|
|
3500
3846
|
*/
|
|
3501
3847
|
policy: string | undefined;
|
|
3502
3848
|
}
|
|
3849
|
+
/**
|
|
3850
|
+
* @public
|
|
3851
|
+
*/
|
|
3503
3852
|
export interface PutComponentPolicyResponse {
|
|
3504
3853
|
/**
|
|
3505
3854
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -3510,6 +3859,9 @@ export interface PutComponentPolicyResponse {
|
|
|
3510
3859
|
*/
|
|
3511
3860
|
componentArn?: string;
|
|
3512
3861
|
}
|
|
3862
|
+
/**
|
|
3863
|
+
* @public
|
|
3864
|
+
*/
|
|
3513
3865
|
export interface PutContainerRecipePolicyRequest {
|
|
3514
3866
|
/**
|
|
3515
3867
|
* <p>The Amazon Resource Name (ARN) of the container recipe that this policy should be applied to.</p>
|
|
@@ -3520,6 +3872,9 @@ export interface PutContainerRecipePolicyRequest {
|
|
|
3520
3872
|
*/
|
|
3521
3873
|
policy: string | undefined;
|
|
3522
3874
|
}
|
|
3875
|
+
/**
|
|
3876
|
+
* @public
|
|
3877
|
+
*/
|
|
3523
3878
|
export interface PutContainerRecipePolicyResponse {
|
|
3524
3879
|
/**
|
|
3525
3880
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -3530,6 +3885,9 @@ export interface PutContainerRecipePolicyResponse {
|
|
|
3530
3885
|
*/
|
|
3531
3886
|
containerRecipeArn?: string;
|
|
3532
3887
|
}
|
|
3888
|
+
/**
|
|
3889
|
+
* @public
|
|
3890
|
+
*/
|
|
3533
3891
|
export interface PutImagePolicyRequest {
|
|
3534
3892
|
/**
|
|
3535
3893
|
* <p>The Amazon Resource Name (ARN) of the image that this policy should be applied to.</p>
|
|
@@ -3540,6 +3898,9 @@ export interface PutImagePolicyRequest {
|
|
|
3540
3898
|
*/
|
|
3541
3899
|
policy: string | undefined;
|
|
3542
3900
|
}
|
|
3901
|
+
/**
|
|
3902
|
+
* @public
|
|
3903
|
+
*/
|
|
3543
3904
|
export interface PutImagePolicyResponse {
|
|
3544
3905
|
/**
|
|
3545
3906
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -3550,6 +3911,9 @@ export interface PutImagePolicyResponse {
|
|
|
3550
3911
|
*/
|
|
3551
3912
|
imageArn?: string;
|
|
3552
3913
|
}
|
|
3914
|
+
/**
|
|
3915
|
+
* @public
|
|
3916
|
+
*/
|
|
3553
3917
|
export interface PutImageRecipePolicyRequest {
|
|
3554
3918
|
/**
|
|
3555
3919
|
* <p>The Amazon Resource Name (ARN) of the image recipe that this policy should be applied to.</p>
|
|
@@ -3560,6 +3924,9 @@ export interface PutImageRecipePolicyRequest {
|
|
|
3560
3924
|
*/
|
|
3561
3925
|
policy: string | undefined;
|
|
3562
3926
|
}
|
|
3927
|
+
/**
|
|
3928
|
+
* @public
|
|
3929
|
+
*/
|
|
3563
3930
|
export interface PutImageRecipePolicyResponse {
|
|
3564
3931
|
/**
|
|
3565
3932
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -3570,6 +3937,9 @@ export interface PutImageRecipePolicyResponse {
|
|
|
3570
3937
|
*/
|
|
3571
3938
|
imageRecipeArn?: string;
|
|
3572
3939
|
}
|
|
3940
|
+
/**
|
|
3941
|
+
* @public
|
|
3942
|
+
*/
|
|
3573
3943
|
export interface StartImagePipelineExecutionRequest {
|
|
3574
3944
|
/**
|
|
3575
3945
|
* <p>The Amazon Resource Name (ARN) of the image pipeline that you want to manually invoke.</p>
|
|
@@ -3580,6 +3950,9 @@ export interface StartImagePipelineExecutionRequest {
|
|
|
3580
3950
|
*/
|
|
3581
3951
|
clientToken?: string;
|
|
3582
3952
|
}
|
|
3953
|
+
/**
|
|
3954
|
+
* @public
|
|
3955
|
+
*/
|
|
3583
3956
|
export interface StartImagePipelineExecutionResponse {
|
|
3584
3957
|
/**
|
|
3585
3958
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -3594,6 +3967,9 @@ export interface StartImagePipelineExecutionResponse {
|
|
|
3594
3967
|
*/
|
|
3595
3968
|
imageBuildVersionArn?: string;
|
|
3596
3969
|
}
|
|
3970
|
+
/**
|
|
3971
|
+
* @public
|
|
3972
|
+
*/
|
|
3597
3973
|
export interface TagResourceRequest {
|
|
3598
3974
|
/**
|
|
3599
3975
|
* <p>The Amazon Resource Name (ARN) of the resource that you want to tag.</p>
|
|
@@ -3604,8 +3980,14 @@ export interface TagResourceRequest {
|
|
|
3604
3980
|
*/
|
|
3605
3981
|
tags: Record<string, string> | undefined;
|
|
3606
3982
|
}
|
|
3983
|
+
/**
|
|
3984
|
+
* @public
|
|
3985
|
+
*/
|
|
3607
3986
|
export interface TagResourceResponse {
|
|
3608
3987
|
}
|
|
3988
|
+
/**
|
|
3989
|
+
* @public
|
|
3990
|
+
*/
|
|
3609
3991
|
export interface UntagResourceRequest {
|
|
3610
3992
|
/**
|
|
3611
3993
|
* <p>The Amazon Resource Name (ARN) of the resource that you want to untag.</p>
|
|
@@ -3616,8 +3998,14 @@ export interface UntagResourceRequest {
|
|
|
3616
3998
|
*/
|
|
3617
3999
|
tagKeys: string[] | undefined;
|
|
3618
4000
|
}
|
|
4001
|
+
/**
|
|
4002
|
+
* @public
|
|
4003
|
+
*/
|
|
3619
4004
|
export interface UntagResourceResponse {
|
|
3620
4005
|
}
|
|
4006
|
+
/**
|
|
4007
|
+
* @public
|
|
4008
|
+
*/
|
|
3621
4009
|
export interface UpdateDistributionConfigurationRequest {
|
|
3622
4010
|
/**
|
|
3623
4011
|
* <p>The Amazon Resource Name (ARN) of the distribution configuration that you want to update.</p>
|
|
@@ -3636,6 +4024,9 @@ export interface UpdateDistributionConfigurationRequest {
|
|
|
3636
4024
|
*/
|
|
3637
4025
|
clientToken?: string;
|
|
3638
4026
|
}
|
|
4027
|
+
/**
|
|
4028
|
+
* @public
|
|
4029
|
+
*/
|
|
3639
4030
|
export interface UpdateDistributionConfigurationResponse {
|
|
3640
4031
|
/**
|
|
3641
4032
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -3651,6 +4042,9 @@ export interface UpdateDistributionConfigurationResponse {
|
|
|
3651
4042
|
*/
|
|
3652
4043
|
distributionConfigurationArn?: string;
|
|
3653
4044
|
}
|
|
4045
|
+
/**
|
|
4046
|
+
* @public
|
|
4047
|
+
*/
|
|
3654
4048
|
export interface UpdateImagePipelineRequest {
|
|
3655
4049
|
/**
|
|
3656
4050
|
* <p>The Amazon Resource Name (ARN) of the image pipeline that you want to update.</p>
|
|
@@ -3702,6 +4096,9 @@ export interface UpdateImagePipelineRequest {
|
|
|
3702
4096
|
*/
|
|
3703
4097
|
clientToken?: string;
|
|
3704
4098
|
}
|
|
4099
|
+
/**
|
|
4100
|
+
* @public
|
|
4101
|
+
*/
|
|
3705
4102
|
export interface UpdateImagePipelineResponse {
|
|
3706
4103
|
/**
|
|
3707
4104
|
* <p>The request ID that uniquely identifies this request.</p>
|
|
@@ -3716,6 +4113,9 @@ export interface UpdateImagePipelineResponse {
|
|
|
3716
4113
|
*/
|
|
3717
4114
|
imagePipelineArn?: string;
|
|
3718
4115
|
}
|
|
4116
|
+
/**
|
|
4117
|
+
* @public
|
|
4118
|
+
*/
|
|
3719
4119
|
export interface UpdateInfrastructureConfigurationRequest {
|
|
3720
4120
|
/**
|
|
3721
4121
|
* <p>The Amazon Resource Name (ARN) of the infrastructure configuration that you want to
|
|
@@ -3801,6 +4201,9 @@ export interface UpdateInfrastructureConfigurationRequest {
|
|
|
3801
4201
|
*/
|
|
3802
4202
|
instanceMetadataOptions?: InstanceMetadataOptions;
|
|
3803
4203
|
}
|
|
4204
|
+
/**
|
|
4205
|
+
* @public
|
|
4206
|
+
*/
|
|
3804
4207
|
export interface UpdateInfrastructureConfigurationResponse {
|
|
3805
4208
|
/**
|
|
3806
4209
|
* <p>The request ID that uniquely identifies this request.</p>
|