@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/EFS.d.ts +556 -155
- package/dist-types/ts3.4/EFSClient.d.ts +308 -103
- package/dist-types/ts3.4/commands/CreateAccessPointCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateMountTargetCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateReplicationConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteAccessPointCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DeleteFileSystemCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteFileSystemPolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteMountTargetCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DeleteReplicationConfigurationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeAccessPointsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeAccountPreferencesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeBackupPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeFileSystemPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeFileSystemsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeLifecycleConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeMountTargetsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeReplicationConfigurationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/PutAccountPreferencesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/PutBackupPolicyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/PutFileSystemPolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutLifecycleConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateFileSystemCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +30 -30
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/EFSServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1056 -961
- package/dist-types/ts3.4/pagination/DescribeAccessPointsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeFileSystemsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeTagsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +365 -92
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- 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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
export interface RootDirectory {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
export declare class FileSystemNotFound extends __BaseException {
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
export declare class IncorrectFileSystemLifeCycleState extends __BaseException {
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
export
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
}
|
|
468
|
-
export interface
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
export
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
export
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
}
|
|
583
|
-
export interface
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
export
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
}
|
|
795
|
-
export interface PutAccountPreferencesResponse {
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
}
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
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;
|