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