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