@aws-sdk/client-imagebuilder 3.934.0 → 3.936.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.
@@ -0,0 +1,484 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ImageStatus: {
6
+ readonly AVAILABLE: "AVAILABLE";
7
+ readonly BUILDING: "BUILDING";
8
+ readonly CANCELLED: "CANCELLED";
9
+ readonly CREATING: "CREATING";
10
+ readonly DELETED: "DELETED";
11
+ readonly DEPRECATED: "DEPRECATED";
12
+ readonly DISABLED: "DISABLED";
13
+ readonly DISTRIBUTING: "DISTRIBUTING";
14
+ readonly FAILED: "FAILED";
15
+ readonly INTEGRATING: "INTEGRATING";
16
+ readonly PENDING: "PENDING";
17
+ readonly TESTING: "TESTING";
18
+ };
19
+ /**
20
+ * @public
21
+ */
22
+ export type ImageStatus = (typeof ImageStatus)[keyof typeof ImageStatus];
23
+ /**
24
+ * @public
25
+ * @enum
26
+ */
27
+ export declare const BuildType: {
28
+ readonly IMPORT: "IMPORT";
29
+ readonly IMPORT_ISO: "IMPORT_ISO";
30
+ readonly SCHEDULED: "SCHEDULED";
31
+ readonly USER_INITIATED: "USER_INITIATED";
32
+ };
33
+ /**
34
+ * @public
35
+ */
36
+ export type BuildType = (typeof BuildType)[keyof typeof BuildType];
37
+ /**
38
+ * @public
39
+ * @enum
40
+ */
41
+ export declare const Platform: {
42
+ readonly LINUX: "Linux";
43
+ readonly MACOS: "macOS";
44
+ readonly WINDOWS: "Windows";
45
+ };
46
+ /**
47
+ * @public
48
+ */
49
+ export type Platform = (typeof Platform)[keyof typeof Platform];
50
+ /**
51
+ * @public
52
+ * @enum
53
+ */
54
+ export declare const ProductCodeType: {
55
+ readonly MARKETPLACE: "marketplace";
56
+ };
57
+ /**
58
+ * @public
59
+ */
60
+ export type ProductCodeType = (typeof ProductCodeType)[keyof typeof ProductCodeType];
61
+ /**
62
+ * @public
63
+ * @enum
64
+ */
65
+ export declare const ComponentStatus: {
66
+ readonly ACTIVE: "ACTIVE";
67
+ readonly DEPRECATED: "DEPRECATED";
68
+ readonly DISABLED: "DISABLED";
69
+ };
70
+ /**
71
+ * @public
72
+ */
73
+ export type ComponentStatus = (typeof ComponentStatus)[keyof typeof ComponentStatus];
74
+ /**
75
+ * @public
76
+ * @enum
77
+ */
78
+ export declare const ComponentType: {
79
+ readonly BUILD: "BUILD";
80
+ readonly TEST: "TEST";
81
+ };
82
+ /**
83
+ * @public
84
+ */
85
+ export type ComponentType = (typeof ComponentType)[keyof typeof ComponentType];
86
+ /**
87
+ * @public
88
+ * @enum
89
+ */
90
+ export declare const ComponentFormat: {
91
+ readonly SHELL: "SHELL";
92
+ };
93
+ /**
94
+ * @public
95
+ */
96
+ export type ComponentFormat = (typeof ComponentFormat)[keyof typeof ComponentFormat];
97
+ /**
98
+ * @public
99
+ * @enum
100
+ */
101
+ export declare const ContainerRepositoryService: {
102
+ readonly ECR: "ECR";
103
+ };
104
+ /**
105
+ * @public
106
+ */
107
+ export type ContainerRepositoryService = (typeof ContainerRepositoryService)[keyof typeof ContainerRepositoryService];
108
+ /**
109
+ * @public
110
+ * @enum
111
+ */
112
+ export declare const ContainerType: {
113
+ readonly DOCKER: "DOCKER";
114
+ };
115
+ /**
116
+ * @public
117
+ */
118
+ export type ContainerType = (typeof ContainerType)[keyof typeof ContainerType];
119
+ /**
120
+ * @public
121
+ * @enum
122
+ */
123
+ export declare const EbsVolumeType: {
124
+ readonly GP2: "gp2";
125
+ readonly GP3: "gp3";
126
+ readonly IO1: "io1";
127
+ readonly IO2: "io2";
128
+ readonly SC1: "sc1";
129
+ readonly ST1: "st1";
130
+ readonly STANDARD: "standard";
131
+ };
132
+ /**
133
+ * @public
134
+ */
135
+ export type EbsVolumeType = (typeof EbsVolumeType)[keyof typeof EbsVolumeType];
136
+ /**
137
+ * @public
138
+ * @enum
139
+ */
140
+ export declare const DiskImageFormat: {
141
+ readonly RAW: "RAW";
142
+ readonly VHD: "VHD";
143
+ readonly VMDK: "VMDK";
144
+ };
145
+ /**
146
+ * @public
147
+ */
148
+ export type DiskImageFormat = (typeof DiskImageFormat)[keyof typeof DiskImageFormat];
149
+ /**
150
+ * @public
151
+ * @enum
152
+ */
153
+ export declare const SsmParameterDataType: {
154
+ readonly AWS_EC2_IMAGE: "aws:ec2:image";
155
+ readonly TEXT: "text";
156
+ };
157
+ /**
158
+ * @public
159
+ */
160
+ export type SsmParameterDataType = (typeof SsmParameterDataType)[keyof typeof SsmParameterDataType];
161
+ /**
162
+ * @public
163
+ * @enum
164
+ */
165
+ export declare const OnWorkflowFailure: {
166
+ readonly ABORT: "ABORT";
167
+ readonly CONTINUE: "CONTINUE";
168
+ };
169
+ /**
170
+ * @public
171
+ */
172
+ export type OnWorkflowFailure = (typeof OnWorkflowFailure)[keyof typeof OnWorkflowFailure];
173
+ /**
174
+ * @public
175
+ * @enum
176
+ */
177
+ export declare const PipelineExecutionStartCondition: {
178
+ readonly EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE: "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE";
179
+ readonly EXPRESSION_MATCH_ONLY: "EXPRESSION_MATCH_ONLY";
180
+ };
181
+ /**
182
+ * @public
183
+ */
184
+ export type PipelineExecutionStartCondition = (typeof PipelineExecutionStartCondition)[keyof typeof PipelineExecutionStartCondition];
185
+ /**
186
+ * @public
187
+ * @enum
188
+ */
189
+ export declare const PipelineStatus: {
190
+ readonly DISABLED: "DISABLED";
191
+ readonly ENABLED: "ENABLED";
192
+ };
193
+ /**
194
+ * @public
195
+ */
196
+ export type PipelineStatus = (typeof PipelineStatus)[keyof typeof PipelineStatus];
197
+ /**
198
+ * @public
199
+ * @enum
200
+ */
201
+ export declare const TenancyType: {
202
+ readonly DEDICATED: "dedicated";
203
+ readonly DEFAULT: "default";
204
+ readonly HOST: "host";
205
+ };
206
+ /**
207
+ * @public
208
+ */
209
+ export type TenancyType = (typeof TenancyType)[keyof typeof TenancyType];
210
+ /**
211
+ * @public
212
+ * @enum
213
+ */
214
+ export declare const LifecyclePolicyDetailActionType: {
215
+ readonly DELETE: "DELETE";
216
+ readonly DEPRECATE: "DEPRECATE";
217
+ readonly DISABLE: "DISABLE";
218
+ };
219
+ /**
220
+ * @public
221
+ */
222
+ export type LifecyclePolicyDetailActionType = (typeof LifecyclePolicyDetailActionType)[keyof typeof LifecyclePolicyDetailActionType];
223
+ /**
224
+ * @public
225
+ * @enum
226
+ */
227
+ export declare const LifecyclePolicyTimeUnit: {
228
+ readonly DAYS: "DAYS";
229
+ readonly MONTHS: "MONTHS";
230
+ readonly WEEKS: "WEEKS";
231
+ readonly YEARS: "YEARS";
232
+ };
233
+ /**
234
+ * @public
235
+ */
236
+ export type LifecyclePolicyTimeUnit = (typeof LifecyclePolicyTimeUnit)[keyof typeof LifecyclePolicyTimeUnit];
237
+ /**
238
+ * @public
239
+ * @enum
240
+ */
241
+ export declare const LifecyclePolicyDetailFilterType: {
242
+ readonly AGE: "AGE";
243
+ readonly COUNT: "COUNT";
244
+ };
245
+ /**
246
+ * @public
247
+ */
248
+ export type LifecyclePolicyDetailFilterType = (typeof LifecyclePolicyDetailFilterType)[keyof typeof LifecyclePolicyDetailFilterType];
249
+ /**
250
+ * @public
251
+ * @enum
252
+ */
253
+ export declare const LifecyclePolicyResourceType: {
254
+ readonly AMI_IMAGE: "AMI_IMAGE";
255
+ readonly CONTAINER_IMAGE: "CONTAINER_IMAGE";
256
+ };
257
+ /**
258
+ * @public
259
+ */
260
+ export type LifecyclePolicyResourceType = (typeof LifecyclePolicyResourceType)[keyof typeof LifecyclePolicyResourceType];
261
+ /**
262
+ * @public
263
+ * @enum
264
+ */
265
+ export declare const LifecyclePolicyStatus: {
266
+ readonly DISABLED: "DISABLED";
267
+ readonly ENABLED: "ENABLED";
268
+ };
269
+ /**
270
+ * @public
271
+ */
272
+ export type LifecyclePolicyStatus = (typeof LifecyclePolicyStatus)[keyof typeof LifecyclePolicyStatus];
273
+ /**
274
+ * @public
275
+ * @enum
276
+ */
277
+ export declare const WorkflowType: {
278
+ readonly BUILD: "BUILD";
279
+ readonly DISTRIBUTION: "DISTRIBUTION";
280
+ readonly TEST: "TEST";
281
+ };
282
+ /**
283
+ * @public
284
+ */
285
+ export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
286
+ /**
287
+ * @public
288
+ * @enum
289
+ */
290
+ export declare const ImageType: {
291
+ readonly AMI: "AMI";
292
+ readonly DOCKER: "DOCKER";
293
+ };
294
+ /**
295
+ * @public
296
+ */
297
+ export type ImageType = (typeof ImageType)[keyof typeof ImageType];
298
+ /**
299
+ * @public
300
+ * @enum
301
+ */
302
+ export declare const ImageSource: {
303
+ readonly AMAZON_MANAGED: "AMAZON_MANAGED";
304
+ readonly AWS_MARKETPLACE: "AWS_MARKETPLACE";
305
+ readonly CUSTOM: "CUSTOM";
306
+ readonly IMPORTED: "IMPORTED";
307
+ };
308
+ /**
309
+ * @public
310
+ */
311
+ export type ImageSource = (typeof ImageSource)[keyof typeof ImageSource];
312
+ /**
313
+ * @public
314
+ * @enum
315
+ */
316
+ export declare const ImageScanStatus: {
317
+ readonly ABANDONED: "ABANDONED";
318
+ readonly COLLECTING: "COLLECTING";
319
+ readonly COMPLETED: "COMPLETED";
320
+ readonly FAILED: "FAILED";
321
+ readonly PENDING: "PENDING";
322
+ readonly SCANNING: "SCANNING";
323
+ readonly TIMED_OUT: "TIMED_OUT";
324
+ };
325
+ /**
326
+ * @public
327
+ */
328
+ export type ImageScanStatus = (typeof ImageScanStatus)[keyof typeof ImageScanStatus];
329
+ /**
330
+ * @public
331
+ * @enum
332
+ */
333
+ export declare const LifecycleExecutionStatus: {
334
+ readonly CANCELLED: "CANCELLED";
335
+ readonly CANCELLING: "CANCELLING";
336
+ readonly FAILED: "FAILED";
337
+ readonly IN_PROGRESS: "IN_PROGRESS";
338
+ readonly PENDING: "PENDING";
339
+ readonly SUCCESS: "SUCCESS";
340
+ };
341
+ /**
342
+ * @public
343
+ */
344
+ export type LifecycleExecutionStatus = (typeof LifecycleExecutionStatus)[keyof typeof LifecycleExecutionStatus];
345
+ /**
346
+ * @public
347
+ * @enum
348
+ */
349
+ export declare const MarketplaceResourceType: {
350
+ readonly COMPONENT_ARTIFACT: "COMPONENT_ARTIFACT";
351
+ readonly COMPONENT_DATA: "COMPONENT_DATA";
352
+ };
353
+ /**
354
+ * @public
355
+ */
356
+ export type MarketplaceResourceType = (typeof MarketplaceResourceType)[keyof typeof MarketplaceResourceType];
357
+ /**
358
+ * @public
359
+ * @enum
360
+ */
361
+ export declare const WorkflowStatus: {
362
+ readonly DEPRECATED: "DEPRECATED";
363
+ };
364
+ /**
365
+ * @public
366
+ */
367
+ export type WorkflowStatus = (typeof WorkflowStatus)[keyof typeof WorkflowStatus];
368
+ /**
369
+ * @public
370
+ * @enum
371
+ */
372
+ export declare const WorkflowExecutionStatus: {
373
+ readonly CANCELLED: "CANCELLED";
374
+ readonly COMPLETED: "COMPLETED";
375
+ readonly FAILED: "FAILED";
376
+ readonly PENDING: "PENDING";
377
+ readonly ROLLBACK_COMPLETED: "ROLLBACK_COMPLETED";
378
+ readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
379
+ readonly RUNNING: "RUNNING";
380
+ readonly SKIPPED: "SKIPPED";
381
+ };
382
+ /**
383
+ * @public
384
+ */
385
+ export type WorkflowExecutionStatus = (typeof WorkflowExecutionStatus)[keyof typeof WorkflowExecutionStatus];
386
+ /**
387
+ * @public
388
+ * @enum
389
+ */
390
+ export declare const WorkflowStepExecutionRollbackStatus: {
391
+ readonly COMPLETED: "COMPLETED";
392
+ readonly FAILED: "FAILED";
393
+ readonly RUNNING: "RUNNING";
394
+ readonly SKIPPED: "SKIPPED";
395
+ };
396
+ /**
397
+ * @public
398
+ */
399
+ export type WorkflowStepExecutionRollbackStatus = (typeof WorkflowStepExecutionRollbackStatus)[keyof typeof WorkflowStepExecutionRollbackStatus];
400
+ /**
401
+ * @public
402
+ * @enum
403
+ */
404
+ export declare const WorkflowStepExecutionStatus: {
405
+ readonly CANCELLED: "CANCELLED";
406
+ readonly COMPLETED: "COMPLETED";
407
+ readonly FAILED: "FAILED";
408
+ readonly PENDING: "PENDING";
409
+ readonly RUNNING: "RUNNING";
410
+ readonly SKIPPED: "SKIPPED";
411
+ };
412
+ /**
413
+ * @public
414
+ */
415
+ export type WorkflowStepExecutionStatus = (typeof WorkflowStepExecutionStatus)[keyof typeof WorkflowStepExecutionStatus];
416
+ /**
417
+ * @public
418
+ * @enum
419
+ */
420
+ export declare const Ownership: {
421
+ readonly AMAZON: "Amazon";
422
+ readonly AWS_MARKETPLACE: "AWSMarketplace";
423
+ readonly SELF: "Self";
424
+ readonly SHARED: "Shared";
425
+ readonly THIRDPARTY: "ThirdParty";
426
+ };
427
+ /**
428
+ * @public
429
+ */
430
+ export type Ownership = (typeof Ownership)[keyof typeof Ownership];
431
+ /**
432
+ * @public
433
+ * @enum
434
+ */
435
+ export declare const LifecycleExecutionResourceActionName: {
436
+ readonly AVAILABLE: "AVAILABLE";
437
+ readonly DELETE: "DELETE";
438
+ readonly DEPRECATE: "DEPRECATE";
439
+ readonly DISABLE: "DISABLE";
440
+ };
441
+ /**
442
+ * @public
443
+ */
444
+ export type LifecycleExecutionResourceActionName = (typeof LifecycleExecutionResourceActionName)[keyof typeof LifecycleExecutionResourceActionName];
445
+ /**
446
+ * @public
447
+ * @enum
448
+ */
449
+ export declare const LifecycleExecutionResourceStatus: {
450
+ readonly FAILED: "FAILED";
451
+ readonly IN_PROGRESS: "IN_PROGRESS";
452
+ readonly SKIPPED: "SKIPPED";
453
+ readonly SUCCESS: "SUCCESS";
454
+ };
455
+ /**
456
+ * @public
457
+ */
458
+ export type LifecycleExecutionResourceStatus = (typeof LifecycleExecutionResourceStatus)[keyof typeof LifecycleExecutionResourceStatus];
459
+ /**
460
+ * @public
461
+ * @enum
462
+ */
463
+ export declare const WorkflowStepActionType: {
464
+ readonly RESUME: "RESUME";
465
+ readonly STOP: "STOP";
466
+ };
467
+ /**
468
+ * @public
469
+ */
470
+ export type WorkflowStepActionType = (typeof WorkflowStepActionType)[keyof typeof WorkflowStepActionType];
471
+ /**
472
+ * @public
473
+ * @enum
474
+ */
475
+ export declare const ResourceStatus: {
476
+ readonly AVAILABLE: "AVAILABLE";
477
+ readonly DELETED: "DELETED";
478
+ readonly DEPRECATED: "DEPRECATED";
479
+ readonly DISABLED: "DISABLED";
480
+ };
481
+ /**
482
+ * @public
483
+ */
484
+ export type ResourceStatus = (typeof ResourceStatus)[keyof typeof ResourceStatus];
@@ -0,0 +1,216 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ImagebuilderServiceException as __BaseException } from "./ImagebuilderServiceException";
3
+ /**
4
+ * <p>You have exceeded the permitted request rate for the specific operation.</p>
5
+ * @public
6
+ */
7
+ export declare class CallRateLimitExceededException extends __BaseException {
8
+ readonly name: "CallRateLimitExceededException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<CallRateLimitExceededException, __BaseException>);
14
+ }
15
+ /**
16
+ * <p>These errors are usually caused by a client action, such as using an action or
17
+ * resource on behalf of a user that doesn't have permissions to use the action or
18
+ * resource, or specifying an invalid resource identifier.</p>
19
+ * @public
20
+ */
21
+ export declare class ClientException extends __BaseException {
22
+ readonly name: "ClientException";
23
+ readonly $fault: "client";
24
+ /**
25
+ * @internal
26
+ */
27
+ constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
28
+ }
29
+ /**
30
+ * <p>You are not authorized to perform the requested operation.</p>
31
+ * @public
32
+ */
33
+ export declare class ForbiddenException extends __BaseException {
34
+ readonly name: "ForbiddenException";
35
+ readonly $fault: "client";
36
+ /**
37
+ * @internal
38
+ */
39
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
40
+ }
41
+ /**
42
+ * <p>You have specified a client token for an operation using parameter values that differ
43
+ * from a previous request that used the same client token.</p>
44
+ * @public
45
+ */
46
+ export declare class IdempotentParameterMismatchException extends __BaseException {
47
+ readonly name: "IdempotentParameterMismatchException";
48
+ readonly $fault: "client";
49
+ /**
50
+ * @internal
51
+ */
52
+ constructor(opts: __ExceptionOptionType<IdempotentParameterMismatchException, __BaseException>);
53
+ }
54
+ /**
55
+ * <p>You have requested an action that that the service doesn't support.</p>
56
+ * @public
57
+ */
58
+ export declare class InvalidRequestException extends __BaseException {
59
+ readonly name: "InvalidRequestException";
60
+ readonly $fault: "client";
61
+ /**
62
+ * @internal
63
+ */
64
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
65
+ }
66
+ /**
67
+ * <p>The resource that you are trying to operate on is currently in use. Review the message
68
+ * details and retry later.</p>
69
+ * @public
70
+ */
71
+ export declare class ResourceInUseException extends __BaseException {
72
+ readonly name: "ResourceInUseException";
73
+ readonly $fault: "client";
74
+ /**
75
+ * @internal
76
+ */
77
+ constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
78
+ }
79
+ /**
80
+ * <p>This exception is thrown when the service encounters an unrecoverable
81
+ * exception.</p>
82
+ * @public
83
+ */
84
+ export declare class ServiceException extends __BaseException {
85
+ readonly name: "ServiceException";
86
+ readonly $fault: "server";
87
+ /**
88
+ * @internal
89
+ */
90
+ constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
91
+ }
92
+ /**
93
+ * <p>The service is unable to process your request at this time.</p>
94
+ * @public
95
+ */
96
+ export declare class ServiceUnavailableException extends __BaseException {
97
+ readonly name: "ServiceUnavailableException";
98
+ readonly $fault: "server";
99
+ /**
100
+ * @internal
101
+ */
102
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
103
+ }
104
+ /**
105
+ * <p>You have specified two or more mutually exclusive parameters. Review the error message
106
+ * for details.</p>
107
+ * @public
108
+ */
109
+ export declare class InvalidParameterCombinationException extends __BaseException {
110
+ readonly name: "InvalidParameterCombinationException";
111
+ readonly $fault: "client";
112
+ /**
113
+ * @internal
114
+ */
115
+ constructor(opts: __ExceptionOptionType<InvalidParameterCombinationException, __BaseException>);
116
+ }
117
+ /**
118
+ * <p>Your version number is out of bounds or does not follow the required syntax.</p>
119
+ * @public
120
+ */
121
+ export declare class InvalidVersionNumberException extends __BaseException {
122
+ readonly name: "InvalidVersionNumberException";
123
+ readonly $fault: "client";
124
+ /**
125
+ * @internal
126
+ */
127
+ constructor(opts: __ExceptionOptionType<InvalidVersionNumberException, __BaseException>);
128
+ }
129
+ /**
130
+ * <p>You have exceeded the number of permitted resources or operations for this service.
131
+ * For service quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/imagebuilder.html#limits_imagebuilder">EC2 Image Builder endpoints and
132
+ * quotas</a>.</p>
133
+ * @public
134
+ */
135
+ export declare class ServiceQuotaExceededException extends __BaseException {
136
+ readonly name: "ServiceQuotaExceededException";
137
+ readonly $fault: "client";
138
+ /**
139
+ * @internal
140
+ */
141
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
142
+ }
143
+ /**
144
+ * <p>The resource that you are trying to create already exists.</p>
145
+ * @public
146
+ */
147
+ export declare class ResourceAlreadyExistsException extends __BaseException {
148
+ readonly name: "ResourceAlreadyExistsException";
149
+ readonly $fault: "client";
150
+ /**
151
+ * @internal
152
+ */
153
+ constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
154
+ }
155
+ /**
156
+ * <p>You have attempted to mutate or delete a resource with a dependency that prohibits
157
+ * this action. See the error message for more details.</p>
158
+ * @public
159
+ */
160
+ export declare class ResourceDependencyException extends __BaseException {
161
+ readonly name: "ResourceDependencyException";
162
+ readonly $fault: "client";
163
+ /**
164
+ * @internal
165
+ */
166
+ constructor(opts: __ExceptionOptionType<ResourceDependencyException, __BaseException>);
167
+ }
168
+ /**
169
+ * <p>At least one of the resources referenced by your request does not exist.</p>
170
+ * @public
171
+ */
172
+ export declare class ResourceNotFoundException extends __BaseException {
173
+ readonly name: "ResourceNotFoundException";
174
+ readonly $fault: "client";
175
+ /**
176
+ * @internal
177
+ */
178
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
179
+ }
180
+ /**
181
+ * <p>You have provided an invalid pagination token in your request.</p>
182
+ * @public
183
+ */
184
+ export declare class InvalidPaginationTokenException extends __BaseException {
185
+ readonly name: "InvalidPaginationTokenException";
186
+ readonly $fault: "client";
187
+ /**
188
+ * @internal
189
+ */
190
+ constructor(opts: __ExceptionOptionType<InvalidPaginationTokenException, __BaseException>);
191
+ }
192
+ /**
193
+ * <p>The specified parameter is invalid. Review the available parameters for the API
194
+ * request.</p>
195
+ * @public
196
+ */
197
+ export declare class InvalidParameterException extends __BaseException {
198
+ readonly name: "InvalidParameterException";
199
+ readonly $fault: "client";
200
+ /**
201
+ * @internal
202
+ */
203
+ constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
204
+ }
205
+ /**
206
+ * <p>The value that you provided for the specified parameter is invalid.</p>
207
+ * @public
208
+ */
209
+ export declare class InvalidParameterValueException extends __BaseException {
210
+ readonly name: "InvalidParameterValueException";
211
+ readonly $fault: "client";
212
+ /**
213
+ * @internal
214
+ */
215
+ constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
216
+ }