@aws-sdk/client-efs 3.169.0 → 3.170.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.
Files changed (51) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/EFS.d.ts +556 -155
  3. package/dist-types/ts3.4/EFSClient.d.ts +308 -103
  4. package/dist-types/ts3.4/commands/CreateAccessPointCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/CreateMountTargetCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/CreateReplicationConfigurationCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/DeleteAccessPointCommand.d.ts +33 -17
  10. package/dist-types/ts3.4/commands/DeleteFileSystemCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/DeleteFileSystemPolicyCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/DeleteMountTargetCommand.d.ts +33 -17
  13. package/dist-types/ts3.4/commands/DeleteReplicationConfigurationCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/DescribeAccessPointsCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/DescribeAccountPreferencesCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/DescribeBackupPolicyCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/DescribeFileSystemPolicyCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/DescribeFileSystemsCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/DescribeLifecycleConfigurationCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/DescribeMountTargetsCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/DescribeReplicationConfigurationsCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  26. package/dist-types/ts3.4/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/PutAccountPreferencesCommand.d.ts +41 -17
  28. package/dist-types/ts3.4/commands/PutBackupPolicyCommand.d.ts +37 -17
  29. package/dist-types/ts3.4/commands/PutFileSystemPolicyCommand.d.ts +38 -17
  30. package/dist-types/ts3.4/commands/PutLifecycleConfigurationCommand.d.ts +41 -17
  31. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  32. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  33. package/dist-types/ts3.4/commands/UpdateFileSystemCommand.d.ts +37 -17
  34. package/dist-types/ts3.4/commands/index.d.ts +30 -30
  35. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  36. package/dist-types/ts3.4/index.d.ts +6 -6
  37. package/dist-types/ts3.4/models/EFSServiceException.d.ts +8 -6
  38. package/dist-types/ts3.4/models/index.d.ts +1 -1
  39. package/dist-types/ts3.4/models/models_0.d.ts +1056 -961
  40. package/dist-types/ts3.4/pagination/DescribeAccessPointsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/DescribeFileSystemsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/DescribeTagsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  44. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +365 -92
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  51. package/package.json +34 -34
@@ -1,961 +1,1056 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { EFSServiceException as __BaseException } from "./EFSServiceException";
3
-
4
- export declare class AccessPointAlreadyExists extends __BaseException {
5
- readonly name: "AccessPointAlreadyExists";
6
- readonly $fault: "client";
7
-
8
- ErrorCode: string | undefined;
9
-
10
- Message?: string;
11
- AccessPointId: string | undefined;
12
-
13
- constructor(opts: __ExceptionOptionType<AccessPointAlreadyExists, __BaseException>);
14
- }
15
- export declare enum LifeCycleState {
16
- AVAILABLE = "available",
17
- CREATING = "creating",
18
- DELETED = "deleted",
19
- DELETING = "deleting",
20
- ERROR = "error",
21
- UPDATING = "updating"
22
- }
23
-
24
- export interface PosixUser {
25
-
26
- Uid: number | undefined;
27
-
28
- Gid: number | undefined;
29
-
30
- SecondaryGids?: number[];
31
- }
32
-
33
- export interface CreationInfo {
34
-
35
- OwnerUid: number | undefined;
36
-
37
- OwnerGid: number | undefined;
38
-
39
- Permissions: string | undefined;
40
- }
41
-
42
- export interface RootDirectory {
43
-
44
- Path?: string;
45
-
46
- CreationInfo?: CreationInfo;
47
- }
48
-
49
- export interface Tag {
50
-
51
- Key: string | undefined;
52
-
53
- Value: string | undefined;
54
- }
55
-
56
- export interface AccessPointDescription {
57
-
58
- ClientToken?: string;
59
-
60
- Name?: string;
61
-
62
- Tags?: Tag[];
63
-
64
- AccessPointId?: string;
65
-
66
- AccessPointArn?: string;
67
-
68
- FileSystemId?: string;
69
-
70
- PosixUser?: PosixUser;
71
-
72
- RootDirectory?: RootDirectory;
73
-
74
- OwnerId?: string;
75
-
76
- LifeCycleState?: LifeCycleState | string;
77
- }
78
-
79
- export declare class AccessPointLimitExceeded extends __BaseException {
80
- readonly name: "AccessPointLimitExceeded";
81
- readonly $fault: "client";
82
-
83
- ErrorCode: string | undefined;
84
-
85
- Message?: string;
86
-
87
- constructor(opts: __ExceptionOptionType<AccessPointLimitExceeded, __BaseException>);
88
- }
89
-
90
- export declare class AccessPointNotFound extends __BaseException {
91
- readonly name: "AccessPointNotFound";
92
- readonly $fault: "client";
93
-
94
- ErrorCode: string | undefined;
95
-
96
- Message?: string;
97
-
98
- constructor(opts: __ExceptionOptionType<AccessPointNotFound, __BaseException>);
99
- }
100
-
101
- export declare class AvailabilityZonesMismatch extends __BaseException {
102
- readonly name: "AvailabilityZonesMismatch";
103
- readonly $fault: "client";
104
-
105
- ErrorCode?: string;
106
-
107
- Message?: string;
108
-
109
- constructor(opts: __ExceptionOptionType<AvailabilityZonesMismatch, __BaseException>);
110
- }
111
- export declare enum Status {
112
- DISABLED = "DISABLED",
113
- DISABLING = "DISABLING",
114
- ENABLED = "ENABLED",
115
- ENABLING = "ENABLING"
116
- }
117
-
118
- export interface BackupPolicy {
119
-
120
- Status: Status | string | undefined;
121
- }
122
- export interface BackupPolicyDescription {
123
-
124
- BackupPolicy?: BackupPolicy;
125
- }
126
-
127
- export declare class BadRequest extends __BaseException {
128
- readonly name: "BadRequest";
129
- readonly $fault: "client";
130
-
131
- ErrorCode: string | undefined;
132
-
133
- Message?: string;
134
-
135
- constructor(opts: __ExceptionOptionType<BadRequest, __BaseException>);
136
- }
137
- export interface CreateAccessPointRequest {
138
-
139
- ClientToken?: string;
140
-
141
- Tags?: Tag[];
142
-
143
- FileSystemId: string | undefined;
144
-
145
- PosixUser?: PosixUser;
146
-
147
- RootDirectory?: RootDirectory;
148
- }
149
-
150
- export declare class FileSystemNotFound extends __BaseException {
151
- readonly name: "FileSystemNotFound";
152
- readonly $fault: "client";
153
-
154
- ErrorCode: string | undefined;
155
-
156
- Message?: string;
157
-
158
- constructor(opts: __ExceptionOptionType<FileSystemNotFound, __BaseException>);
159
- }
160
-
161
- export declare class IncorrectFileSystemLifeCycleState extends __BaseException {
162
- readonly name: "IncorrectFileSystemLifeCycleState";
163
- readonly $fault: "client";
164
-
165
- ErrorCode: string | undefined;
166
-
167
- Message?: string;
168
-
169
- constructor(opts: __ExceptionOptionType<IncorrectFileSystemLifeCycleState, __BaseException>);
170
- }
171
-
172
- export declare class InternalServerError extends __BaseException {
173
- readonly name: "InternalServerError";
174
- readonly $fault: "server";
175
-
176
- ErrorCode: string | undefined;
177
-
178
- Message?: string;
179
-
180
- constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
181
- }
182
-
183
- export declare class ThrottlingException extends __BaseException {
184
- readonly name: "ThrottlingException";
185
- readonly $fault: "client";
186
-
187
- ErrorCode?: string;
188
-
189
- Message?: string;
190
-
191
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
192
- }
193
- export declare enum PerformanceMode {
194
- GENERAL_PURPOSE = "generalPurpose",
195
- MAX_IO = "maxIO"
196
- }
197
- export declare enum ThroughputMode {
198
- BURSTING = "bursting",
199
- PROVISIONED = "provisioned"
200
- }
201
- export interface CreateFileSystemRequest {
202
-
203
- CreationToken?: string;
204
-
205
- PerformanceMode?: PerformanceMode | string;
206
-
207
- Encrypted?: boolean;
208
-
209
- KmsKeyId?: string;
210
-
211
- ThroughputMode?: ThroughputMode | string;
212
-
213
- ProvisionedThroughputInMibps?: number;
214
-
215
- AvailabilityZoneName?: string;
216
-
217
- Backup?: boolean;
218
-
219
- Tags?: Tag[];
220
- }
221
-
222
- export declare class FileSystemAlreadyExists extends __BaseException {
223
- readonly name: "FileSystemAlreadyExists";
224
- readonly $fault: "client";
225
-
226
- ErrorCode: string | undefined;
227
-
228
- Message?: string;
229
- FileSystemId: string | undefined;
230
-
231
- constructor(opts: __ExceptionOptionType<FileSystemAlreadyExists, __BaseException>);
232
- }
233
-
234
- export interface FileSystemSize {
235
-
236
- Value: number | undefined;
237
-
238
- Timestamp?: Date;
239
-
240
- ValueInIA?: number;
241
-
242
- ValueInStandard?: number;
243
- }
244
-
245
- export interface FileSystemDescription {
246
-
247
- OwnerId: string | undefined;
248
-
249
- CreationToken: string | undefined;
250
-
251
- FileSystemId: string | undefined;
252
-
253
- FileSystemArn?: string;
254
-
255
- CreationTime: Date | undefined;
256
-
257
- LifeCycleState: LifeCycleState | string | undefined;
258
-
259
- Name?: string;
260
-
261
- NumberOfMountTargets: number | undefined;
262
-
263
- SizeInBytes: FileSystemSize | undefined;
264
-
265
- PerformanceMode: PerformanceMode | string | undefined;
266
-
267
- Encrypted?: boolean;
268
-
269
- KmsKeyId?: string;
270
-
271
- ThroughputMode?: ThroughputMode | string;
272
-
273
- ProvisionedThroughputInMibps?: number;
274
-
275
- AvailabilityZoneName?: string;
276
-
277
- AvailabilityZoneId?: string;
278
-
279
- Tags: Tag[] | undefined;
280
- }
281
-
282
- export declare class FileSystemLimitExceeded extends __BaseException {
283
- readonly name: "FileSystemLimitExceeded";
284
- readonly $fault: "client";
285
-
286
- ErrorCode: string | undefined;
287
-
288
- Message?: string;
289
-
290
- constructor(opts: __ExceptionOptionType<FileSystemLimitExceeded, __BaseException>);
291
- }
292
-
293
- export declare class InsufficientThroughputCapacity extends __BaseException {
294
- readonly name: "InsufficientThroughputCapacity";
295
- readonly $fault: "server";
296
-
297
- ErrorCode: string | undefined;
298
-
299
- Message?: string;
300
-
301
- constructor(opts: __ExceptionOptionType<InsufficientThroughputCapacity, __BaseException>);
302
- }
303
-
304
- export declare class ThroughputLimitExceeded extends __BaseException {
305
- readonly name: "ThroughputLimitExceeded";
306
- readonly $fault: "client";
307
-
308
- ErrorCode: string | undefined;
309
-
310
- Message?: string;
311
-
312
- constructor(opts: __ExceptionOptionType<ThroughputLimitExceeded, __BaseException>);
313
- }
314
-
315
- export declare class UnsupportedAvailabilityZone extends __BaseException {
316
- readonly name: "UnsupportedAvailabilityZone";
317
- readonly $fault: "client";
318
-
319
- ErrorCode: string | undefined;
320
-
321
- Message?: string;
322
-
323
- constructor(opts: __ExceptionOptionType<UnsupportedAvailabilityZone, __BaseException>);
324
- }
325
-
326
- export interface CreateMountTargetRequest {
327
-
328
- FileSystemId: string | undefined;
329
-
330
- SubnetId: string | undefined;
331
-
332
- IpAddress?: string;
333
-
334
- SecurityGroups?: string[];
335
- }
336
-
337
- export declare class IpAddressInUse extends __BaseException {
338
- readonly name: "IpAddressInUse";
339
- readonly $fault: "client";
340
-
341
- ErrorCode: string | undefined;
342
-
343
- Message?: string;
344
-
345
- constructor(opts: __ExceptionOptionType<IpAddressInUse, __BaseException>);
346
- }
347
-
348
- export declare class MountTargetConflict extends __BaseException {
349
- readonly name: "MountTargetConflict";
350
- readonly $fault: "client";
351
-
352
- ErrorCode: string | undefined;
353
-
354
- Message?: string;
355
-
356
- constructor(opts: __ExceptionOptionType<MountTargetConflict, __BaseException>);
357
- }
358
-
359
- export interface MountTargetDescription {
360
-
361
- OwnerId?: string;
362
-
363
- MountTargetId: string | undefined;
364
-
365
- FileSystemId: string | undefined;
366
-
367
- SubnetId: string | undefined;
368
-
369
- LifeCycleState: LifeCycleState | string | undefined;
370
-
371
- IpAddress?: string;
372
-
373
- NetworkInterfaceId?: string;
374
-
375
- AvailabilityZoneId?: string;
376
-
377
- AvailabilityZoneName?: string;
378
-
379
- VpcId?: string;
380
- }
381
-
382
- export declare class NetworkInterfaceLimitExceeded extends __BaseException {
383
- readonly name: "NetworkInterfaceLimitExceeded";
384
- readonly $fault: "client";
385
-
386
- ErrorCode: string | undefined;
387
-
388
- Message?: string;
389
-
390
- constructor(opts: __ExceptionOptionType<NetworkInterfaceLimitExceeded, __BaseException>);
391
- }
392
-
393
- export declare class NoFreeAddressesInSubnet extends __BaseException {
394
- readonly name: "NoFreeAddressesInSubnet";
395
- readonly $fault: "client";
396
-
397
- ErrorCode: string | undefined;
398
-
399
- Message?: string;
400
-
401
- constructor(opts: __ExceptionOptionType<NoFreeAddressesInSubnet, __BaseException>);
402
- }
403
-
404
- export declare class SecurityGroupLimitExceeded extends __BaseException {
405
- readonly name: "SecurityGroupLimitExceeded";
406
- readonly $fault: "client";
407
-
408
- ErrorCode: string | undefined;
409
-
410
- Message?: string;
411
-
412
- constructor(opts: __ExceptionOptionType<SecurityGroupLimitExceeded, __BaseException>);
413
- }
414
-
415
- export declare class SecurityGroupNotFound extends __BaseException {
416
- readonly name: "SecurityGroupNotFound";
417
- readonly $fault: "client";
418
-
419
- ErrorCode: string | undefined;
420
-
421
- Message?: string;
422
-
423
- constructor(opts: __ExceptionOptionType<SecurityGroupNotFound, __BaseException>);
424
- }
425
-
426
- export declare class SubnetNotFound extends __BaseException {
427
- readonly name: "SubnetNotFound";
428
- readonly $fault: "client";
429
-
430
- ErrorCode: string | undefined;
431
-
432
- Message?: string;
433
-
434
- constructor(opts: __ExceptionOptionType<SubnetNotFound, __BaseException>);
435
- }
436
-
437
- export interface DestinationToCreate {
438
-
439
- Region?: string;
440
-
441
- AvailabilityZoneName?: string;
442
-
443
- KmsKeyId?: string;
444
- }
445
- export interface CreateReplicationConfigurationRequest {
446
-
447
- SourceFileSystemId: string | undefined;
448
-
449
- Destinations: DestinationToCreate[] | undefined;
450
- }
451
- export declare enum ReplicationStatus {
452
- DELETING = "DELETING",
453
- ENABLED = "ENABLED",
454
- ENABLING = "ENABLING",
455
- ERROR = "ERROR"
456
- }
457
-
458
- export interface Destination {
459
-
460
- Status: ReplicationStatus | string | undefined;
461
-
462
- FileSystemId: string | undefined;
463
-
464
- Region: string | undefined;
465
-
466
- LastReplicatedTimestamp?: Date;
467
- }
468
- export interface ReplicationConfigurationDescription {
469
-
470
- SourceFileSystemId: string | undefined;
471
-
472
- SourceFileSystemRegion: string | undefined;
473
-
474
- SourceFileSystemArn: string | undefined;
475
-
476
- OriginalSourceFileSystemArn: string | undefined;
477
-
478
- CreationTime: Date | undefined;
479
-
480
- Destinations: Destination[] | undefined;
481
- }
482
-
483
- export declare class ReplicationNotFound extends __BaseException {
484
- readonly name: "ReplicationNotFound";
485
- readonly $fault: "client";
486
-
487
- ErrorCode?: string;
488
-
489
- Message?: string;
490
-
491
- constructor(opts: __ExceptionOptionType<ReplicationNotFound, __BaseException>);
492
- }
493
-
494
- export declare class ValidationException extends __BaseException {
495
- readonly name: "ValidationException";
496
- readonly $fault: "client";
497
-
498
- ErrorCode: string | undefined;
499
-
500
- Message?: string;
501
-
502
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
503
- }
504
-
505
- export interface CreateTagsRequest {
506
-
507
- FileSystemId: string | undefined;
508
-
509
- Tags: Tag[] | undefined;
510
- }
511
- export interface DeleteAccessPointRequest {
512
-
513
- AccessPointId: string | undefined;
514
- }
515
-
516
- export interface DeleteFileSystemRequest {
517
-
518
- FileSystemId: string | undefined;
519
- }
520
-
521
- export declare class FileSystemInUse extends __BaseException {
522
- readonly name: "FileSystemInUse";
523
- readonly $fault: "client";
524
-
525
- ErrorCode: string | undefined;
526
-
527
- Message?: string;
528
-
529
- constructor(opts: __ExceptionOptionType<FileSystemInUse, __BaseException>);
530
- }
531
- export interface DeleteFileSystemPolicyRequest {
532
-
533
- FileSystemId: string | undefined;
534
- }
535
-
536
- export interface DeleteMountTargetRequest {
537
-
538
- MountTargetId: string | undefined;
539
- }
540
-
541
- export declare class DependencyTimeout extends __BaseException {
542
- readonly name: "DependencyTimeout";
543
- readonly $fault: "server";
544
-
545
- ErrorCode: string | undefined;
546
-
547
- Message?: string;
548
-
549
- constructor(opts: __ExceptionOptionType<DependencyTimeout, __BaseException>);
550
- }
551
-
552
- export declare class MountTargetNotFound extends __BaseException {
553
- readonly name: "MountTargetNotFound";
554
- readonly $fault: "client";
555
-
556
- ErrorCode: string | undefined;
557
-
558
- Message?: string;
559
-
560
- constructor(opts: __ExceptionOptionType<MountTargetNotFound, __BaseException>);
561
- }
562
- export interface DeleteReplicationConfigurationRequest {
563
-
564
- SourceFileSystemId: string | undefined;
565
- }
566
-
567
- export interface DeleteTagsRequest {
568
-
569
- FileSystemId: string | undefined;
570
-
571
- TagKeys: string[] | undefined;
572
- }
573
- export interface DescribeAccessPointsRequest {
574
-
575
- MaxResults?: number;
576
-
577
- NextToken?: string;
578
-
579
- AccessPointId?: string;
580
-
581
- FileSystemId?: string;
582
- }
583
- export interface DescribeAccessPointsResponse {
584
-
585
- AccessPoints?: AccessPointDescription[];
586
-
587
- NextToken?: string;
588
- }
589
- export interface DescribeAccountPreferencesRequest {
590
-
591
- NextToken?: string;
592
-
593
- MaxResults?: number;
594
- }
595
- export declare enum ResourceIdType {
596
- LongId = "LONG_ID",
597
- ShortId = "SHORT_ID"
598
- }
599
- export declare enum Resource {
600
- FileSystem = "FILE_SYSTEM",
601
- MountTarget = "MOUNT_TARGET"
602
- }
603
-
604
- export interface ResourceIdPreference {
605
-
606
- ResourceIdType?: ResourceIdType | string;
607
-
608
- Resources?: (Resource | string)[];
609
- }
610
- export interface DescribeAccountPreferencesResponse {
611
-
612
- ResourceIdPreference?: ResourceIdPreference;
613
-
614
- NextToken?: string;
615
- }
616
- export interface DescribeBackupPolicyRequest {
617
-
618
- FileSystemId: string | undefined;
619
- }
620
-
621
- export declare class PolicyNotFound extends __BaseException {
622
- readonly name: "PolicyNotFound";
623
- readonly $fault: "client";
624
-
625
- ErrorCode?: string;
626
-
627
- Message?: string;
628
-
629
- constructor(opts: __ExceptionOptionType<PolicyNotFound, __BaseException>);
630
- }
631
- export interface DescribeFileSystemPolicyRequest {
632
-
633
- FileSystemId: string | undefined;
634
- }
635
- export interface FileSystemPolicyDescription {
636
-
637
- FileSystemId?: string;
638
-
639
- Policy?: string;
640
- }
641
-
642
- export interface DescribeFileSystemsRequest {
643
-
644
- MaxItems?: number;
645
-
646
- Marker?: string;
647
-
648
- CreationToken?: string;
649
-
650
- FileSystemId?: string;
651
- }
652
- export interface DescribeFileSystemsResponse {
653
-
654
- Marker?: string;
655
-
656
- FileSystems?: FileSystemDescription[];
657
-
658
- NextMarker?: string;
659
- }
660
- export interface DescribeLifecycleConfigurationRequest {
661
-
662
- FileSystemId: string | undefined;
663
- }
664
- export declare enum TransitionToIARules {
665
- AFTER_14_DAYS = "AFTER_14_DAYS",
666
- AFTER_30_DAYS = "AFTER_30_DAYS",
667
- AFTER_60_DAYS = "AFTER_60_DAYS",
668
- AFTER_7_DAYS = "AFTER_7_DAYS",
669
- AFTER_90_DAYS = "AFTER_90_DAYS"
670
- }
671
- export declare enum TransitionToPrimaryStorageClassRules {
672
- AFTER_1_ACCESS = "AFTER_1_ACCESS"
673
- }
674
-
675
- export interface LifecyclePolicy {
676
-
677
- TransitionToIA?: TransitionToIARules | string;
678
-
679
- TransitionToPrimaryStorageClass?: TransitionToPrimaryStorageClassRules | string;
680
- }
681
- export interface LifecycleConfigurationDescription {
682
-
683
- LifecyclePolicies?: LifecyclePolicy[];
684
- }
685
-
686
- export interface DescribeMountTargetsRequest {
687
-
688
- MaxItems?: number;
689
-
690
- Marker?: string;
691
-
692
- FileSystemId?: string;
693
-
694
- MountTargetId?: string;
695
-
696
- AccessPointId?: string;
697
- }
698
-
699
- export interface DescribeMountTargetsResponse {
700
-
701
- Marker?: string;
702
-
703
- MountTargets?: MountTargetDescription[];
704
-
705
- NextMarker?: string;
706
- }
707
-
708
- export interface DescribeMountTargetSecurityGroupsRequest {
709
-
710
- MountTargetId: string | undefined;
711
- }
712
- export interface DescribeMountTargetSecurityGroupsResponse {
713
-
714
- SecurityGroups: string[] | undefined;
715
- }
716
-
717
- export declare class IncorrectMountTargetState extends __BaseException {
718
- readonly name: "IncorrectMountTargetState";
719
- readonly $fault: "client";
720
-
721
- ErrorCode: string | undefined;
722
-
723
- Message?: string;
724
-
725
- constructor(opts: __ExceptionOptionType<IncorrectMountTargetState, __BaseException>);
726
- }
727
- export interface DescribeReplicationConfigurationsRequest {
728
-
729
- FileSystemId?: string;
730
-
731
- NextToken?: string;
732
-
733
- MaxResults?: number;
734
- }
735
- export interface DescribeReplicationConfigurationsResponse {
736
-
737
- Replications?: ReplicationConfigurationDescription[];
738
-
739
- NextToken?: string;
740
- }
741
-
742
- export interface DescribeTagsRequest {
743
-
744
- MaxItems?: number;
745
-
746
- Marker?: string;
747
-
748
- FileSystemId: string | undefined;
749
- }
750
-
751
- export interface DescribeTagsResponse {
752
-
753
- Marker?: string;
754
-
755
- Tags: Tag[] | undefined;
756
-
757
- NextMarker?: string;
758
- }
759
-
760
- export declare class InvalidPolicyException extends __BaseException {
761
- readonly name: "InvalidPolicyException";
762
- readonly $fault: "client";
763
-
764
- ErrorCode?: string;
765
-
766
- Message?: string;
767
-
768
- constructor(opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>);
769
- }
770
- export interface ListTagsForResourceRequest {
771
-
772
- ResourceId: string | undefined;
773
-
774
- MaxResults?: number;
775
-
776
- NextToken?: string;
777
- }
778
- export interface ListTagsForResourceResponse {
779
-
780
- Tags?: Tag[];
781
-
782
- NextToken?: string;
783
- }
784
-
785
- export interface ModifyMountTargetSecurityGroupsRequest {
786
-
787
- MountTargetId: string | undefined;
788
-
789
- SecurityGroups?: string[];
790
- }
791
- export interface PutAccountPreferencesRequest {
792
-
793
- ResourceIdType: ResourceIdType | string | undefined;
794
- }
795
- export interface PutAccountPreferencesResponse {
796
-
797
- ResourceIdPreference?: ResourceIdPreference;
798
- }
799
- export interface PutBackupPolicyRequest {
800
-
801
- FileSystemId: string | undefined;
802
-
803
- BackupPolicy: BackupPolicy | undefined;
804
- }
805
- export interface PutFileSystemPolicyRequest {
806
-
807
- FileSystemId: string | undefined;
808
-
809
- Policy: string | undefined;
810
-
811
- BypassPolicyLockoutSafetyCheck?: boolean;
812
- }
813
- export interface PutLifecycleConfigurationRequest {
814
-
815
- FileSystemId: string | undefined;
816
-
817
- LifecyclePolicies: LifecyclePolicy[] | undefined;
818
- }
819
- export interface TagResourceRequest {
820
-
821
- ResourceId: string | undefined;
822
-
823
- Tags: Tag[] | undefined;
824
- }
825
- export interface UntagResourceRequest {
826
-
827
- ResourceId: string | undefined;
828
-
829
- TagKeys: string[] | undefined;
830
- }
831
-
832
- export declare class TooManyRequests extends __BaseException {
833
- readonly name: "TooManyRequests";
834
- readonly $fault: "client";
835
-
836
- ErrorCode: string | undefined;
837
-
838
- Message?: string;
839
-
840
- constructor(opts: __ExceptionOptionType<TooManyRequests, __BaseException>);
841
- }
842
- export interface UpdateFileSystemRequest {
843
-
844
- FileSystemId: string | undefined;
845
-
846
- ThroughputMode?: ThroughputMode | string;
847
-
848
- ProvisionedThroughputInMibps?: number;
849
- }
850
-
851
- export declare const PosixUserFilterSensitiveLog: (obj: PosixUser) => any;
852
-
853
- export declare const CreationInfoFilterSensitiveLog: (obj: CreationInfo) => any;
854
-
855
- export declare const RootDirectoryFilterSensitiveLog: (obj: RootDirectory) => any;
856
-
857
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
858
-
859
- export declare const AccessPointDescriptionFilterSensitiveLog: (obj: AccessPointDescription) => any;
860
-
861
- export declare const BackupPolicyFilterSensitiveLog: (obj: BackupPolicy) => any;
862
-
863
- export declare const BackupPolicyDescriptionFilterSensitiveLog: (obj: BackupPolicyDescription) => any;
864
-
865
- export declare const CreateAccessPointRequestFilterSensitiveLog: (obj: CreateAccessPointRequest) => any;
866
-
867
- export declare const CreateFileSystemRequestFilterSensitiveLog: (obj: CreateFileSystemRequest) => any;
868
-
869
- export declare const FileSystemSizeFilterSensitiveLog: (obj: FileSystemSize) => any;
870
-
871
- export declare const FileSystemDescriptionFilterSensitiveLog: (obj: FileSystemDescription) => any;
872
-
873
- export declare const CreateMountTargetRequestFilterSensitiveLog: (obj: CreateMountTargetRequest) => any;
874
-
875
- export declare const MountTargetDescriptionFilterSensitiveLog: (obj: MountTargetDescription) => any;
876
-
877
- export declare const DestinationToCreateFilterSensitiveLog: (obj: DestinationToCreate) => any;
878
-
879
- export declare const CreateReplicationConfigurationRequestFilterSensitiveLog: (obj: CreateReplicationConfigurationRequest) => any;
880
-
881
- export declare const DestinationFilterSensitiveLog: (obj: Destination) => any;
882
-
883
- export declare const ReplicationConfigurationDescriptionFilterSensitiveLog: (obj: ReplicationConfigurationDescription) => any;
884
-
885
- export declare const CreateTagsRequestFilterSensitiveLog: (obj: CreateTagsRequest) => any;
886
-
887
- export declare const DeleteAccessPointRequestFilterSensitiveLog: (obj: DeleteAccessPointRequest) => any;
888
-
889
- export declare const DeleteFileSystemRequestFilterSensitiveLog: (obj: DeleteFileSystemRequest) => any;
890
-
891
- export declare const DeleteFileSystemPolicyRequestFilterSensitiveLog: (obj: DeleteFileSystemPolicyRequest) => any;
892
-
893
- export declare const DeleteMountTargetRequestFilterSensitiveLog: (obj: DeleteMountTargetRequest) => any;
894
-
895
- export declare const DeleteReplicationConfigurationRequestFilterSensitiveLog: (obj: DeleteReplicationConfigurationRequest) => any;
896
-
897
- export declare const DeleteTagsRequestFilterSensitiveLog: (obj: DeleteTagsRequest) => any;
898
-
899
- export declare const DescribeAccessPointsRequestFilterSensitiveLog: (obj: DescribeAccessPointsRequest) => any;
900
-
901
- export declare const DescribeAccessPointsResponseFilterSensitiveLog: (obj: DescribeAccessPointsResponse) => any;
902
-
903
- export declare const DescribeAccountPreferencesRequestFilterSensitiveLog: (obj: DescribeAccountPreferencesRequest) => any;
904
-
905
- export declare const ResourceIdPreferenceFilterSensitiveLog: (obj: ResourceIdPreference) => any;
906
-
907
- export declare const DescribeAccountPreferencesResponseFilterSensitiveLog: (obj: DescribeAccountPreferencesResponse) => any;
908
-
909
- export declare const DescribeBackupPolicyRequestFilterSensitiveLog: (obj: DescribeBackupPolicyRequest) => any;
910
-
911
- export declare const DescribeFileSystemPolicyRequestFilterSensitiveLog: (obj: DescribeFileSystemPolicyRequest) => any;
912
-
913
- export declare const FileSystemPolicyDescriptionFilterSensitiveLog: (obj: FileSystemPolicyDescription) => any;
914
-
915
- export declare const DescribeFileSystemsRequestFilterSensitiveLog: (obj: DescribeFileSystemsRequest) => any;
916
-
917
- export declare const DescribeFileSystemsResponseFilterSensitiveLog: (obj: DescribeFileSystemsResponse) => any;
918
-
919
- export declare const DescribeLifecycleConfigurationRequestFilterSensitiveLog: (obj: DescribeLifecycleConfigurationRequest) => any;
920
-
921
- export declare const LifecyclePolicyFilterSensitiveLog: (obj: LifecyclePolicy) => any;
922
-
923
- export declare const LifecycleConfigurationDescriptionFilterSensitiveLog: (obj: LifecycleConfigurationDescription) => any;
924
-
925
- export declare const DescribeMountTargetsRequestFilterSensitiveLog: (obj: DescribeMountTargetsRequest) => any;
926
-
927
- export declare const DescribeMountTargetsResponseFilterSensitiveLog: (obj: DescribeMountTargetsResponse) => any;
928
-
929
- export declare const DescribeMountTargetSecurityGroupsRequestFilterSensitiveLog: (obj: DescribeMountTargetSecurityGroupsRequest) => any;
930
-
931
- export declare const DescribeMountTargetSecurityGroupsResponseFilterSensitiveLog: (obj: DescribeMountTargetSecurityGroupsResponse) => any;
932
-
933
- export declare const DescribeReplicationConfigurationsRequestFilterSensitiveLog: (obj: DescribeReplicationConfigurationsRequest) => any;
934
-
935
- export declare const DescribeReplicationConfigurationsResponseFilterSensitiveLog: (obj: DescribeReplicationConfigurationsResponse) => any;
936
-
937
- export declare const DescribeTagsRequestFilterSensitiveLog: (obj: DescribeTagsRequest) => any;
938
-
939
- export declare const DescribeTagsResponseFilterSensitiveLog: (obj: DescribeTagsResponse) => any;
940
-
941
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
942
-
943
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
944
-
945
- export declare const ModifyMountTargetSecurityGroupsRequestFilterSensitiveLog: (obj: ModifyMountTargetSecurityGroupsRequest) => any;
946
-
947
- export declare const PutAccountPreferencesRequestFilterSensitiveLog: (obj: PutAccountPreferencesRequest) => any;
948
-
949
- export declare const PutAccountPreferencesResponseFilterSensitiveLog: (obj: PutAccountPreferencesResponse) => any;
950
-
951
- export declare const PutBackupPolicyRequestFilterSensitiveLog: (obj: PutBackupPolicyRequest) => any;
952
-
953
- export declare const PutFileSystemPolicyRequestFilterSensitiveLog: (obj: PutFileSystemPolicyRequest) => any;
954
-
955
- export declare const PutLifecycleConfigurationRequestFilterSensitiveLog: (obj: PutLifecycleConfigurationRequest) => any;
956
-
957
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
958
-
959
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
960
-
961
- export declare const UpdateFileSystemRequestFilterSensitiveLog: (obj: UpdateFileSystemRequest) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { EFSServiceException as __BaseException } from "./EFSServiceException";
3
+
4
+ export declare class AccessPointAlreadyExists extends __BaseException {
5
+ readonly name: "AccessPointAlreadyExists";
6
+ readonly $fault: "client";
7
+
8
+ ErrorCode: string | undefined;
9
+
10
+ Message?: string;
11
+ AccessPointId: string | undefined;
12
+
13
+ constructor(
14
+ opts: __ExceptionOptionType<AccessPointAlreadyExists, __BaseException>
15
+ );
16
+ }
17
+ export declare enum LifeCycleState {
18
+ AVAILABLE = "available",
19
+ CREATING = "creating",
20
+ DELETED = "deleted",
21
+ DELETING = "deleting",
22
+ ERROR = "error",
23
+ UPDATING = "updating",
24
+ }
25
+
26
+ export interface PosixUser {
27
+ Uid: number | undefined;
28
+
29
+ Gid: number | undefined;
30
+
31
+ SecondaryGids?: number[];
32
+ }
33
+
34
+ export interface CreationInfo {
35
+ OwnerUid: number | undefined;
36
+
37
+ OwnerGid: number | undefined;
38
+
39
+ Permissions: string | undefined;
40
+ }
41
+
42
+ export interface RootDirectory {
43
+ Path?: string;
44
+
45
+ CreationInfo?: CreationInfo;
46
+ }
47
+
48
+ export interface Tag {
49
+ Key: string | undefined;
50
+
51
+ Value: string | undefined;
52
+ }
53
+
54
+ export interface AccessPointDescription {
55
+ ClientToken?: string;
56
+
57
+ Name?: string;
58
+
59
+ Tags?: Tag[];
60
+
61
+ AccessPointId?: string;
62
+
63
+ AccessPointArn?: string;
64
+
65
+ FileSystemId?: string;
66
+
67
+ PosixUser?: PosixUser;
68
+
69
+ RootDirectory?: RootDirectory;
70
+
71
+ OwnerId?: string;
72
+
73
+ LifeCycleState?: LifeCycleState | string;
74
+ }
75
+
76
+ export declare class AccessPointLimitExceeded extends __BaseException {
77
+ readonly name: "AccessPointLimitExceeded";
78
+ readonly $fault: "client";
79
+
80
+ ErrorCode: string | undefined;
81
+
82
+ Message?: string;
83
+
84
+ constructor(
85
+ opts: __ExceptionOptionType<AccessPointLimitExceeded, __BaseException>
86
+ );
87
+ }
88
+
89
+ export declare class AccessPointNotFound extends __BaseException {
90
+ readonly name: "AccessPointNotFound";
91
+ readonly $fault: "client";
92
+
93
+ ErrorCode: string | undefined;
94
+
95
+ Message?: string;
96
+
97
+ constructor(
98
+ opts: __ExceptionOptionType<AccessPointNotFound, __BaseException>
99
+ );
100
+ }
101
+
102
+ export declare class AvailabilityZonesMismatch extends __BaseException {
103
+ readonly name: "AvailabilityZonesMismatch";
104
+ readonly $fault: "client";
105
+
106
+ ErrorCode?: string;
107
+
108
+ Message?: string;
109
+
110
+ constructor(
111
+ opts: __ExceptionOptionType<AvailabilityZonesMismatch, __BaseException>
112
+ );
113
+ }
114
+ export declare enum Status {
115
+ DISABLED = "DISABLED",
116
+ DISABLING = "DISABLING",
117
+ ENABLED = "ENABLED",
118
+ ENABLING = "ENABLING",
119
+ }
120
+
121
+ export interface BackupPolicy {
122
+ Status: Status | string | undefined;
123
+ }
124
+ export interface BackupPolicyDescription {
125
+ BackupPolicy?: BackupPolicy;
126
+ }
127
+
128
+ export declare class BadRequest extends __BaseException {
129
+ readonly name: "BadRequest";
130
+ readonly $fault: "client";
131
+
132
+ ErrorCode: string | undefined;
133
+
134
+ Message?: string;
135
+
136
+ constructor(opts: __ExceptionOptionType<BadRequest, __BaseException>);
137
+ }
138
+ export interface CreateAccessPointRequest {
139
+ ClientToken?: string;
140
+
141
+ Tags?: Tag[];
142
+
143
+ FileSystemId: string | undefined;
144
+
145
+ PosixUser?: PosixUser;
146
+
147
+ RootDirectory?: RootDirectory;
148
+ }
149
+
150
+ export declare class FileSystemNotFound extends __BaseException {
151
+ readonly name: "FileSystemNotFound";
152
+ readonly $fault: "client";
153
+
154
+ ErrorCode: string | undefined;
155
+
156
+ Message?: string;
157
+
158
+ constructor(opts: __ExceptionOptionType<FileSystemNotFound, __BaseException>);
159
+ }
160
+
161
+ export declare class IncorrectFileSystemLifeCycleState extends __BaseException {
162
+ readonly name: "IncorrectFileSystemLifeCycleState";
163
+ readonly $fault: "client";
164
+
165
+ ErrorCode: string | undefined;
166
+
167
+ Message?: string;
168
+
169
+ constructor(
170
+ opts: __ExceptionOptionType<
171
+ IncorrectFileSystemLifeCycleState,
172
+ __BaseException
173
+ >
174
+ );
175
+ }
176
+
177
+ export declare class InternalServerError extends __BaseException {
178
+ readonly name: "InternalServerError";
179
+ readonly $fault: "server";
180
+
181
+ ErrorCode: string | undefined;
182
+
183
+ Message?: string;
184
+
185
+ constructor(
186
+ opts: __ExceptionOptionType<InternalServerError, __BaseException>
187
+ );
188
+ }
189
+
190
+ export declare class ThrottlingException extends __BaseException {
191
+ readonly name: "ThrottlingException";
192
+ readonly $fault: "client";
193
+
194
+ ErrorCode?: string;
195
+
196
+ Message?: string;
197
+
198
+ constructor(
199
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
200
+ );
201
+ }
202
+ export declare enum PerformanceMode {
203
+ GENERAL_PURPOSE = "generalPurpose",
204
+ MAX_IO = "maxIO",
205
+ }
206
+ export declare enum ThroughputMode {
207
+ BURSTING = "bursting",
208
+ PROVISIONED = "provisioned",
209
+ }
210
+ export interface CreateFileSystemRequest {
211
+ CreationToken?: string;
212
+
213
+ PerformanceMode?: PerformanceMode | string;
214
+
215
+ Encrypted?: boolean;
216
+
217
+ KmsKeyId?: string;
218
+
219
+ ThroughputMode?: ThroughputMode | string;
220
+
221
+ ProvisionedThroughputInMibps?: number;
222
+
223
+ AvailabilityZoneName?: string;
224
+
225
+ Backup?: boolean;
226
+
227
+ Tags?: Tag[];
228
+ }
229
+
230
+ export declare class FileSystemAlreadyExists extends __BaseException {
231
+ readonly name: "FileSystemAlreadyExists";
232
+ readonly $fault: "client";
233
+
234
+ ErrorCode: string | undefined;
235
+
236
+ Message?: string;
237
+ FileSystemId: string | undefined;
238
+
239
+ constructor(
240
+ opts: __ExceptionOptionType<FileSystemAlreadyExists, __BaseException>
241
+ );
242
+ }
243
+
244
+ export interface FileSystemSize {
245
+ Value: number | undefined;
246
+
247
+ Timestamp?: Date;
248
+
249
+ ValueInIA?: number;
250
+
251
+ ValueInStandard?: number;
252
+ }
253
+
254
+ export interface FileSystemDescription {
255
+ OwnerId: string | undefined;
256
+
257
+ CreationToken: string | undefined;
258
+
259
+ FileSystemId: string | undefined;
260
+
261
+ FileSystemArn?: string;
262
+
263
+ CreationTime: Date | undefined;
264
+
265
+ LifeCycleState: LifeCycleState | string | undefined;
266
+
267
+ Name?: string;
268
+
269
+ NumberOfMountTargets: number | undefined;
270
+
271
+ SizeInBytes: FileSystemSize | undefined;
272
+
273
+ PerformanceMode: PerformanceMode | string | undefined;
274
+
275
+ Encrypted?: boolean;
276
+
277
+ KmsKeyId?: string;
278
+
279
+ ThroughputMode?: ThroughputMode | string;
280
+
281
+ ProvisionedThroughputInMibps?: number;
282
+
283
+ AvailabilityZoneName?: string;
284
+
285
+ AvailabilityZoneId?: string;
286
+
287
+ Tags: Tag[] | undefined;
288
+ }
289
+
290
+ export declare class FileSystemLimitExceeded extends __BaseException {
291
+ readonly name: "FileSystemLimitExceeded";
292
+ readonly $fault: "client";
293
+
294
+ ErrorCode: string | undefined;
295
+
296
+ Message?: string;
297
+
298
+ constructor(
299
+ opts: __ExceptionOptionType<FileSystemLimitExceeded, __BaseException>
300
+ );
301
+ }
302
+
303
+ export declare class InsufficientThroughputCapacity extends __BaseException {
304
+ readonly name: "InsufficientThroughputCapacity";
305
+ readonly $fault: "server";
306
+
307
+ ErrorCode: string | undefined;
308
+
309
+ Message?: string;
310
+
311
+ constructor(
312
+ opts: __ExceptionOptionType<InsufficientThroughputCapacity, __BaseException>
313
+ );
314
+ }
315
+
316
+ export declare class ThroughputLimitExceeded extends __BaseException {
317
+ readonly name: "ThroughputLimitExceeded";
318
+ readonly $fault: "client";
319
+
320
+ ErrorCode: string | undefined;
321
+
322
+ Message?: string;
323
+
324
+ constructor(
325
+ opts: __ExceptionOptionType<ThroughputLimitExceeded, __BaseException>
326
+ );
327
+ }
328
+
329
+ export declare class UnsupportedAvailabilityZone extends __BaseException {
330
+ readonly name: "UnsupportedAvailabilityZone";
331
+ readonly $fault: "client";
332
+
333
+ ErrorCode: string | undefined;
334
+
335
+ Message?: string;
336
+
337
+ constructor(
338
+ opts: __ExceptionOptionType<UnsupportedAvailabilityZone, __BaseException>
339
+ );
340
+ }
341
+
342
+ export interface CreateMountTargetRequest {
343
+ FileSystemId: string | undefined;
344
+
345
+ SubnetId: string | undefined;
346
+
347
+ IpAddress?: string;
348
+
349
+ SecurityGroups?: string[];
350
+ }
351
+
352
+ export declare class IpAddressInUse extends __BaseException {
353
+ readonly name: "IpAddressInUse";
354
+ readonly $fault: "client";
355
+
356
+ ErrorCode: string | undefined;
357
+
358
+ Message?: string;
359
+
360
+ constructor(opts: __ExceptionOptionType<IpAddressInUse, __BaseException>);
361
+ }
362
+
363
+ export declare class MountTargetConflict extends __BaseException {
364
+ readonly name: "MountTargetConflict";
365
+ readonly $fault: "client";
366
+
367
+ ErrorCode: string | undefined;
368
+
369
+ Message?: string;
370
+
371
+ constructor(
372
+ opts: __ExceptionOptionType<MountTargetConflict, __BaseException>
373
+ );
374
+ }
375
+
376
+ export interface MountTargetDescription {
377
+ OwnerId?: string;
378
+
379
+ MountTargetId: string | undefined;
380
+
381
+ FileSystemId: string | undefined;
382
+
383
+ SubnetId: string | undefined;
384
+
385
+ LifeCycleState: LifeCycleState | string | undefined;
386
+
387
+ IpAddress?: string;
388
+
389
+ NetworkInterfaceId?: string;
390
+
391
+ AvailabilityZoneId?: string;
392
+
393
+ AvailabilityZoneName?: string;
394
+
395
+ VpcId?: string;
396
+ }
397
+
398
+ export declare class NetworkInterfaceLimitExceeded extends __BaseException {
399
+ readonly name: "NetworkInterfaceLimitExceeded";
400
+ readonly $fault: "client";
401
+
402
+ ErrorCode: string | undefined;
403
+
404
+ Message?: string;
405
+
406
+ constructor(
407
+ opts: __ExceptionOptionType<NetworkInterfaceLimitExceeded, __BaseException>
408
+ );
409
+ }
410
+
411
+ export declare class NoFreeAddressesInSubnet extends __BaseException {
412
+ readonly name: "NoFreeAddressesInSubnet";
413
+ readonly $fault: "client";
414
+
415
+ ErrorCode: string | undefined;
416
+
417
+ Message?: string;
418
+
419
+ constructor(
420
+ opts: __ExceptionOptionType<NoFreeAddressesInSubnet, __BaseException>
421
+ );
422
+ }
423
+
424
+ export declare class SecurityGroupLimitExceeded extends __BaseException {
425
+ readonly name: "SecurityGroupLimitExceeded";
426
+ readonly $fault: "client";
427
+
428
+ ErrorCode: string | undefined;
429
+
430
+ Message?: string;
431
+
432
+ constructor(
433
+ opts: __ExceptionOptionType<SecurityGroupLimitExceeded, __BaseException>
434
+ );
435
+ }
436
+
437
+ export declare class SecurityGroupNotFound extends __BaseException {
438
+ readonly name: "SecurityGroupNotFound";
439
+ readonly $fault: "client";
440
+
441
+ ErrorCode: string | undefined;
442
+
443
+ Message?: string;
444
+
445
+ constructor(
446
+ opts: __ExceptionOptionType<SecurityGroupNotFound, __BaseException>
447
+ );
448
+ }
449
+
450
+ export declare class SubnetNotFound extends __BaseException {
451
+ readonly name: "SubnetNotFound";
452
+ readonly $fault: "client";
453
+
454
+ ErrorCode: string | undefined;
455
+
456
+ Message?: string;
457
+
458
+ constructor(opts: __ExceptionOptionType<SubnetNotFound, __BaseException>);
459
+ }
460
+
461
+ export interface DestinationToCreate {
462
+ Region?: string;
463
+
464
+ AvailabilityZoneName?: string;
465
+
466
+ KmsKeyId?: string;
467
+ }
468
+ export interface CreateReplicationConfigurationRequest {
469
+ SourceFileSystemId: string | undefined;
470
+
471
+ Destinations: DestinationToCreate[] | undefined;
472
+ }
473
+ export declare enum ReplicationStatus {
474
+ DELETING = "DELETING",
475
+ ENABLED = "ENABLED",
476
+ ENABLING = "ENABLING",
477
+ ERROR = "ERROR",
478
+ }
479
+
480
+ export interface Destination {
481
+ Status: ReplicationStatus | string | undefined;
482
+
483
+ FileSystemId: string | undefined;
484
+
485
+ Region: string | undefined;
486
+
487
+ LastReplicatedTimestamp?: Date;
488
+ }
489
+ export interface ReplicationConfigurationDescription {
490
+ SourceFileSystemId: string | undefined;
491
+
492
+ SourceFileSystemRegion: string | undefined;
493
+
494
+ SourceFileSystemArn: string | undefined;
495
+
496
+ OriginalSourceFileSystemArn: string | undefined;
497
+
498
+ CreationTime: Date | undefined;
499
+
500
+ Destinations: Destination[] | undefined;
501
+ }
502
+
503
+ export declare class ReplicationNotFound extends __BaseException {
504
+ readonly name: "ReplicationNotFound";
505
+ readonly $fault: "client";
506
+
507
+ ErrorCode?: string;
508
+
509
+ Message?: string;
510
+
511
+ constructor(
512
+ opts: __ExceptionOptionType<ReplicationNotFound, __BaseException>
513
+ );
514
+ }
515
+
516
+ export declare class ValidationException extends __BaseException {
517
+ readonly name: "ValidationException";
518
+ readonly $fault: "client";
519
+
520
+ ErrorCode: string | undefined;
521
+
522
+ Message?: string;
523
+
524
+ constructor(
525
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
526
+ );
527
+ }
528
+
529
+ export interface CreateTagsRequest {
530
+ FileSystemId: string | undefined;
531
+
532
+ Tags: Tag[] | undefined;
533
+ }
534
+ export interface DeleteAccessPointRequest {
535
+ AccessPointId: string | undefined;
536
+ }
537
+
538
+ export interface DeleteFileSystemRequest {
539
+ FileSystemId: string | undefined;
540
+ }
541
+
542
+ export declare class FileSystemInUse extends __BaseException {
543
+ readonly name: "FileSystemInUse";
544
+ readonly $fault: "client";
545
+
546
+ ErrorCode: string | undefined;
547
+
548
+ Message?: string;
549
+
550
+ constructor(opts: __ExceptionOptionType<FileSystemInUse, __BaseException>);
551
+ }
552
+ export interface DeleteFileSystemPolicyRequest {
553
+ FileSystemId: string | undefined;
554
+ }
555
+
556
+ export interface DeleteMountTargetRequest {
557
+ MountTargetId: string | undefined;
558
+ }
559
+
560
+ export declare class DependencyTimeout extends __BaseException {
561
+ readonly name: "DependencyTimeout";
562
+ readonly $fault: "server";
563
+
564
+ ErrorCode: string | undefined;
565
+
566
+ Message?: string;
567
+
568
+ constructor(opts: __ExceptionOptionType<DependencyTimeout, __BaseException>);
569
+ }
570
+
571
+ export declare class MountTargetNotFound extends __BaseException {
572
+ readonly name: "MountTargetNotFound";
573
+ readonly $fault: "client";
574
+
575
+ ErrorCode: string | undefined;
576
+
577
+ Message?: string;
578
+
579
+ constructor(
580
+ opts: __ExceptionOptionType<MountTargetNotFound, __BaseException>
581
+ );
582
+ }
583
+ export interface DeleteReplicationConfigurationRequest {
584
+ SourceFileSystemId: string | undefined;
585
+ }
586
+
587
+ export interface DeleteTagsRequest {
588
+ FileSystemId: string | undefined;
589
+
590
+ TagKeys: string[] | undefined;
591
+ }
592
+ export interface DescribeAccessPointsRequest {
593
+ MaxResults?: number;
594
+
595
+ NextToken?: string;
596
+
597
+ AccessPointId?: string;
598
+
599
+ FileSystemId?: string;
600
+ }
601
+ export interface DescribeAccessPointsResponse {
602
+ AccessPoints?: AccessPointDescription[];
603
+
604
+ NextToken?: string;
605
+ }
606
+ export interface DescribeAccountPreferencesRequest {
607
+ NextToken?: string;
608
+
609
+ MaxResults?: number;
610
+ }
611
+ export declare enum ResourceIdType {
612
+ LongId = "LONG_ID",
613
+ ShortId = "SHORT_ID",
614
+ }
615
+ export declare enum Resource {
616
+ FileSystem = "FILE_SYSTEM",
617
+ MountTarget = "MOUNT_TARGET",
618
+ }
619
+
620
+ export interface ResourceIdPreference {
621
+ ResourceIdType?: ResourceIdType | string;
622
+
623
+ Resources?: (Resource | string)[];
624
+ }
625
+ export interface DescribeAccountPreferencesResponse {
626
+ ResourceIdPreference?: ResourceIdPreference;
627
+
628
+ NextToken?: string;
629
+ }
630
+ export interface DescribeBackupPolicyRequest {
631
+ FileSystemId: string | undefined;
632
+ }
633
+
634
+ export declare class PolicyNotFound extends __BaseException {
635
+ readonly name: "PolicyNotFound";
636
+ readonly $fault: "client";
637
+
638
+ ErrorCode?: string;
639
+
640
+ Message?: string;
641
+
642
+ constructor(opts: __ExceptionOptionType<PolicyNotFound, __BaseException>);
643
+ }
644
+ export interface DescribeFileSystemPolicyRequest {
645
+ FileSystemId: string | undefined;
646
+ }
647
+ export interface FileSystemPolicyDescription {
648
+ FileSystemId?: string;
649
+
650
+ Policy?: string;
651
+ }
652
+
653
+ export interface DescribeFileSystemsRequest {
654
+ MaxItems?: number;
655
+
656
+ Marker?: string;
657
+
658
+ CreationToken?: string;
659
+
660
+ FileSystemId?: string;
661
+ }
662
+ export interface DescribeFileSystemsResponse {
663
+ Marker?: string;
664
+
665
+ FileSystems?: FileSystemDescription[];
666
+
667
+ NextMarker?: string;
668
+ }
669
+ export interface DescribeLifecycleConfigurationRequest {
670
+ FileSystemId: string | undefined;
671
+ }
672
+ export declare enum TransitionToIARules {
673
+ AFTER_14_DAYS = "AFTER_14_DAYS",
674
+ AFTER_30_DAYS = "AFTER_30_DAYS",
675
+ AFTER_60_DAYS = "AFTER_60_DAYS",
676
+ AFTER_7_DAYS = "AFTER_7_DAYS",
677
+ AFTER_90_DAYS = "AFTER_90_DAYS",
678
+ }
679
+ export declare enum TransitionToPrimaryStorageClassRules {
680
+ AFTER_1_ACCESS = "AFTER_1_ACCESS",
681
+ }
682
+
683
+ export interface LifecyclePolicy {
684
+ TransitionToIA?: TransitionToIARules | string;
685
+
686
+ TransitionToPrimaryStorageClass?:
687
+ | TransitionToPrimaryStorageClassRules
688
+ | string;
689
+ }
690
+ export interface LifecycleConfigurationDescription {
691
+ LifecyclePolicies?: LifecyclePolicy[];
692
+ }
693
+
694
+ export interface DescribeMountTargetsRequest {
695
+ MaxItems?: number;
696
+
697
+ Marker?: string;
698
+
699
+ FileSystemId?: string;
700
+
701
+ MountTargetId?: string;
702
+
703
+ AccessPointId?: string;
704
+ }
705
+
706
+ export interface DescribeMountTargetsResponse {
707
+ Marker?: string;
708
+
709
+ MountTargets?: MountTargetDescription[];
710
+
711
+ NextMarker?: string;
712
+ }
713
+
714
+ export interface DescribeMountTargetSecurityGroupsRequest {
715
+ MountTargetId: string | undefined;
716
+ }
717
+ export interface DescribeMountTargetSecurityGroupsResponse {
718
+ SecurityGroups: string[] | undefined;
719
+ }
720
+
721
+ export declare class IncorrectMountTargetState extends __BaseException {
722
+ readonly name: "IncorrectMountTargetState";
723
+ readonly $fault: "client";
724
+
725
+ ErrorCode: string | undefined;
726
+
727
+ Message?: string;
728
+
729
+ constructor(
730
+ opts: __ExceptionOptionType<IncorrectMountTargetState, __BaseException>
731
+ );
732
+ }
733
+ export interface DescribeReplicationConfigurationsRequest {
734
+ FileSystemId?: string;
735
+
736
+ NextToken?: string;
737
+
738
+ MaxResults?: number;
739
+ }
740
+ export interface DescribeReplicationConfigurationsResponse {
741
+ Replications?: ReplicationConfigurationDescription[];
742
+
743
+ NextToken?: string;
744
+ }
745
+
746
+ export interface DescribeTagsRequest {
747
+ MaxItems?: number;
748
+
749
+ Marker?: string;
750
+
751
+ FileSystemId: string | undefined;
752
+ }
753
+
754
+ export interface DescribeTagsResponse {
755
+ Marker?: string;
756
+
757
+ Tags: Tag[] | undefined;
758
+
759
+ NextMarker?: string;
760
+ }
761
+
762
+ export declare class InvalidPolicyException extends __BaseException {
763
+ readonly name: "InvalidPolicyException";
764
+ readonly $fault: "client";
765
+
766
+ ErrorCode?: string;
767
+
768
+ Message?: string;
769
+
770
+ constructor(
771
+ opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>
772
+ );
773
+ }
774
+ export interface ListTagsForResourceRequest {
775
+ ResourceId: string | undefined;
776
+
777
+ MaxResults?: number;
778
+
779
+ NextToken?: string;
780
+ }
781
+ export interface ListTagsForResourceResponse {
782
+ Tags?: Tag[];
783
+
784
+ NextToken?: string;
785
+ }
786
+
787
+ export interface ModifyMountTargetSecurityGroupsRequest {
788
+ MountTargetId: string | undefined;
789
+
790
+ SecurityGroups?: string[];
791
+ }
792
+ export interface PutAccountPreferencesRequest {
793
+ ResourceIdType: ResourceIdType | string | undefined;
794
+ }
795
+ export interface PutAccountPreferencesResponse {
796
+ ResourceIdPreference?: ResourceIdPreference;
797
+ }
798
+ export interface PutBackupPolicyRequest {
799
+ FileSystemId: string | undefined;
800
+
801
+ BackupPolicy: BackupPolicy | undefined;
802
+ }
803
+ export interface PutFileSystemPolicyRequest {
804
+ FileSystemId: string | undefined;
805
+
806
+ Policy: string | undefined;
807
+
808
+ BypassPolicyLockoutSafetyCheck?: boolean;
809
+ }
810
+ export interface PutLifecycleConfigurationRequest {
811
+ FileSystemId: string | undefined;
812
+
813
+ LifecyclePolicies: LifecyclePolicy[] | undefined;
814
+ }
815
+ export interface TagResourceRequest {
816
+ ResourceId: string | undefined;
817
+
818
+ Tags: Tag[] | undefined;
819
+ }
820
+ export interface UntagResourceRequest {
821
+ ResourceId: string | undefined;
822
+
823
+ TagKeys: string[] | undefined;
824
+ }
825
+
826
+ export declare class TooManyRequests extends __BaseException {
827
+ readonly name: "TooManyRequests";
828
+ readonly $fault: "client";
829
+
830
+ ErrorCode: string | undefined;
831
+
832
+ Message?: string;
833
+
834
+ constructor(opts: __ExceptionOptionType<TooManyRequests, __BaseException>);
835
+ }
836
+ export interface UpdateFileSystemRequest {
837
+ FileSystemId: string | undefined;
838
+
839
+ ThroughputMode?: ThroughputMode | string;
840
+
841
+ ProvisionedThroughputInMibps?: number;
842
+ }
843
+
844
+ export declare const PosixUserFilterSensitiveLog: (obj: PosixUser) => any;
845
+
846
+ export declare const CreationInfoFilterSensitiveLog: (obj: CreationInfo) => any;
847
+
848
+ export declare const RootDirectoryFilterSensitiveLog: (
849
+ obj: RootDirectory
850
+ ) => any;
851
+
852
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
853
+
854
+ export declare const AccessPointDescriptionFilterSensitiveLog: (
855
+ obj: AccessPointDescription
856
+ ) => any;
857
+
858
+ export declare const BackupPolicyFilterSensitiveLog: (obj: BackupPolicy) => any;
859
+
860
+ export declare const BackupPolicyDescriptionFilterSensitiveLog: (
861
+ obj: BackupPolicyDescription
862
+ ) => any;
863
+
864
+ export declare const CreateAccessPointRequestFilterSensitiveLog: (
865
+ obj: CreateAccessPointRequest
866
+ ) => any;
867
+
868
+ export declare const CreateFileSystemRequestFilterSensitiveLog: (
869
+ obj: CreateFileSystemRequest
870
+ ) => any;
871
+
872
+ export declare const FileSystemSizeFilterSensitiveLog: (
873
+ obj: FileSystemSize
874
+ ) => any;
875
+
876
+ export declare const FileSystemDescriptionFilterSensitiveLog: (
877
+ obj: FileSystemDescription
878
+ ) => any;
879
+
880
+ export declare const CreateMountTargetRequestFilterSensitiveLog: (
881
+ obj: CreateMountTargetRequest
882
+ ) => any;
883
+
884
+ export declare const MountTargetDescriptionFilterSensitiveLog: (
885
+ obj: MountTargetDescription
886
+ ) => any;
887
+
888
+ export declare const DestinationToCreateFilterSensitiveLog: (
889
+ obj: DestinationToCreate
890
+ ) => any;
891
+
892
+ export declare const CreateReplicationConfigurationRequestFilterSensitiveLog: (
893
+ obj: CreateReplicationConfigurationRequest
894
+ ) => any;
895
+
896
+ export declare const DestinationFilterSensitiveLog: (obj: Destination) => any;
897
+
898
+ export declare const ReplicationConfigurationDescriptionFilterSensitiveLog: (
899
+ obj: ReplicationConfigurationDescription
900
+ ) => any;
901
+
902
+ export declare const CreateTagsRequestFilterSensitiveLog: (
903
+ obj: CreateTagsRequest
904
+ ) => any;
905
+
906
+ export declare const DeleteAccessPointRequestFilterSensitiveLog: (
907
+ obj: DeleteAccessPointRequest
908
+ ) => any;
909
+
910
+ export declare const DeleteFileSystemRequestFilterSensitiveLog: (
911
+ obj: DeleteFileSystemRequest
912
+ ) => any;
913
+
914
+ export declare const DeleteFileSystemPolicyRequestFilterSensitiveLog: (
915
+ obj: DeleteFileSystemPolicyRequest
916
+ ) => any;
917
+
918
+ export declare const DeleteMountTargetRequestFilterSensitiveLog: (
919
+ obj: DeleteMountTargetRequest
920
+ ) => any;
921
+
922
+ export declare const DeleteReplicationConfigurationRequestFilterSensitiveLog: (
923
+ obj: DeleteReplicationConfigurationRequest
924
+ ) => any;
925
+
926
+ export declare const DeleteTagsRequestFilterSensitiveLog: (
927
+ obj: DeleteTagsRequest
928
+ ) => any;
929
+
930
+ export declare const DescribeAccessPointsRequestFilterSensitiveLog: (
931
+ obj: DescribeAccessPointsRequest
932
+ ) => any;
933
+
934
+ export declare const DescribeAccessPointsResponseFilterSensitiveLog: (
935
+ obj: DescribeAccessPointsResponse
936
+ ) => any;
937
+
938
+ export declare const DescribeAccountPreferencesRequestFilterSensitiveLog: (
939
+ obj: DescribeAccountPreferencesRequest
940
+ ) => any;
941
+
942
+ export declare const ResourceIdPreferenceFilterSensitiveLog: (
943
+ obj: ResourceIdPreference
944
+ ) => any;
945
+
946
+ export declare const DescribeAccountPreferencesResponseFilterSensitiveLog: (
947
+ obj: DescribeAccountPreferencesResponse
948
+ ) => any;
949
+
950
+ export declare const DescribeBackupPolicyRequestFilterSensitiveLog: (
951
+ obj: DescribeBackupPolicyRequest
952
+ ) => any;
953
+
954
+ export declare const DescribeFileSystemPolicyRequestFilterSensitiveLog: (
955
+ obj: DescribeFileSystemPolicyRequest
956
+ ) => any;
957
+
958
+ export declare const FileSystemPolicyDescriptionFilterSensitiveLog: (
959
+ obj: FileSystemPolicyDescription
960
+ ) => any;
961
+
962
+ export declare const DescribeFileSystemsRequestFilterSensitiveLog: (
963
+ obj: DescribeFileSystemsRequest
964
+ ) => any;
965
+
966
+ export declare const DescribeFileSystemsResponseFilterSensitiveLog: (
967
+ obj: DescribeFileSystemsResponse
968
+ ) => any;
969
+
970
+ export declare const DescribeLifecycleConfigurationRequestFilterSensitiveLog: (
971
+ obj: DescribeLifecycleConfigurationRequest
972
+ ) => any;
973
+
974
+ export declare const LifecyclePolicyFilterSensitiveLog: (
975
+ obj: LifecyclePolicy
976
+ ) => any;
977
+
978
+ export declare const LifecycleConfigurationDescriptionFilterSensitiveLog: (
979
+ obj: LifecycleConfigurationDescription
980
+ ) => any;
981
+
982
+ export declare const DescribeMountTargetsRequestFilterSensitiveLog: (
983
+ obj: DescribeMountTargetsRequest
984
+ ) => any;
985
+
986
+ export declare const DescribeMountTargetsResponseFilterSensitiveLog: (
987
+ obj: DescribeMountTargetsResponse
988
+ ) => any;
989
+
990
+ export declare const DescribeMountTargetSecurityGroupsRequestFilterSensitiveLog: (
991
+ obj: DescribeMountTargetSecurityGroupsRequest
992
+ ) => any;
993
+
994
+ export declare const DescribeMountTargetSecurityGroupsResponseFilterSensitiveLog: (
995
+ obj: DescribeMountTargetSecurityGroupsResponse
996
+ ) => any;
997
+
998
+ export declare const DescribeReplicationConfigurationsRequestFilterSensitiveLog: (
999
+ obj: DescribeReplicationConfigurationsRequest
1000
+ ) => any;
1001
+
1002
+ export declare const DescribeReplicationConfigurationsResponseFilterSensitiveLog: (
1003
+ obj: DescribeReplicationConfigurationsResponse
1004
+ ) => any;
1005
+
1006
+ export declare const DescribeTagsRequestFilterSensitiveLog: (
1007
+ obj: DescribeTagsRequest
1008
+ ) => any;
1009
+
1010
+ export declare const DescribeTagsResponseFilterSensitiveLog: (
1011
+ obj: DescribeTagsResponse
1012
+ ) => any;
1013
+
1014
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
1015
+ obj: ListTagsForResourceRequest
1016
+ ) => any;
1017
+
1018
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
1019
+ obj: ListTagsForResourceResponse
1020
+ ) => any;
1021
+
1022
+ export declare const ModifyMountTargetSecurityGroupsRequestFilterSensitiveLog: (
1023
+ obj: ModifyMountTargetSecurityGroupsRequest
1024
+ ) => any;
1025
+
1026
+ export declare const PutAccountPreferencesRequestFilterSensitiveLog: (
1027
+ obj: PutAccountPreferencesRequest
1028
+ ) => any;
1029
+
1030
+ export declare const PutAccountPreferencesResponseFilterSensitiveLog: (
1031
+ obj: PutAccountPreferencesResponse
1032
+ ) => any;
1033
+
1034
+ export declare const PutBackupPolicyRequestFilterSensitiveLog: (
1035
+ obj: PutBackupPolicyRequest
1036
+ ) => any;
1037
+
1038
+ export declare const PutFileSystemPolicyRequestFilterSensitiveLog: (
1039
+ obj: PutFileSystemPolicyRequest
1040
+ ) => any;
1041
+
1042
+ export declare const PutLifecycleConfigurationRequestFilterSensitiveLog: (
1043
+ obj: PutLifecycleConfigurationRequest
1044
+ ) => any;
1045
+
1046
+ export declare const TagResourceRequestFilterSensitiveLog: (
1047
+ obj: TagResourceRequest
1048
+ ) => any;
1049
+
1050
+ export declare const UntagResourceRequestFilterSensitiveLog: (
1051
+ obj: UntagResourceRequest
1052
+ ) => any;
1053
+
1054
+ export declare const UpdateFileSystemRequestFilterSensitiveLog: (
1055
+ obj: UpdateFileSystemRequest
1056
+ ) => any;