@aws-sdk/client-efs 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.
@@ -0,0 +1,905 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { EFSServiceException as __BaseException } from "./EFSServiceException";
3
+ /**
4
+ * <p>Returned if the access point that you are trying to create already exists, with the
5
+ * creation token you provided in the request.</p>
6
+ * @public
7
+ */
8
+ export declare class AccessPointAlreadyExists extends __BaseException {
9
+ readonly name: "AccessPointAlreadyExists";
10
+ readonly $fault: "client";
11
+ /**
12
+ * <p>The error code is a string that uniquely identifies an error condition.
13
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
14
+ * @public
15
+ */
16
+ ErrorCode: string | undefined;
17
+ /**
18
+ * <p>The error message contains a generic description of the error
19
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
20
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
21
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
22
+ * more likely to ignore the error message.</p>
23
+ * @public
24
+ */
25
+ Message?: string | undefined;
26
+ AccessPointId: string | undefined;
27
+ /**
28
+ * @internal
29
+ */
30
+ constructor(opts: __ExceptionOptionType<AccessPointAlreadyExists, __BaseException>);
31
+ }
32
+ /**
33
+ * <p>Returned if the Amazon Web Services account has already created the maximum number of access points
34
+ * allowed per file system. For more informaton, see <a href="https://docs.aws.amazon.com/efs/latest/ug/limits.html#limits-efs-resources-per-account-per-region">https://docs.aws.amazon.com/efs/latest/ug/limits.html#limits-efs-resources-per-account-per-region</a>.</p>
35
+ * @public
36
+ */
37
+ export declare class AccessPointLimitExceeded extends __BaseException {
38
+ readonly name: "AccessPointLimitExceeded";
39
+ readonly $fault: "client";
40
+ /**
41
+ * <p>The error code is a string that uniquely identifies an error condition.
42
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
43
+ * @public
44
+ */
45
+ ErrorCode: string | undefined;
46
+ /**
47
+ * <p>The error message contains a generic description of the error
48
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
49
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
50
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
51
+ * more likely to ignore the error message.</p>
52
+ * @public
53
+ */
54
+ Message?: string | undefined;
55
+ /**
56
+ * @internal
57
+ */
58
+ constructor(opts: __ExceptionOptionType<AccessPointLimitExceeded, __BaseException>);
59
+ }
60
+ /**
61
+ * <p>Returned if the specified <code>AccessPointId</code> value doesn't exist in the
62
+ * requester's Amazon Web Services account.</p>
63
+ * @public
64
+ */
65
+ export declare class AccessPointNotFound extends __BaseException {
66
+ readonly name: "AccessPointNotFound";
67
+ readonly $fault: "client";
68
+ /**
69
+ * <p>The error code is a string that uniquely identifies an error condition.
70
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
71
+ * @public
72
+ */
73
+ ErrorCode: string | undefined;
74
+ /**
75
+ * <p>The error message contains a generic description of the error
76
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
77
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
78
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
79
+ * more likely to ignore the error message.</p>
80
+ * @public
81
+ */
82
+ Message?: string | undefined;
83
+ /**
84
+ * @internal
85
+ */
86
+ constructor(opts: __ExceptionOptionType<AccessPointNotFound, __BaseException>);
87
+ }
88
+ /**
89
+ * <p>Returned if the Availability Zone that was specified for a mount target is
90
+ * different from the Availability Zone that was specified for One Zone storage.
91
+ * For more information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/availability-durability.html">Regional and One Zone storage redundancy</a>.</p>
92
+ * @public
93
+ */
94
+ export declare class AvailabilityZonesMismatch extends __BaseException {
95
+ readonly name: "AvailabilityZonesMismatch";
96
+ readonly $fault: "client";
97
+ /**
98
+ * <p>The error code is a string that uniquely identifies an error condition.
99
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
100
+ * @public
101
+ */
102
+ ErrorCode?: string | undefined;
103
+ /**
104
+ * <p>The error message contains a generic description of the error
105
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
106
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
107
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
108
+ * more likely to ignore the error message.</p>
109
+ * @public
110
+ */
111
+ Message?: string | undefined;
112
+ /**
113
+ * @internal
114
+ */
115
+ constructor(opts: __ExceptionOptionType<AvailabilityZonesMismatch, __BaseException>);
116
+ }
117
+ /**
118
+ * <p>Returned if the request is malformed or contains an error such as an invalid
119
+ * parameter value or a missing required parameter.</p>
120
+ * @public
121
+ */
122
+ export declare class BadRequest extends __BaseException {
123
+ readonly name: "BadRequest";
124
+ readonly $fault: "client";
125
+ /**
126
+ * <p>The error code is a string that uniquely identifies an error condition.
127
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
128
+ * @public
129
+ */
130
+ ErrorCode: string | undefined;
131
+ /**
132
+ * <p>The error message contains a generic description of the error
133
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
134
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
135
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
136
+ * more likely to ignore the error message.</p>
137
+ * @public
138
+ */
139
+ Message?: string | undefined;
140
+ /**
141
+ * @internal
142
+ */
143
+ constructor(opts: __ExceptionOptionType<BadRequest, __BaseException>);
144
+ }
145
+ /**
146
+ * <p>Returned if the source file system in a replication is encrypted but the destination file system is unencrypted.</p>
147
+ * @public
148
+ */
149
+ export declare class ConflictException extends __BaseException {
150
+ readonly name: "ConflictException";
151
+ readonly $fault: "client";
152
+ /**
153
+ * <p>The error code is a string that uniquely identifies an error condition.
154
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
155
+ * @public
156
+ */
157
+ ErrorCode?: string | undefined;
158
+ /**
159
+ * <p>The error message contains a generic description of the error
160
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
161
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
162
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
163
+ * more likely to ignore the error message.</p>
164
+ * @public
165
+ */
166
+ Message?: string | undefined;
167
+ /**
168
+ * @internal
169
+ */
170
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
171
+ }
172
+ /**
173
+ * <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
174
+ * requester's Amazon Web Services account.</p>
175
+ * @public
176
+ */
177
+ export declare class FileSystemNotFound extends __BaseException {
178
+ readonly name: "FileSystemNotFound";
179
+ readonly $fault: "client";
180
+ /**
181
+ * <p>The error code is a string that uniquely identifies an error condition.
182
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
183
+ * @public
184
+ */
185
+ ErrorCode: string | undefined;
186
+ /**
187
+ * <p>The error message contains a generic description of the error
188
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
189
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
190
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
191
+ * more likely to ignore the error message.</p>
192
+ * @public
193
+ */
194
+ Message?: string | undefined;
195
+ /**
196
+ * @internal
197
+ */
198
+ constructor(opts: __ExceptionOptionType<FileSystemNotFound, __BaseException>);
199
+ }
200
+ /**
201
+ * <p>Returned if the file system's lifecycle state is not "available".</p>
202
+ * @public
203
+ */
204
+ export declare class IncorrectFileSystemLifeCycleState extends __BaseException {
205
+ readonly name: "IncorrectFileSystemLifeCycleState";
206
+ readonly $fault: "client";
207
+ /**
208
+ * <p>The error code is a string that uniquely identifies an error condition.
209
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
210
+ * @public
211
+ */
212
+ ErrorCode: string | undefined;
213
+ /**
214
+ * <p>The error message contains a generic description of the error
215
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
216
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
217
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
218
+ * more likely to ignore the error message.</p>
219
+ * @public
220
+ */
221
+ Message?: string | undefined;
222
+ /**
223
+ * @internal
224
+ */
225
+ constructor(opts: __ExceptionOptionType<IncorrectFileSystemLifeCycleState, __BaseException>);
226
+ }
227
+ /**
228
+ * <p>Returned if an error occurred on the server side.</p>
229
+ * @public
230
+ */
231
+ export declare class InternalServerError extends __BaseException {
232
+ readonly name: "InternalServerError";
233
+ readonly $fault: "server";
234
+ /**
235
+ * <p>The error code is a string that uniquely identifies an error condition.
236
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
237
+ * @public
238
+ */
239
+ ErrorCode: string | undefined;
240
+ /**
241
+ * <p>The error message contains a generic description of the error
242
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
243
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
244
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
245
+ * more likely to ignore the error message.</p>
246
+ * @public
247
+ */
248
+ Message?: string | undefined;
249
+ /**
250
+ * @internal
251
+ */
252
+ constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
253
+ }
254
+ /**
255
+ * <p>Returned when the <code>CreateAccessPoint</code> API action is called too quickly and
256
+ * the number of Access Points on the file system is nearing the
257
+ * <a href="https://docs.aws.amazon.com/efs/latest/ug/limits.html#limits-efs-resources-per-account-per-region">limit of 120</a>.</p>
258
+ * @public
259
+ */
260
+ export declare class ThrottlingException extends __BaseException {
261
+ readonly name: "ThrottlingException";
262
+ readonly $fault: "client";
263
+ /**
264
+ * <p>The error code is a string that uniquely identifies an error condition.
265
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
266
+ * @public
267
+ */
268
+ ErrorCode?: string | undefined;
269
+ /**
270
+ * <p>The error message contains a generic description of the error
271
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
272
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
273
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
274
+ * more likely to ignore the error message.</p>
275
+ * @public
276
+ */
277
+ Message?: string | undefined;
278
+ /**
279
+ * @internal
280
+ */
281
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
282
+ }
283
+ /**
284
+ * <p>Returned if the file system you are trying to create already exists, with the
285
+ * creation token you provided.</p>
286
+ * @public
287
+ */
288
+ export declare class FileSystemAlreadyExists extends __BaseException {
289
+ readonly name: "FileSystemAlreadyExists";
290
+ readonly $fault: "client";
291
+ /**
292
+ * <p>The error code is a string that uniquely identifies an error condition.
293
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
294
+ * @public
295
+ */
296
+ ErrorCode: string | undefined;
297
+ /**
298
+ * <p>The error message contains a generic description of the error
299
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
300
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
301
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
302
+ * more likely to ignore the error message.</p>
303
+ * @public
304
+ */
305
+ Message?: string | undefined;
306
+ FileSystemId: string | undefined;
307
+ /**
308
+ * @internal
309
+ */
310
+ constructor(opts: __ExceptionOptionType<FileSystemAlreadyExists, __BaseException>);
311
+ }
312
+ /**
313
+ * <p>Returned if the Amazon Web Services account has already created the maximum number of file systems
314
+ * allowed per account.</p>
315
+ * @public
316
+ */
317
+ export declare class FileSystemLimitExceeded extends __BaseException {
318
+ readonly name: "FileSystemLimitExceeded";
319
+ readonly $fault: "client";
320
+ /**
321
+ * <p>The error code is a string that uniquely identifies an error condition.
322
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
323
+ * @public
324
+ */
325
+ ErrorCode: string | undefined;
326
+ /**
327
+ * <p>The error message contains a generic description of the error
328
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
329
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
330
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
331
+ * more likely to ignore the error message.</p>
332
+ * @public
333
+ */
334
+ Message?: string | undefined;
335
+ /**
336
+ * @internal
337
+ */
338
+ constructor(opts: __ExceptionOptionType<FileSystemLimitExceeded, __BaseException>);
339
+ }
340
+ /**
341
+ * <p>Returned if there's not enough capacity to provision additional throughput. This value
342
+ * might be returned when you try to create a file system in provisioned throughput mode,
343
+ * when you attempt to increase the provisioned throughput of an existing file system, or
344
+ * when you attempt to change an existing file system from Bursting Throughput to
345
+ * Provisioned Throughput mode. Try again later.</p>
346
+ * @public
347
+ */
348
+ export declare class InsufficientThroughputCapacity extends __BaseException {
349
+ readonly name: "InsufficientThroughputCapacity";
350
+ readonly $fault: "server";
351
+ /**
352
+ * <p>The error code is a string that uniquely identifies an error condition.
353
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
354
+ * @public
355
+ */
356
+ ErrorCode: string | undefined;
357
+ /**
358
+ * <p>The error message contains a generic description of the error
359
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
360
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
361
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
362
+ * more likely to ignore the error message.</p>
363
+ * @public
364
+ */
365
+ Message?: string | undefined;
366
+ /**
367
+ * @internal
368
+ */
369
+ constructor(opts: __ExceptionOptionType<InsufficientThroughputCapacity, __BaseException>);
370
+ }
371
+ /**
372
+ * <p>Returned if the throughput mode or amount of provisioned throughput can't be changed
373
+ * because the throughput limit of 1024 MiB/s has been reached.</p>
374
+ * @public
375
+ */
376
+ export declare class ThroughputLimitExceeded extends __BaseException {
377
+ readonly name: "ThroughputLimitExceeded";
378
+ readonly $fault: "client";
379
+ /**
380
+ * <p>The error code is a string that uniquely identifies an error condition.
381
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
382
+ * @public
383
+ */
384
+ ErrorCode: string | undefined;
385
+ /**
386
+ * <p>The error message contains a generic description of the error
387
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
388
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
389
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
390
+ * more likely to ignore the error message.</p>
391
+ * @public
392
+ */
393
+ Message?: string | undefined;
394
+ /**
395
+ * @internal
396
+ */
397
+ constructor(opts: __ExceptionOptionType<ThroughputLimitExceeded, __BaseException>);
398
+ }
399
+ /**
400
+ * <p>Returned if the requested Amazon EFS functionality is not available in the specified Availability Zone.</p>
401
+ * @public
402
+ */
403
+ export declare class UnsupportedAvailabilityZone extends __BaseException {
404
+ readonly name: "UnsupportedAvailabilityZone";
405
+ readonly $fault: "client";
406
+ /**
407
+ * <p>The error code is a string that uniquely identifies an error condition.
408
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
409
+ * @public
410
+ */
411
+ ErrorCode: string | undefined;
412
+ /**
413
+ * <p>The error message contains a generic description of the error
414
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
415
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
416
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
417
+ * more likely to ignore the error message.</p>
418
+ * @public
419
+ */
420
+ Message?: string | undefined;
421
+ /**
422
+ * @internal
423
+ */
424
+ constructor(opts: __ExceptionOptionType<UnsupportedAvailabilityZone, __BaseException>);
425
+ }
426
+ /**
427
+ * <p>Returned if the request specified an <code>IpAddress</code> that is already in use
428
+ * in the subnet.</p>
429
+ * @public
430
+ */
431
+ export declare class IpAddressInUse extends __BaseException {
432
+ readonly name: "IpAddressInUse";
433
+ readonly $fault: "client";
434
+ /**
435
+ * <p>The error code is a string that uniquely identifies an error condition.
436
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
437
+ * @public
438
+ */
439
+ ErrorCode: string | undefined;
440
+ /**
441
+ * <p>The error message contains a generic description of the error
442
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
443
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
444
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
445
+ * more likely to ignore the error message.</p>
446
+ * @public
447
+ */
448
+ Message?: string | undefined;
449
+ /**
450
+ * @internal
451
+ */
452
+ constructor(opts: __ExceptionOptionType<IpAddressInUse, __BaseException>);
453
+ }
454
+ /**
455
+ * <p>Returned if the mount target would violate one of the specified restrictions based
456
+ * on the file system's existing mount targets.</p>
457
+ * @public
458
+ */
459
+ export declare class MountTargetConflict extends __BaseException {
460
+ readonly name: "MountTargetConflict";
461
+ readonly $fault: "client";
462
+ /**
463
+ * <p>The error code is a string that uniquely identifies an error condition.
464
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
465
+ * @public
466
+ */
467
+ ErrorCode: string | undefined;
468
+ /**
469
+ * <p>The error message contains a generic description of the error
470
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
471
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
472
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
473
+ * more likely to ignore the error message.</p>
474
+ * @public
475
+ */
476
+ Message?: string | undefined;
477
+ /**
478
+ * @internal
479
+ */
480
+ constructor(opts: __ExceptionOptionType<MountTargetConflict, __BaseException>);
481
+ }
482
+ /**
483
+ * <p>The calling account has reached the limit for elastic network interfaces for the
484
+ * specific Amazon Web Services Region. Either delete some network interfaces or request
485
+ * that the account quota be raised. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html">Amazon VPC Quotas</a>
486
+ * in the <i>Amazon VPC User Guide</i> (see the <b>Network
487
+ * interfaces per Region</b> entry in the <b>Network
488
+ * interfaces</b> table). </p>
489
+ * @public
490
+ */
491
+ export declare class NetworkInterfaceLimitExceeded extends __BaseException {
492
+ readonly name: "NetworkInterfaceLimitExceeded";
493
+ readonly $fault: "client";
494
+ /**
495
+ * <p>The error code is a string that uniquely identifies an error condition.
496
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
497
+ * @public
498
+ */
499
+ ErrorCode: string | undefined;
500
+ /**
501
+ * <p>The error message contains a generic description of the error
502
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
503
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
504
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
505
+ * more likely to ignore the error message.</p>
506
+ * @public
507
+ */
508
+ Message?: string | undefined;
509
+ /**
510
+ * @internal
511
+ */
512
+ constructor(opts: __ExceptionOptionType<NetworkInterfaceLimitExceeded, __BaseException>);
513
+ }
514
+ /**
515
+ * <p>Returned if <code>IpAddress</code> was not specified in the request and there are
516
+ * no free IP addresses in the subnet.</p>
517
+ * @public
518
+ */
519
+ export declare class NoFreeAddressesInSubnet extends __BaseException {
520
+ readonly name: "NoFreeAddressesInSubnet";
521
+ readonly $fault: "client";
522
+ /**
523
+ * <p>The error code is a string that uniquely identifies an error condition.
524
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
525
+ * @public
526
+ */
527
+ ErrorCode: string | undefined;
528
+ /**
529
+ * <p>The error message contains a generic description of the error
530
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
531
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
532
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
533
+ * more likely to ignore the error message.</p>
534
+ * @public
535
+ */
536
+ Message?: string | undefined;
537
+ /**
538
+ * @internal
539
+ */
540
+ constructor(opts: __ExceptionOptionType<NoFreeAddressesInSubnet, __BaseException>);
541
+ }
542
+ /**
543
+ * <p>Returned if the number of <code>SecurityGroups</code> specified in the request is
544
+ * greater than the limit, which is based on account quota. Either delete some security groups
545
+ * or request that the account quota be raised. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html">Amazon VPC Quotas</a>
546
+ * in the <i>Amazon VPC User Guide</i> (see the <b>Security Groups</b>
547
+ * table).
548
+ * </p>
549
+ * @public
550
+ */
551
+ export declare class SecurityGroupLimitExceeded extends __BaseException {
552
+ readonly name: "SecurityGroupLimitExceeded";
553
+ readonly $fault: "client";
554
+ /**
555
+ * <p>The error code is a string that uniquely identifies an error condition.
556
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
557
+ * @public
558
+ */
559
+ ErrorCode: string | undefined;
560
+ /**
561
+ * <p>The error message contains a generic description of the error
562
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
563
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
564
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
565
+ * more likely to ignore the error message.</p>
566
+ * @public
567
+ */
568
+ Message?: string | undefined;
569
+ /**
570
+ * @internal
571
+ */
572
+ constructor(opts: __ExceptionOptionType<SecurityGroupLimitExceeded, __BaseException>);
573
+ }
574
+ /**
575
+ * <p>Returned if one of the specified security groups doesn't exist in the subnet's
576
+ * virtual private cloud (VPC).</p>
577
+ * @public
578
+ */
579
+ export declare class SecurityGroupNotFound extends __BaseException {
580
+ readonly name: "SecurityGroupNotFound";
581
+ readonly $fault: "client";
582
+ /**
583
+ * <p>The error code is a string that uniquely identifies an error condition.
584
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
585
+ * @public
586
+ */
587
+ ErrorCode: string | undefined;
588
+ /**
589
+ * <p>The error message contains a generic description of the error
590
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
591
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
592
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
593
+ * more likely to ignore the error message.</p>
594
+ * @public
595
+ */
596
+ Message?: string | undefined;
597
+ /**
598
+ * @internal
599
+ */
600
+ constructor(opts: __ExceptionOptionType<SecurityGroupNotFound, __BaseException>);
601
+ }
602
+ /**
603
+ * <p>Returned if there is no subnet with ID <code>SubnetId</code> provided in the
604
+ * request.</p>
605
+ * @public
606
+ */
607
+ export declare class SubnetNotFound extends __BaseException {
608
+ readonly name: "SubnetNotFound";
609
+ readonly $fault: "client";
610
+ /**
611
+ * <p>The error code is a string that uniquely identifies an error condition.
612
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
613
+ * @public
614
+ */
615
+ ErrorCode: string | undefined;
616
+ /**
617
+ * <p>The error message contains a generic description of the error
618
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
619
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
620
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
621
+ * more likely to ignore the error message.</p>
622
+ * @public
623
+ */
624
+ Message?: string | undefined;
625
+ /**
626
+ * @internal
627
+ */
628
+ constructor(opts: __ExceptionOptionType<SubnetNotFound, __BaseException>);
629
+ }
630
+ /**
631
+ * <p>Returned if the specified file system does not have a replication
632
+ * configuration.</p>
633
+ * @public
634
+ */
635
+ export declare class ReplicationNotFound extends __BaseException {
636
+ readonly name: "ReplicationNotFound";
637
+ readonly $fault: "client";
638
+ /**
639
+ * <p>ReplicationNotFound</p>
640
+ * @public
641
+ */
642
+ ErrorCode?: string | undefined;
643
+ /**
644
+ * <p>The error message contains a generic description of the error
645
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
646
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
647
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
648
+ * more likely to ignore the error message.</p>
649
+ * @public
650
+ */
651
+ Message?: string | undefined;
652
+ /**
653
+ * @internal
654
+ */
655
+ constructor(opts: __ExceptionOptionType<ReplicationNotFound, __BaseException>);
656
+ }
657
+ /**
658
+ * <p>Returned if the Backup service is not available in the Amazon Web Services Region in which the request was made.</p>
659
+ * @public
660
+ */
661
+ export declare class ValidationException extends __BaseException {
662
+ readonly name: "ValidationException";
663
+ readonly $fault: "client";
664
+ /**
665
+ * <p>The error code is a string that uniquely identifies an error condition.
666
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
667
+ * @public
668
+ */
669
+ ErrorCode: string | undefined;
670
+ /**
671
+ * <p>The error message contains a generic description of the error
672
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
673
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
674
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
675
+ * more likely to ignore the error message.</p>
676
+ * @public
677
+ */
678
+ Message?: string | undefined;
679
+ /**
680
+ * @internal
681
+ */
682
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
683
+ }
684
+ /**
685
+ * <p>Returned if a file system has mount targets.</p>
686
+ * @public
687
+ */
688
+ export declare class FileSystemInUse extends __BaseException {
689
+ readonly name: "FileSystemInUse";
690
+ readonly $fault: "client";
691
+ /**
692
+ * <p>The error code is a string that uniquely identifies an error condition.
693
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
694
+ * @public
695
+ */
696
+ ErrorCode: string | undefined;
697
+ /**
698
+ * <p>The error message contains a generic description of the error
699
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
700
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
701
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
702
+ * more likely to ignore the error message.</p>
703
+ * @public
704
+ */
705
+ Message?: string | undefined;
706
+ /**
707
+ * @internal
708
+ */
709
+ constructor(opts: __ExceptionOptionType<FileSystemInUse, __BaseException>);
710
+ }
711
+ /**
712
+ * <p>The service timed out trying to fulfill the request, and the client should try the
713
+ * call again.</p>
714
+ * @public
715
+ */
716
+ export declare class DependencyTimeout extends __BaseException {
717
+ readonly name: "DependencyTimeout";
718
+ readonly $fault: "server";
719
+ /**
720
+ * <p>The error code is a string that uniquely identifies an error condition.
721
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
722
+ * @public
723
+ */
724
+ ErrorCode: string | undefined;
725
+ /**
726
+ * <p>The error message contains a generic description of the error
727
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
728
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
729
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
730
+ * more likely to ignore the error message.</p>
731
+ * @public
732
+ */
733
+ Message?: string | undefined;
734
+ /**
735
+ * @internal
736
+ */
737
+ constructor(opts: __ExceptionOptionType<DependencyTimeout, __BaseException>);
738
+ }
739
+ /**
740
+ * <p>Returned if there is no mount target with the specified ID found in the
741
+ * caller's Amazon Web Services account.</p>
742
+ * @public
743
+ */
744
+ export declare class MountTargetNotFound extends __BaseException {
745
+ readonly name: "MountTargetNotFound";
746
+ readonly $fault: "client";
747
+ /**
748
+ * <p>The error code is a string that uniquely identifies an error condition.
749
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
750
+ * @public
751
+ */
752
+ ErrorCode: string | undefined;
753
+ /**
754
+ * <p>The error message contains a generic description of the error
755
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
756
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
757
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
758
+ * more likely to ignore the error message.</p>
759
+ * @public
760
+ */
761
+ Message?: string | undefined;
762
+ /**
763
+ * @internal
764
+ */
765
+ constructor(opts: __ExceptionOptionType<MountTargetNotFound, __BaseException>);
766
+ }
767
+ /**
768
+ * <p>Returned if <code>no backup</code> is specified for a One Zone EFS file system.</p>
769
+ * @public
770
+ */
771
+ export declare class PolicyNotFound extends __BaseException {
772
+ readonly name: "PolicyNotFound";
773
+ readonly $fault: "client";
774
+ /**
775
+ * <p>The error code is a string that uniquely identifies an error condition.
776
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
777
+ * @public
778
+ */
779
+ ErrorCode?: string | undefined;
780
+ /**
781
+ * <p>The error message contains a generic description of the error
782
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
783
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
784
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
785
+ * more likely to ignore the error message.</p>
786
+ * @public
787
+ */
788
+ Message?: string | undefined;
789
+ /**
790
+ * @internal
791
+ */
792
+ constructor(opts: __ExceptionOptionType<PolicyNotFound, __BaseException>);
793
+ }
794
+ /**
795
+ * <p>Returned if the mount target is not in the correct state for the
796
+ * operation.</p>
797
+ * @public
798
+ */
799
+ export declare class IncorrectMountTargetState extends __BaseException {
800
+ readonly name: "IncorrectMountTargetState";
801
+ readonly $fault: "client";
802
+ /**
803
+ * <p>The error code is a string that uniquely identifies an error condition.
804
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
805
+ * @public
806
+ */
807
+ ErrorCode: string | undefined;
808
+ /**
809
+ * <p>The error message contains a generic description of the error
810
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
811
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
812
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
813
+ * more likely to ignore the error message.</p>
814
+ * @public
815
+ */
816
+ Message?: string | undefined;
817
+ /**
818
+ * @internal
819
+ */
820
+ constructor(opts: __ExceptionOptionType<IncorrectMountTargetState, __BaseException>);
821
+ }
822
+ /**
823
+ * <p>Returned if the <code>FileSystemPolicy</code> is malformed or contains an error such
824
+ * as a parameter value that is not valid or a missing required parameter. Returned in the
825
+ * case of a policy lockout safety check error.</p>
826
+ * @public
827
+ */
828
+ export declare class InvalidPolicyException extends __BaseException {
829
+ readonly name: "InvalidPolicyException";
830
+ readonly $fault: "client";
831
+ /**
832
+ * <p>The error code is a string that uniquely identifies an error condition.
833
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
834
+ * @public
835
+ */
836
+ ErrorCode?: string | undefined;
837
+ /**
838
+ * <p>The error message contains a generic description of the error
839
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
840
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
841
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
842
+ * more likely to ignore the error message.</p>
843
+ * @public
844
+ */
845
+ Message?: string | undefined;
846
+ /**
847
+ * @internal
848
+ */
849
+ constructor(opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>);
850
+ }
851
+ /**
852
+ * <p>Returned if you don’t wait at least 24 hours before either changing the throughput mode, or
853
+ * decreasing the Provisioned Throughput value.</p>
854
+ * @public
855
+ */
856
+ export declare class TooManyRequests extends __BaseException {
857
+ readonly name: "TooManyRequests";
858
+ readonly $fault: "client";
859
+ /**
860
+ * <p>The error code is a string that uniquely identifies an error condition.
861
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
862
+ * @public
863
+ */
864
+ ErrorCode: string | undefined;
865
+ /**
866
+ * <p>The error message contains a generic description of the error
867
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
868
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
869
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
870
+ * more likely to ignore the error message.</p>
871
+ * @public
872
+ */
873
+ Message?: string | undefined;
874
+ /**
875
+ * @internal
876
+ */
877
+ constructor(opts: __ExceptionOptionType<TooManyRequests, __BaseException>);
878
+ }
879
+ /**
880
+ * <p>Returned if the file system is already included in a replication configuration.></p>
881
+ * @public
882
+ */
883
+ export declare class ReplicationAlreadyExists extends __BaseException {
884
+ readonly name: "ReplicationAlreadyExists";
885
+ readonly $fault: "client";
886
+ /**
887
+ * <p>The error code is a string that uniquely identifies an error condition.
888
+ * It is meant to be read and understood by programs that detect and handle errors by type. </p>
889
+ * @public
890
+ */
891
+ ErrorCode?: string | undefined;
892
+ /**
893
+ * <p>The error message contains a generic description of the error
894
+ * condition in English. It is intended for a human audience. Simple programs display the message directly
895
+ * to the end user if they encounter an error condition they don't know how or don't care to handle.
896
+ * Sophisticated programs with more exhaustive error handling and proper internationalization are
897
+ * more likely to ignore the error message.</p>
898
+ * @public
899
+ */
900
+ Message?: string | undefined;
901
+ /**
902
+ * @internal
903
+ */
904
+ constructor(opts: __ExceptionOptionType<ReplicationAlreadyExists, __BaseException>);
905
+ }