@aws-sdk/client-efs 3.686.0 → 3.691.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.
@@ -4,7 +4,7 @@ export declare class AccessPointAlreadyExists extends __BaseException {
4
4
  readonly name: "AccessPointAlreadyExists";
5
5
  readonly $fault: "client";
6
6
  ErrorCode: string | undefined;
7
- Message?: string;
7
+ Message?: string | undefined;
8
8
  AccessPointId: string | undefined;
9
9
  constructor(
10
10
  opts: __ExceptionOptionType<AccessPointAlreadyExists, __BaseException>
@@ -23,7 +23,7 @@ export type LifeCycleState =
23
23
  export interface PosixUser {
24
24
  Uid: number | undefined;
25
25
  Gid: number | undefined;
26
- SecondaryGids?: number[];
26
+ SecondaryGids?: number[] | undefined;
27
27
  }
28
28
  export interface CreationInfo {
29
29
  OwnerUid: number | undefined;
@@ -31,30 +31,30 @@ export interface CreationInfo {
31
31
  Permissions: string | undefined;
32
32
  }
33
33
  export interface RootDirectory {
34
- Path?: string;
35
- CreationInfo?: CreationInfo;
34
+ Path?: string | undefined;
35
+ CreationInfo?: CreationInfo | undefined;
36
36
  }
37
37
  export interface Tag {
38
38
  Key: string | undefined;
39
39
  Value: string | undefined;
40
40
  }
41
41
  export interface AccessPointDescription {
42
- ClientToken?: string;
43
- Name?: string;
44
- Tags?: Tag[];
45
- AccessPointId?: string;
46
- AccessPointArn?: string;
47
- FileSystemId?: string;
48
- PosixUser?: PosixUser;
49
- RootDirectory?: RootDirectory;
50
- OwnerId?: string;
51
- LifeCycleState?: LifeCycleState;
42
+ ClientToken?: string | undefined;
43
+ Name?: string | undefined;
44
+ Tags?: Tag[] | undefined;
45
+ AccessPointId?: string | undefined;
46
+ AccessPointArn?: string | undefined;
47
+ FileSystemId?: string | undefined;
48
+ PosixUser?: PosixUser | undefined;
49
+ RootDirectory?: RootDirectory | undefined;
50
+ OwnerId?: string | undefined;
51
+ LifeCycleState?: LifeCycleState | undefined;
52
52
  }
53
53
  export declare class AccessPointLimitExceeded extends __BaseException {
54
54
  readonly name: "AccessPointLimitExceeded";
55
55
  readonly $fault: "client";
56
56
  ErrorCode: string | undefined;
57
- Message?: string;
57
+ Message?: string | undefined;
58
58
  constructor(
59
59
  opts: __ExceptionOptionType<AccessPointLimitExceeded, __BaseException>
60
60
  );
@@ -63,7 +63,7 @@ export declare class AccessPointNotFound extends __BaseException {
63
63
  readonly name: "AccessPointNotFound";
64
64
  readonly $fault: "client";
65
65
  ErrorCode: string | undefined;
66
- Message?: string;
66
+ Message?: string | undefined;
67
67
  constructor(
68
68
  opts: __ExceptionOptionType<AccessPointNotFound, __BaseException>
69
69
  );
@@ -71,8 +71,8 @@ export declare class AccessPointNotFound extends __BaseException {
71
71
  export declare class AvailabilityZonesMismatch extends __BaseException {
72
72
  readonly name: "AvailabilityZonesMismatch";
73
73
  readonly $fault: "client";
74
- ErrorCode?: string;
75
- Message?: string;
74
+ ErrorCode?: string | undefined;
75
+ Message?: string | undefined;
76
76
  constructor(
77
77
  opts: __ExceptionOptionType<AvailabilityZonesMismatch, __BaseException>
78
78
  );
@@ -88,41 +88,41 @@ export interface BackupPolicy {
88
88
  Status: Status | undefined;
89
89
  }
90
90
  export interface BackupPolicyDescription {
91
- BackupPolicy?: BackupPolicy;
91
+ BackupPolicy?: BackupPolicy | undefined;
92
92
  }
93
93
  export declare class BadRequest extends __BaseException {
94
94
  readonly name: "BadRequest";
95
95
  readonly $fault: "client";
96
96
  ErrorCode: string | undefined;
97
- Message?: string;
97
+ Message?: string | undefined;
98
98
  constructor(opts: __ExceptionOptionType<BadRequest, __BaseException>);
99
99
  }
100
100
  export declare class ConflictException extends __BaseException {
101
101
  readonly name: "ConflictException";
102
102
  readonly $fault: "client";
103
- ErrorCode?: string;
104
- Message?: string;
103
+ ErrorCode?: string | undefined;
104
+ Message?: string | undefined;
105
105
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
106
106
  }
107
107
  export interface CreateAccessPointRequest {
108
- ClientToken?: string;
109
- Tags?: Tag[];
108
+ ClientToken?: string | undefined;
109
+ Tags?: Tag[] | undefined;
110
110
  FileSystemId: string | undefined;
111
- PosixUser?: PosixUser;
112
- RootDirectory?: RootDirectory;
111
+ PosixUser?: PosixUser | undefined;
112
+ RootDirectory?: RootDirectory | undefined;
113
113
  }
114
114
  export declare class FileSystemNotFound extends __BaseException {
115
115
  readonly name: "FileSystemNotFound";
116
116
  readonly $fault: "client";
117
117
  ErrorCode: string | undefined;
118
- Message?: string;
118
+ Message?: string | undefined;
119
119
  constructor(opts: __ExceptionOptionType<FileSystemNotFound, __BaseException>);
120
120
  }
121
121
  export declare class IncorrectFileSystemLifeCycleState extends __BaseException {
122
122
  readonly name: "IncorrectFileSystemLifeCycleState";
123
123
  readonly $fault: "client";
124
124
  ErrorCode: string | undefined;
125
- Message?: string;
125
+ Message?: string | undefined;
126
126
  constructor(
127
127
  opts: __ExceptionOptionType<
128
128
  IncorrectFileSystemLifeCycleState,
@@ -134,7 +134,7 @@ export declare class InternalServerError extends __BaseException {
134
134
  readonly name: "InternalServerError";
135
135
  readonly $fault: "server";
136
136
  ErrorCode: string | undefined;
137
- Message?: string;
137
+ Message?: string | undefined;
138
138
  constructor(
139
139
  opts: __ExceptionOptionType<InternalServerError, __BaseException>
140
140
  );
@@ -142,8 +142,8 @@ export declare class InternalServerError extends __BaseException {
142
142
  export declare class ThrottlingException extends __BaseException {
143
143
  readonly name: "ThrottlingException";
144
144
  readonly $fault: "client";
145
- ErrorCode?: string;
146
- Message?: string;
145
+ ErrorCode?: string | undefined;
146
+ Message?: string | undefined;
147
147
  constructor(
148
148
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
149
149
  );
@@ -162,21 +162,21 @@ export declare const ThroughputMode: {
162
162
  export type ThroughputMode =
163
163
  (typeof ThroughputMode)[keyof typeof ThroughputMode];
164
164
  export interface CreateFileSystemRequest {
165
- CreationToken?: string;
166
- PerformanceMode?: PerformanceMode;
167
- Encrypted?: boolean;
168
- KmsKeyId?: string;
169
- ThroughputMode?: ThroughputMode;
170
- ProvisionedThroughputInMibps?: number;
171
- AvailabilityZoneName?: string;
172
- Backup?: boolean;
173
- Tags?: Tag[];
165
+ CreationToken?: string | undefined;
166
+ PerformanceMode?: PerformanceMode | undefined;
167
+ Encrypted?: boolean | undefined;
168
+ KmsKeyId?: string | undefined;
169
+ ThroughputMode?: ThroughputMode | undefined;
170
+ ProvisionedThroughputInMibps?: number | undefined;
171
+ AvailabilityZoneName?: string | undefined;
172
+ Backup?: boolean | undefined;
173
+ Tags?: Tag[] | undefined;
174
174
  }
175
175
  export declare class FileSystemAlreadyExists extends __BaseException {
176
176
  readonly name: "FileSystemAlreadyExists";
177
177
  readonly $fault: "client";
178
178
  ErrorCode: string | undefined;
179
- Message?: string;
179
+ Message?: string | undefined;
180
180
  FileSystemId: string | undefined;
181
181
  constructor(
182
182
  opts: __ExceptionOptionType<FileSystemAlreadyExists, __BaseException>
@@ -190,40 +190,40 @@ export declare const ReplicationOverwriteProtection: {
190
190
  export type ReplicationOverwriteProtection =
191
191
  (typeof ReplicationOverwriteProtection)[keyof typeof ReplicationOverwriteProtection];
192
192
  export interface FileSystemProtectionDescription {
193
- ReplicationOverwriteProtection?: ReplicationOverwriteProtection;
193
+ ReplicationOverwriteProtection?: ReplicationOverwriteProtection | undefined;
194
194
  }
195
195
  export interface FileSystemSize {
196
196
  Value: number | undefined;
197
- Timestamp?: Date;
198
- ValueInIA?: number;
199
- ValueInStandard?: number;
200
- ValueInArchive?: number;
197
+ Timestamp?: Date | undefined;
198
+ ValueInIA?: number | undefined;
199
+ ValueInStandard?: number | undefined;
200
+ ValueInArchive?: number | undefined;
201
201
  }
202
202
  export interface FileSystemDescription {
203
203
  OwnerId: string | undefined;
204
204
  CreationToken: string | undefined;
205
205
  FileSystemId: string | undefined;
206
- FileSystemArn?: string;
206
+ FileSystemArn?: string | undefined;
207
207
  CreationTime: Date | undefined;
208
208
  LifeCycleState: LifeCycleState | undefined;
209
- Name?: string;
209
+ Name?: string | undefined;
210
210
  NumberOfMountTargets: number | undefined;
211
211
  SizeInBytes: FileSystemSize | undefined;
212
212
  PerformanceMode: PerformanceMode | undefined;
213
- Encrypted?: boolean;
214
- KmsKeyId?: string;
215
- ThroughputMode?: ThroughputMode;
216
- ProvisionedThroughputInMibps?: number;
217
- AvailabilityZoneName?: string;
218
- AvailabilityZoneId?: string;
213
+ Encrypted?: boolean | undefined;
214
+ KmsKeyId?: string | undefined;
215
+ ThroughputMode?: ThroughputMode | undefined;
216
+ ProvisionedThroughputInMibps?: number | undefined;
217
+ AvailabilityZoneName?: string | undefined;
218
+ AvailabilityZoneId?: string | undefined;
219
219
  Tags: Tag[] | undefined;
220
- FileSystemProtection?: FileSystemProtectionDescription;
220
+ FileSystemProtection?: FileSystemProtectionDescription | undefined;
221
221
  }
222
222
  export declare class FileSystemLimitExceeded extends __BaseException {
223
223
  readonly name: "FileSystemLimitExceeded";
224
224
  readonly $fault: "client";
225
225
  ErrorCode: string | undefined;
226
- Message?: string;
226
+ Message?: string | undefined;
227
227
  constructor(
228
228
  opts: __ExceptionOptionType<FileSystemLimitExceeded, __BaseException>
229
229
  );
@@ -232,7 +232,7 @@ export declare class InsufficientThroughputCapacity extends __BaseException {
232
232
  readonly name: "InsufficientThroughputCapacity";
233
233
  readonly $fault: "server";
234
234
  ErrorCode: string | undefined;
235
- Message?: string;
235
+ Message?: string | undefined;
236
236
  constructor(
237
237
  opts: __ExceptionOptionType<InsufficientThroughputCapacity, __BaseException>
238
238
  );
@@ -241,7 +241,7 @@ export declare class ThroughputLimitExceeded extends __BaseException {
241
241
  readonly name: "ThroughputLimitExceeded";
242
242
  readonly $fault: "client";
243
243
  ErrorCode: string | undefined;
244
- Message?: string;
244
+ Message?: string | undefined;
245
245
  constructor(
246
246
  opts: __ExceptionOptionType<ThroughputLimitExceeded, __BaseException>
247
247
  );
@@ -250,7 +250,7 @@ export declare class UnsupportedAvailabilityZone extends __BaseException {
250
250
  readonly name: "UnsupportedAvailabilityZone";
251
251
  readonly $fault: "client";
252
252
  ErrorCode: string | undefined;
253
- Message?: string;
253
+ Message?: string | undefined;
254
254
  constructor(
255
255
  opts: __ExceptionOptionType<UnsupportedAvailabilityZone, __BaseException>
256
256
  );
@@ -258,42 +258,42 @@ export declare class UnsupportedAvailabilityZone extends __BaseException {
258
258
  export interface CreateMountTargetRequest {
259
259
  FileSystemId: string | undefined;
260
260
  SubnetId: string | undefined;
261
- IpAddress?: string;
262
- SecurityGroups?: string[];
261
+ IpAddress?: string | undefined;
262
+ SecurityGroups?: string[] | undefined;
263
263
  }
264
264
  export declare class IpAddressInUse extends __BaseException {
265
265
  readonly name: "IpAddressInUse";
266
266
  readonly $fault: "client";
267
267
  ErrorCode: string | undefined;
268
- Message?: string;
268
+ Message?: string | undefined;
269
269
  constructor(opts: __ExceptionOptionType<IpAddressInUse, __BaseException>);
270
270
  }
271
271
  export declare class MountTargetConflict extends __BaseException {
272
272
  readonly name: "MountTargetConflict";
273
273
  readonly $fault: "client";
274
274
  ErrorCode: string | undefined;
275
- Message?: string;
275
+ Message?: string | undefined;
276
276
  constructor(
277
277
  opts: __ExceptionOptionType<MountTargetConflict, __BaseException>
278
278
  );
279
279
  }
280
280
  export interface MountTargetDescription {
281
- OwnerId?: string;
281
+ OwnerId?: string | undefined;
282
282
  MountTargetId: string | undefined;
283
283
  FileSystemId: string | undefined;
284
284
  SubnetId: string | undefined;
285
285
  LifeCycleState: LifeCycleState | undefined;
286
- IpAddress?: string;
287
- NetworkInterfaceId?: string;
288
- AvailabilityZoneId?: string;
289
- AvailabilityZoneName?: string;
290
- VpcId?: string;
286
+ IpAddress?: string | undefined;
287
+ NetworkInterfaceId?: string | undefined;
288
+ AvailabilityZoneId?: string | undefined;
289
+ AvailabilityZoneName?: string | undefined;
290
+ VpcId?: string | undefined;
291
291
  }
292
292
  export declare class NetworkInterfaceLimitExceeded extends __BaseException {
293
293
  readonly name: "NetworkInterfaceLimitExceeded";
294
294
  readonly $fault: "client";
295
295
  ErrorCode: string | undefined;
296
- Message?: string;
296
+ Message?: string | undefined;
297
297
  constructor(
298
298
  opts: __ExceptionOptionType<NetworkInterfaceLimitExceeded, __BaseException>
299
299
  );
@@ -302,7 +302,7 @@ export declare class NoFreeAddressesInSubnet extends __BaseException {
302
302
  readonly name: "NoFreeAddressesInSubnet";
303
303
  readonly $fault: "client";
304
304
  ErrorCode: string | undefined;
305
- Message?: string;
305
+ Message?: string | undefined;
306
306
  constructor(
307
307
  opts: __ExceptionOptionType<NoFreeAddressesInSubnet, __BaseException>
308
308
  );
@@ -311,7 +311,7 @@ export declare class SecurityGroupLimitExceeded extends __BaseException {
311
311
  readonly name: "SecurityGroupLimitExceeded";
312
312
  readonly $fault: "client";
313
313
  ErrorCode: string | undefined;
314
- Message?: string;
314
+ Message?: string | undefined;
315
315
  constructor(
316
316
  opts: __ExceptionOptionType<SecurityGroupLimitExceeded, __BaseException>
317
317
  );
@@ -320,7 +320,7 @@ export declare class SecurityGroupNotFound extends __BaseException {
320
320
  readonly name: "SecurityGroupNotFound";
321
321
  readonly $fault: "client";
322
322
  ErrorCode: string | undefined;
323
- Message?: string;
323
+ Message?: string | undefined;
324
324
  constructor(
325
325
  opts: __ExceptionOptionType<SecurityGroupNotFound, __BaseException>
326
326
  );
@@ -329,14 +329,14 @@ export declare class SubnetNotFound extends __BaseException {
329
329
  readonly name: "SubnetNotFound";
330
330
  readonly $fault: "client";
331
331
  ErrorCode: string | undefined;
332
- Message?: string;
332
+ Message?: string | undefined;
333
333
  constructor(opts: __ExceptionOptionType<SubnetNotFound, __BaseException>);
334
334
  }
335
335
  export interface DestinationToCreate {
336
- Region?: string;
337
- AvailabilityZoneName?: string;
338
- KmsKeyId?: string;
339
- FileSystemId?: string;
336
+ Region?: string | undefined;
337
+ AvailabilityZoneName?: string | undefined;
338
+ KmsKeyId?: string | undefined;
339
+ FileSystemId?: string | undefined;
340
340
  }
341
341
  export interface CreateReplicationConfigurationRequest {
342
342
  SourceFileSystemId: string | undefined;
@@ -356,7 +356,7 @@ export interface Destination {
356
356
  Status: ReplicationStatus | undefined;
357
357
  FileSystemId: string | undefined;
358
358
  Region: string | undefined;
359
- LastReplicatedTimestamp?: Date;
359
+ LastReplicatedTimestamp?: Date | undefined;
360
360
  }
361
361
  export interface ReplicationConfigurationDescription {
362
362
  SourceFileSystemId: string | undefined;
@@ -369,8 +369,8 @@ export interface ReplicationConfigurationDescription {
369
369
  export declare class ReplicationNotFound extends __BaseException {
370
370
  readonly name: "ReplicationNotFound";
371
371
  readonly $fault: "client";
372
- ErrorCode?: string;
373
- Message?: string;
372
+ ErrorCode?: string | undefined;
373
+ Message?: string | undefined;
374
374
  constructor(
375
375
  opts: __ExceptionOptionType<ReplicationNotFound, __BaseException>
376
376
  );
@@ -379,7 +379,7 @@ export declare class ValidationException extends __BaseException {
379
379
  readonly name: "ValidationException";
380
380
  readonly $fault: "client";
381
381
  ErrorCode: string | undefined;
382
- Message?: string;
382
+ Message?: string | undefined;
383
383
  constructor(
384
384
  opts: __ExceptionOptionType<ValidationException, __BaseException>
385
385
  );
@@ -398,7 +398,7 @@ export declare class FileSystemInUse extends __BaseException {
398
398
  readonly name: "FileSystemInUse";
399
399
  readonly $fault: "client";
400
400
  ErrorCode: string | undefined;
401
- Message?: string;
401
+ Message?: string | undefined;
402
402
  constructor(opts: __ExceptionOptionType<FileSystemInUse, __BaseException>);
403
403
  }
404
404
  export interface DeleteFileSystemPolicyRequest {
@@ -411,14 +411,14 @@ export declare class DependencyTimeout extends __BaseException {
411
411
  readonly name: "DependencyTimeout";
412
412
  readonly $fault: "server";
413
413
  ErrorCode: string | undefined;
414
- Message?: string;
414
+ Message?: string | undefined;
415
415
  constructor(opts: __ExceptionOptionType<DependencyTimeout, __BaseException>);
416
416
  }
417
417
  export declare class MountTargetNotFound extends __BaseException {
418
418
  readonly name: "MountTargetNotFound";
419
419
  readonly $fault: "client";
420
420
  ErrorCode: string | undefined;
421
- Message?: string;
421
+ Message?: string | undefined;
422
422
  constructor(
423
423
  opts: __ExceptionOptionType<MountTargetNotFound, __BaseException>
424
424
  );
@@ -431,18 +431,18 @@ export interface DeleteTagsRequest {
431
431
  TagKeys: string[] | undefined;
432
432
  }
433
433
  export interface DescribeAccessPointsRequest {
434
- MaxResults?: number;
435
- NextToken?: string;
436
- AccessPointId?: string;
437
- FileSystemId?: string;
434
+ MaxResults?: number | undefined;
435
+ NextToken?: string | undefined;
436
+ AccessPointId?: string | undefined;
437
+ FileSystemId?: string | undefined;
438
438
  }
439
439
  export interface DescribeAccessPointsResponse {
440
- AccessPoints?: AccessPointDescription[];
441
- NextToken?: string;
440
+ AccessPoints?: AccessPointDescription[] | undefined;
441
+ NextToken?: string | undefined;
442
442
  }
443
443
  export interface DescribeAccountPreferencesRequest {
444
- NextToken?: string;
445
- MaxResults?: number;
444
+ NextToken?: string | undefined;
445
+ MaxResults?: number | undefined;
446
446
  }
447
447
  export declare const ResourceIdType: {
448
448
  readonly LongId: "LONG_ID";
@@ -456,12 +456,12 @@ export declare const Resource: {
456
456
  };
457
457
  export type Resource = (typeof Resource)[keyof typeof Resource];
458
458
  export interface ResourceIdPreference {
459
- ResourceIdType?: ResourceIdType;
460
- Resources?: Resource[];
459
+ ResourceIdType?: ResourceIdType | undefined;
460
+ Resources?: Resource[] | undefined;
461
461
  }
462
462
  export interface DescribeAccountPreferencesResponse {
463
- ResourceIdPreference?: ResourceIdPreference;
464
- NextToken?: string;
463
+ ResourceIdPreference?: ResourceIdPreference | undefined;
464
+ NextToken?: string | undefined;
465
465
  }
466
466
  export interface DescribeBackupPolicyRequest {
467
467
  FileSystemId: string | undefined;
@@ -469,27 +469,27 @@ export interface DescribeBackupPolicyRequest {
469
469
  export declare class PolicyNotFound extends __BaseException {
470
470
  readonly name: "PolicyNotFound";
471
471
  readonly $fault: "client";
472
- ErrorCode?: string;
473
- Message?: string;
472
+ ErrorCode?: string | undefined;
473
+ Message?: string | undefined;
474
474
  constructor(opts: __ExceptionOptionType<PolicyNotFound, __BaseException>);
475
475
  }
476
476
  export interface DescribeFileSystemPolicyRequest {
477
477
  FileSystemId: string | undefined;
478
478
  }
479
479
  export interface FileSystemPolicyDescription {
480
- FileSystemId?: string;
481
- Policy?: string;
480
+ FileSystemId?: string | undefined;
481
+ Policy?: string | undefined;
482
482
  }
483
483
  export interface DescribeFileSystemsRequest {
484
- MaxItems?: number;
485
- Marker?: string;
486
- CreationToken?: string;
487
- FileSystemId?: string;
484
+ MaxItems?: number | undefined;
485
+ Marker?: string | undefined;
486
+ CreationToken?: string | undefined;
487
+ FileSystemId?: string | undefined;
488
488
  }
489
489
  export interface DescribeFileSystemsResponse {
490
- Marker?: string;
491
- FileSystems?: FileSystemDescription[];
492
- NextMarker?: string;
490
+ Marker?: string | undefined;
491
+ FileSystems?: FileSystemDescription[] | undefined;
492
+ NextMarker?: string | undefined;
493
493
  }
494
494
  export interface DescribeLifecycleConfigurationRequest {
495
495
  FileSystemId: string | undefined;
@@ -526,24 +526,26 @@ export declare const TransitionToPrimaryStorageClassRules: {
526
526
  export type TransitionToPrimaryStorageClassRules =
527
527
  (typeof TransitionToPrimaryStorageClassRules)[keyof typeof TransitionToPrimaryStorageClassRules];
528
528
  export interface LifecyclePolicy {
529
- TransitionToIA?: TransitionToIARules;
530
- TransitionToPrimaryStorageClass?: TransitionToPrimaryStorageClassRules;
531
- TransitionToArchive?: TransitionToArchiveRules;
529
+ TransitionToIA?: TransitionToIARules | undefined;
530
+ TransitionToPrimaryStorageClass?:
531
+ | TransitionToPrimaryStorageClassRules
532
+ | undefined;
533
+ TransitionToArchive?: TransitionToArchiveRules | undefined;
532
534
  }
533
535
  export interface LifecycleConfigurationDescription {
534
- LifecyclePolicies?: LifecyclePolicy[];
536
+ LifecyclePolicies?: LifecyclePolicy[] | undefined;
535
537
  }
536
538
  export interface DescribeMountTargetsRequest {
537
- MaxItems?: number;
538
- Marker?: string;
539
- FileSystemId?: string;
540
- MountTargetId?: string;
541
- AccessPointId?: string;
539
+ MaxItems?: number | undefined;
540
+ Marker?: string | undefined;
541
+ FileSystemId?: string | undefined;
542
+ MountTargetId?: string | undefined;
543
+ AccessPointId?: string | undefined;
542
544
  }
543
545
  export interface DescribeMountTargetsResponse {
544
- Marker?: string;
545
- MountTargets?: MountTargetDescription[];
546
- NextMarker?: string;
546
+ Marker?: string | undefined;
547
+ MountTargets?: MountTargetDescription[] | undefined;
548
+ NextMarker?: string | undefined;
547
549
  }
548
550
  export interface DescribeMountTargetSecurityGroupsRequest {
549
551
  MountTargetId: string | undefined;
@@ -555,57 +557,57 @@ export declare class IncorrectMountTargetState extends __BaseException {
555
557
  readonly name: "IncorrectMountTargetState";
556
558
  readonly $fault: "client";
557
559
  ErrorCode: string | undefined;
558
- Message?: string;
560
+ Message?: string | undefined;
559
561
  constructor(
560
562
  opts: __ExceptionOptionType<IncorrectMountTargetState, __BaseException>
561
563
  );
562
564
  }
563
565
  export interface DescribeReplicationConfigurationsRequest {
564
- FileSystemId?: string;
565
- NextToken?: string;
566
- MaxResults?: number;
566
+ FileSystemId?: string | undefined;
567
+ NextToken?: string | undefined;
568
+ MaxResults?: number | undefined;
567
569
  }
568
570
  export interface DescribeReplicationConfigurationsResponse {
569
- Replications?: ReplicationConfigurationDescription[];
570
- NextToken?: string;
571
+ Replications?: ReplicationConfigurationDescription[] | undefined;
572
+ NextToken?: string | undefined;
571
573
  }
572
574
  export interface DescribeTagsRequest {
573
- MaxItems?: number;
574
- Marker?: string;
575
+ MaxItems?: number | undefined;
576
+ Marker?: string | undefined;
575
577
  FileSystemId: string | undefined;
576
578
  }
577
579
  export interface DescribeTagsResponse {
578
- Marker?: string;
580
+ Marker?: string | undefined;
579
581
  Tags: Tag[] | undefined;
580
- NextMarker?: string;
582
+ NextMarker?: string | undefined;
581
583
  }
582
584
  export declare class InvalidPolicyException extends __BaseException {
583
585
  readonly name: "InvalidPolicyException";
584
586
  readonly $fault: "client";
585
- ErrorCode?: string;
586
- Message?: string;
587
+ ErrorCode?: string | undefined;
588
+ Message?: string | undefined;
587
589
  constructor(
588
590
  opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>
589
591
  );
590
592
  }
591
593
  export interface ListTagsForResourceRequest {
592
594
  ResourceId: string | undefined;
593
- MaxResults?: number;
594
- NextToken?: string;
595
+ MaxResults?: number | undefined;
596
+ NextToken?: string | undefined;
595
597
  }
596
598
  export interface ListTagsForResourceResponse {
597
- Tags?: Tag[];
598
- NextToken?: string;
599
+ Tags?: Tag[] | undefined;
600
+ NextToken?: string | undefined;
599
601
  }
600
602
  export interface ModifyMountTargetSecurityGroupsRequest {
601
603
  MountTargetId: string | undefined;
602
- SecurityGroups?: string[];
604
+ SecurityGroups?: string[] | undefined;
603
605
  }
604
606
  export interface PutAccountPreferencesRequest {
605
607
  ResourceIdType: ResourceIdType | undefined;
606
608
  }
607
609
  export interface PutAccountPreferencesResponse {
608
- ResourceIdPreference?: ResourceIdPreference;
610
+ ResourceIdPreference?: ResourceIdPreference | undefined;
609
611
  }
610
612
  export interface PutBackupPolicyRequest {
611
613
  FileSystemId: string | undefined;
@@ -614,7 +616,7 @@ export interface PutBackupPolicyRequest {
614
616
  export interface PutFileSystemPolicyRequest {
615
617
  FileSystemId: string | undefined;
616
618
  Policy: string | undefined;
617
- BypassPolicyLockoutSafetyCheck?: boolean;
619
+ BypassPolicyLockoutSafetyCheck?: boolean | undefined;
618
620
  }
619
621
  export interface PutLifecycleConfigurationRequest {
620
622
  FileSystemId: string | undefined;
@@ -632,24 +634,24 @@ export declare class TooManyRequests extends __BaseException {
632
634
  readonly name: "TooManyRequests";
633
635
  readonly $fault: "client";
634
636
  ErrorCode: string | undefined;
635
- Message?: string;
637
+ Message?: string | undefined;
636
638
  constructor(opts: __ExceptionOptionType<TooManyRequests, __BaseException>);
637
639
  }
638
640
  export interface UpdateFileSystemRequest {
639
641
  FileSystemId: string | undefined;
640
- ThroughputMode?: ThroughputMode;
641
- ProvisionedThroughputInMibps?: number;
642
+ ThroughputMode?: ThroughputMode | undefined;
643
+ ProvisionedThroughputInMibps?: number | undefined;
642
644
  }
643
645
  export declare class ReplicationAlreadyExists extends __BaseException {
644
646
  readonly name: "ReplicationAlreadyExists";
645
647
  readonly $fault: "client";
646
- ErrorCode?: string;
647
- Message?: string;
648
+ ErrorCode?: string | undefined;
649
+ Message?: string | undefined;
648
650
  constructor(
649
651
  opts: __ExceptionOptionType<ReplicationAlreadyExists, __BaseException>
650
652
  );
651
653
  }
652
654
  export interface UpdateFileSystemProtectionRequest {
653
655
  FileSystemId: string | undefined;
654
- ReplicationOverwriteProtection?: ReplicationOverwriteProtection;
656
+ ReplicationOverwriteProtection?: ReplicationOverwriteProtection | undefined;
655
657
  }