@aws-sdk/client-efs 3.687.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.
@@ -22,7 +22,7 @@ export declare class AccessPointAlreadyExists extends __BaseException {
22
22
  * more likely to ignore the error message.</p>
23
23
  * @public
24
24
  */
25
- Message?: string;
25
+ Message?: string | undefined;
26
26
  AccessPointId: string | undefined;
27
27
  /**
28
28
  * @internal
@@ -65,7 +65,7 @@ export interface PosixUser {
65
65
  * <p>Secondary POSIX group IDs used for all file system operations using this access point.</p>
66
66
  * @public
67
67
  */
68
- SecondaryGids?: number[];
68
+ SecondaryGids?: number[] | undefined;
69
69
  }
70
70
  /**
71
71
  * <p>Required if the <code>RootDirectory</code> > <code>Path</code> specified does not exist.
@@ -114,7 +114,7 @@ export interface RootDirectory {
114
114
  * the <code>CreationInfo</code>.</p>
115
115
  * @public
116
116
  */
117
- Path?: string;
117
+ Path?: string | undefined;
118
118
  /**
119
119
  * <p>(Optional) Specifies the POSIX IDs and permissions to apply to the access point's
120
120
  * <code>RootDirectory</code>. If the <code>RootDirectory</code> > <code>Path</code>
@@ -127,7 +127,7 @@ export interface RootDirectory {
127
127
  * </important>
128
128
  * @public
129
129
  */
130
- CreationInfo?: CreationInfo;
130
+ CreationInfo?: CreationInfo | undefined;
131
131
  }
132
132
  /**
133
133
  * <p>A tag is a key-value pair. Allowed characters are letters, white space, and numbers that
@@ -155,54 +155,54 @@ export interface AccessPointDescription {
155
155
  * <p>The opaque string specified in the request to ensure idempotent creation.</p>
156
156
  * @public
157
157
  */
158
- ClientToken?: string;
158
+ ClientToken?: string | undefined;
159
159
  /**
160
160
  * <p>The name of the access point. This is the value of the <code>Name</code> tag.</p>
161
161
  * @public
162
162
  */
163
- Name?: string;
163
+ Name?: string | undefined;
164
164
  /**
165
165
  * <p>The tags associated with the access point, presented as an array of Tag objects.</p>
166
166
  * @public
167
167
  */
168
- Tags?: Tag[];
168
+ Tags?: Tag[] | undefined;
169
169
  /**
170
170
  * <p>The ID of the access point, assigned by Amazon EFS.</p>
171
171
  * @public
172
172
  */
173
- AccessPointId?: string;
173
+ AccessPointId?: string | undefined;
174
174
  /**
175
175
  * <p>The unique Amazon Resource Name (ARN) associated with the access point.</p>
176
176
  * @public
177
177
  */
178
- AccessPointArn?: string;
178
+ AccessPointArn?: string | undefined;
179
179
  /**
180
180
  * <p>The ID of the EFS file system that the access point applies to.</p>
181
181
  * @public
182
182
  */
183
- FileSystemId?: string;
183
+ FileSystemId?: string | undefined;
184
184
  /**
185
185
  * <p>The full POSIX identity, including the user ID, group ID, and secondary group IDs on the access point that is used for all file operations by
186
186
  * NFS clients using the access point.</p>
187
187
  * @public
188
188
  */
189
- PosixUser?: PosixUser;
189
+ PosixUser?: PosixUser | undefined;
190
190
  /**
191
191
  * <p>The directory on the EFS file system that the access point exposes as the root
192
192
  * directory to NFS clients using the access point.</p>
193
193
  * @public
194
194
  */
195
- RootDirectory?: RootDirectory;
195
+ RootDirectory?: RootDirectory | undefined;
196
196
  /**
197
197
  * <p>Identifies the Amazon Web Services account that owns the access point resource.</p>
198
198
  * @public
199
199
  */
200
- OwnerId?: string;
200
+ OwnerId?: string | undefined;
201
201
  /**
202
202
  * <p>Identifies the lifecycle phase of the access point.</p>
203
203
  * @public
204
204
  */
205
- LifeCycleState?: LifeCycleState;
205
+ LifeCycleState?: LifeCycleState | undefined;
206
206
  }
207
207
  /**
208
208
  * <p>Returned if the Amazon Web Services account has already created the maximum number of access points
@@ -226,7 +226,7 @@ export declare class AccessPointLimitExceeded extends __BaseException {
226
226
  * more likely to ignore the error message.</p>
227
227
  * @public
228
228
  */
229
- Message?: string;
229
+ Message?: string | undefined;
230
230
  /**
231
231
  * @internal
232
232
  */
@@ -254,7 +254,7 @@ export declare class AccessPointNotFound extends __BaseException {
254
254
  * more likely to ignore the error message.</p>
255
255
  * @public
256
256
  */
257
- Message?: string;
257
+ Message?: string | undefined;
258
258
  /**
259
259
  * @internal
260
260
  */
@@ -274,7 +274,7 @@ export declare class AvailabilityZonesMismatch extends __BaseException {
274
274
  * It is meant to be read and understood by programs that detect and handle errors by type. </p>
275
275
  * @public
276
276
  */
277
- ErrorCode?: string;
277
+ ErrorCode?: string | undefined;
278
278
  /**
279
279
  * <p>The error message contains a generic description of the error
280
280
  * condition in English. It is intended for a human audience. Simple programs display the message directly
@@ -283,7 +283,7 @@ export declare class AvailabilityZonesMismatch extends __BaseException {
283
283
  * more likely to ignore the error message.</p>
284
284
  * @public
285
285
  */
286
- Message?: string;
286
+ Message?: string | undefined;
287
287
  /**
288
288
  * @internal
289
289
  */
@@ -354,7 +354,7 @@ export interface BackupPolicyDescription {
354
354
  * turned on or off.</p>
355
355
  * @public
356
356
  */
357
- BackupPolicy?: BackupPolicy;
357
+ BackupPolicy?: BackupPolicy | undefined;
358
358
  }
359
359
  /**
360
360
  * <p>Returned if the request is malformed or contains an error such as an invalid
@@ -378,7 +378,7 @@ export declare class BadRequest extends __BaseException {
378
378
  * more likely to ignore the error message.</p>
379
379
  * @public
380
380
  */
381
- Message?: string;
381
+ Message?: string | undefined;
382
382
  /**
383
383
  * @internal
384
384
  */
@@ -396,7 +396,7 @@ export declare class ConflictException extends __BaseException {
396
396
  * It is meant to be read and understood by programs that detect and handle errors by type. </p>
397
397
  * @public
398
398
  */
399
- ErrorCode?: string;
399
+ ErrorCode?: string | undefined;
400
400
  /**
401
401
  * <p>The error message contains a generic description of the error
402
402
  * condition in English. It is intended for a human audience. Simple programs display the message directly
@@ -405,7 +405,7 @@ export declare class ConflictException extends __BaseException {
405
405
  * more likely to ignore the error message.</p>
406
406
  * @public
407
407
  */
408
- Message?: string;
408
+ Message?: string | undefined;
409
409
  /**
410
410
  * @internal
411
411
  */
@@ -420,14 +420,14 @@ export interface CreateAccessPointRequest {
420
420
  * creation.</p>
421
421
  * @public
422
422
  */
423
- ClientToken?: string;
423
+ ClientToken?: string | undefined;
424
424
  /**
425
425
  * <p>Creates tags associated with the access point. Each tag is a key-value pair, each key must be unique. For more
426
426
  * information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a>
427
427
  * in the <i>Amazon Web Services General Reference Guide</i>.</p>
428
428
  * @public
429
429
  */
430
- Tags?: Tag[];
430
+ Tags?: Tag[] | undefined;
431
431
  /**
432
432
  * <p>The ID of the EFS file system that the access point provides access to.</p>
433
433
  * @public
@@ -438,7 +438,7 @@ export interface CreateAccessPointRequest {
438
438
  * group applied to all file system requests made using the access point.</p>
439
439
  * @public
440
440
  */
441
- PosixUser?: PosixUser;
441
+ PosixUser?: PosixUser | undefined;
442
442
  /**
443
443
  * <p>Specifies the directory on the EFS file system that the access point exposes as
444
444
  * the root directory of your file system to NFS clients using the access point. The clients
@@ -451,7 +451,7 @@ export interface CreateAccessPointRequest {
451
451
  * using the access point will fail.</p>
452
452
  * @public
453
453
  */
454
- RootDirectory?: RootDirectory;
454
+ RootDirectory?: RootDirectory | undefined;
455
455
  }
456
456
  /**
457
457
  * <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
@@ -475,7 +475,7 @@ export declare class FileSystemNotFound extends __BaseException {
475
475
  * more likely to ignore the error message.</p>
476
476
  * @public
477
477
  */
478
- Message?: string;
478
+ Message?: string | undefined;
479
479
  /**
480
480
  * @internal
481
481
  */
@@ -502,7 +502,7 @@ export declare class IncorrectFileSystemLifeCycleState extends __BaseException {
502
502
  * more likely to ignore the error message.</p>
503
503
  * @public
504
504
  */
505
- Message?: string;
505
+ Message?: string | undefined;
506
506
  /**
507
507
  * @internal
508
508
  */
@@ -529,7 +529,7 @@ export declare class InternalServerError extends __BaseException {
529
529
  * more likely to ignore the error message.</p>
530
530
  * @public
531
531
  */
532
- Message?: string;
532
+ Message?: string | undefined;
533
533
  /**
534
534
  * @internal
535
535
  */
@@ -549,7 +549,7 @@ export declare class ThrottlingException extends __BaseException {
549
549
  * It is meant to be read and understood by programs that detect and handle errors by type. </p>
550
550
  * @public
551
551
  */
552
- ErrorCode?: string;
552
+ ErrorCode?: string | undefined;
553
553
  /**
554
554
  * <p>The error message contains a generic description of the error
555
555
  * condition in English. It is intended for a human audience. Simple programs display the message directly
@@ -558,7 +558,7 @@ export declare class ThrottlingException extends __BaseException {
558
558
  * more likely to ignore the error message.</p>
559
559
  * @public
560
560
  */
561
- Message?: string;
561
+ Message?: string | undefined;
562
562
  /**
563
563
  * @internal
564
564
  */
@@ -598,7 +598,7 @@ export interface CreateFileSystemRequest {
598
598
  * creation.</p>
599
599
  * @public
600
600
  */
601
- CreationToken?: string;
601
+ CreationToken?: string | undefined;
602
602
  /**
603
603
  * <p>The Performance mode of the file system. We recommend <code>generalPurpose</code>
604
604
  * performance mode for all file systems. File systems using the <code>maxIO</code> performance
@@ -612,7 +612,7 @@ export interface CreateFileSystemRequest {
612
612
  * <p>Default is <code>generalPurpose</code>.</p>
613
613
  * @public
614
614
  */
615
- PerformanceMode?: PerformanceMode;
615
+ PerformanceMode?: PerformanceMode | undefined;
616
616
  /**
617
617
  * <p>A Boolean value that, if true, creates an encrypted file system. When creating an
618
618
  * encrypted file system, you have the option of specifying an existing Key Management Service key (KMS key).
@@ -621,7 +621,7 @@ export interface CreateFileSystemRequest {
621
621
  * </p>
622
622
  * @public
623
623
  */
624
- Encrypted?: boolean;
624
+ Encrypted?: boolean | undefined;
625
625
  /**
626
626
  * <p>The ID of the KMS key that you want to use to protect the encrypted file
627
627
  * system. This parameter is required only if you want to use a non-default KMS key. If this parameter is not specified, the default KMS key for Amazon EFS is used. You can specify a KMS key ID using the following
@@ -652,7 +652,7 @@ export interface CreateFileSystemRequest {
652
652
  * </important>
653
653
  * @public
654
654
  */
655
- KmsKeyId?: string;
655
+ KmsKeyId?: string | undefined;
656
656
  /**
657
657
  * <p>Specifies the throughput mode for the file system. The mode can be <code>bursting</code>,
658
658
  * <code>provisioned</code>, or <code>elastic</code>. If you set <code>ThroughputMode</code> to
@@ -665,7 +665,7 @@ export interface CreateFileSystemRequest {
665
665
  * <p>Default is <code>bursting</code>.</p>
666
666
  * @public
667
667
  */
668
- ThroughputMode?: ThroughputMode;
668
+ ThroughputMode?: ThroughputMode | undefined;
669
669
  /**
670
670
  * <p>The throughput, measured in mebibytes per second (MiBps), that you want to provision for a
671
671
  * file system that you're creating. Required if <code>ThroughputMode</code> is set to
@@ -675,7 +675,7 @@ export interface CreateFileSystemRequest {
675
675
  * Guide</i>.</p>
676
676
  * @public
677
677
  */
678
- ProvisionedThroughputInMibps?: number;
678
+ ProvisionedThroughputInMibps?: number | undefined;
679
679
  /**
680
680
  * <p>Used to create a One Zone file system. It specifies the Amazon Web Services
681
681
  * Availability Zone in which to create the file system. Use the format <code>us-east-1a</code> to
@@ -687,7 +687,7 @@ export interface CreateFileSystemRequest {
687
687
  * </note>
688
688
  * @public
689
689
  */
690
- AvailabilityZoneName?: string;
690
+ AvailabilityZoneName?: string | undefined;
691
691
  /**
692
692
  * <p>Specifies whether automatic backups are enabled on the file system that you are creating.
693
693
  * Set the value to <code>true</code> to enable automatic backups. If you are creating a
@@ -701,7 +701,7 @@ export interface CreateFileSystemRequest {
701
701
  * </note>
702
702
  * @public
703
703
  */
704
- Backup?: boolean;
704
+ Backup?: boolean | undefined;
705
705
  /**
706
706
  * <p>Use to create one or more tags associated with the file system. Each
707
707
  * tag is a user-defined key-value pair. Name your file system on creation by including a
@@ -710,7 +710,7 @@ export interface CreateFileSystemRequest {
710
710
  * in the <i>Amazon Web Services General Reference Guide</i>.</p>
711
711
  * @public
712
712
  */
713
- Tags?: Tag[];
713
+ Tags?: Tag[] | undefined;
714
714
  }
715
715
  /**
716
716
  * <p>Returned if the file system you are trying to create already exists, with the
@@ -734,7 +734,7 @@ export declare class FileSystemAlreadyExists extends __BaseException {
734
734
  * more likely to ignore the error message.</p>
735
735
  * @public
736
736
  */
737
- Message?: string;
737
+ Message?: string | undefined;
738
738
  FileSystemId: string | undefined;
739
739
  /**
740
740
  * @internal
@@ -785,7 +785,7 @@ export interface FileSystemProtectionDescription {
785
785
  * protection is re-enabled, the file system becomes writeable.</p>
786
786
  * @public
787
787
  */
788
- ReplicationOverwriteProtection?: ReplicationOverwriteProtection;
788
+ ReplicationOverwriteProtection?: ReplicationOverwriteProtection | undefined;
789
789
  }
790
790
  /**
791
791
  * <p>The latest known metered size (in bytes) of data stored in the file system, in its
@@ -808,25 +808,25 @@ export interface FileSystemSize {
808
808
  * determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.</p>
809
809
  * @public
810
810
  */
811
- Timestamp?: Date;
811
+ Timestamp?: Date | undefined;
812
812
  /**
813
813
  * <p>The latest known metered size (in bytes) of data stored in the Infrequent Access storage
814
814
  * class.</p>
815
815
  * @public
816
816
  */
817
- ValueInIA?: number;
817
+ ValueInIA?: number | undefined;
818
818
  /**
819
819
  * <p>The latest known metered size (in bytes) of data stored in the Standard
820
820
  * storage class.</p>
821
821
  * @public
822
822
  */
823
- ValueInStandard?: number;
823
+ ValueInStandard?: number | undefined;
824
824
  /**
825
825
  * <p>The latest known metered size (in bytes) of data stored in the Archive
826
826
  * storage class.</p>
827
827
  * @public
828
828
  */
829
- ValueInArchive?: number;
829
+ ValueInArchive?: number | undefined;
830
830
  }
831
831
  /**
832
832
  * <p>A description of the file system.</p>
@@ -857,7 +857,7 @@ export interface FileSystemDescription {
857
857
  * </p>
858
858
  * @public
859
859
  */
860
- FileSystemArn?: string;
860
+ FileSystemArn?: string | undefined;
861
861
  /**
862
862
  * <p>The time that the file system was created, in seconds (since
863
863
  * 1970-01-01T00:00:00Z).</p>
@@ -875,7 +875,7 @@ export interface FileSystemDescription {
875
875
  * the value in this field. </p>
876
876
  * @public
877
877
  */
878
- Name?: string;
878
+ Name?: string | undefined;
879
879
  /**
880
880
  * <p>The current number of mount targets that the file system has. For more information, see <a>CreateMountTarget</a>.</p>
881
881
  * @public
@@ -903,12 +903,12 @@ export interface FileSystemDescription {
903
903
  * <p>A Boolean value that, if true, indicates that the file system is encrypted.</p>
904
904
  * @public
905
905
  */
906
- Encrypted?: boolean;
906
+ Encrypted?: boolean | undefined;
907
907
  /**
908
908
  * <p>The ID of an KMS key used to protect the encrypted file system.</p>
909
909
  * @public
910
910
  */
911
- KmsKeyId?: string;
911
+ KmsKeyId?: string | undefined;
912
912
  /**
913
913
  * <p>Displays the file system's throughput mode. For more information, see
914
914
  * <a href="https://docs.aws.amazon.com/efs/latest/ug/performance.html#throughput-modes">Throughput modes</a>
@@ -916,20 +916,20 @@ export interface FileSystemDescription {
916
916
  * </p>
917
917
  * @public
918
918
  */
919
- ThroughputMode?: ThroughputMode;
919
+ ThroughputMode?: ThroughputMode | undefined;
920
920
  /**
921
921
  * <p>The amount of provisioned throughput, measured in MiBps, for the file system. Valid for
922
922
  * file systems using <code>ThroughputMode</code> set to <code>provisioned</code>.</p>
923
923
  * @public
924
924
  */
925
- ProvisionedThroughputInMibps?: number;
925
+ ProvisionedThroughputInMibps?: number | undefined;
926
926
  /**
927
927
  * <p>Describes the Amazon Web Services Availability Zone in which the file system is located, and is
928
928
  * valid only for One Zone file systems. For more information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/storage-classes.html">Using EFS storage
929
929
  * classes</a> in the <i>Amazon EFS User Guide</i>.</p>
930
930
  * @public
931
931
  */
932
- AvailabilityZoneName?: string;
932
+ AvailabilityZoneName?: string | undefined;
933
933
  /**
934
934
  * <p>The unique and consistent identifier of the Availability Zone in which the file system is
935
935
  * located, and is valid only for One Zone file systems. For example,
@@ -937,7 +937,7 @@ export interface FileSystemDescription {
937
937
  * it has the same location in every Amazon Web Services account.</p>
938
938
  * @public
939
939
  */
940
- AvailabilityZoneId?: string;
940
+ AvailabilityZoneId?: string | undefined;
941
941
  /**
942
942
  * <p>The tags associated with the file system, presented as an array of <code>Tag</code>
943
943
  * objects.</p>
@@ -948,7 +948,7 @@ export interface FileSystemDescription {
948
948
  * <p>Describes the protection on the file system. </p>
949
949
  * @public
950
950
  */
951
- FileSystemProtection?: FileSystemProtectionDescription;
951
+ FileSystemProtection?: FileSystemProtectionDescription | undefined;
952
952
  }
953
953
  /**
954
954
  * <p>Returned if the Amazon Web Services account has already created the maximum number of file systems
@@ -972,7 +972,7 @@ export declare class FileSystemLimitExceeded extends __BaseException {
972
972
  * more likely to ignore the error message.</p>
973
973
  * @public
974
974
  */
975
- Message?: string;
975
+ Message?: string | undefined;
976
976
  /**
977
977
  * @internal
978
978
  */
@@ -1003,7 +1003,7 @@ export declare class InsufficientThroughputCapacity extends __BaseException {
1003
1003
  * more likely to ignore the error message.</p>
1004
1004
  * @public
1005
1005
  */
1006
- Message?: string;
1006
+ Message?: string | undefined;
1007
1007
  /**
1008
1008
  * @internal
1009
1009
  */
@@ -1031,7 +1031,7 @@ export declare class ThroughputLimitExceeded extends __BaseException {
1031
1031
  * more likely to ignore the error message.</p>
1032
1032
  * @public
1033
1033
  */
1034
- Message?: string;
1034
+ Message?: string | undefined;
1035
1035
  /**
1036
1036
  * @internal
1037
1037
  */
@@ -1058,7 +1058,7 @@ export declare class UnsupportedAvailabilityZone extends __BaseException {
1058
1058
  * more likely to ignore the error message.</p>
1059
1059
  * @public
1060
1060
  */
1061
- Message?: string;
1061
+ Message?: string | undefined;
1062
1062
  /**
1063
1063
  * @internal
1064
1064
  */
@@ -1084,13 +1084,13 @@ export interface CreateMountTargetRequest {
1084
1084
  * <p>Valid IPv4 address within the address range of the specified subnet.</p>
1085
1085
  * @public
1086
1086
  */
1087
- IpAddress?: string;
1087
+ IpAddress?: string | undefined;
1088
1088
  /**
1089
1089
  * <p>Up to five VPC security group IDs, of the form <code>sg-xxxxxxxx</code>. These must be
1090
1090
  * for the same VPC as subnet specified.</p>
1091
1091
  * @public
1092
1092
  */
1093
- SecurityGroups?: string[];
1093
+ SecurityGroups?: string[] | undefined;
1094
1094
  }
1095
1095
  /**
1096
1096
  * <p>Returned if the request specified an <code>IpAddress</code> that is already in use
@@ -1114,7 +1114,7 @@ export declare class IpAddressInUse extends __BaseException {
1114
1114
  * more likely to ignore the error message.</p>
1115
1115
  * @public
1116
1116
  */
1117
- Message?: string;
1117
+ Message?: string | undefined;
1118
1118
  /**
1119
1119
  * @internal
1120
1120
  */
@@ -1142,7 +1142,7 @@ export declare class MountTargetConflict extends __BaseException {
1142
1142
  * more likely to ignore the error message.</p>
1143
1143
  * @public
1144
1144
  */
1145
- Message?: string;
1145
+ Message?: string | undefined;
1146
1146
  /**
1147
1147
  * @internal
1148
1148
  */
@@ -1157,7 +1157,7 @@ export interface MountTargetDescription {
1157
1157
  * <p>Amazon Web Services account ID that owns the resource.</p>
1158
1158
  * @public
1159
1159
  */
1160
- OwnerId?: string;
1160
+ OwnerId?: string | undefined;
1161
1161
  /**
1162
1162
  * <p>System-assigned mount target ID.</p>
1163
1163
  * @public
@@ -1182,31 +1182,31 @@ export interface MountTargetDescription {
1182
1182
  * <p>Address at which the file system can be mounted by using the mount target.</p>
1183
1183
  * @public
1184
1184
  */
1185
- IpAddress?: string;
1185
+ IpAddress?: string | undefined;
1186
1186
  /**
1187
1187
  * <p>The ID of the network interface that Amazon EFS created when it created the mount
1188
1188
  * target.</p>
1189
1189
  * @public
1190
1190
  */
1191
- NetworkInterfaceId?: string;
1191
+ NetworkInterfaceId?: string | undefined;
1192
1192
  /**
1193
1193
  * <p>The unique and consistent identifier of the Availability Zone that the mount target resides in.
1194
1194
  * For example, <code>use1-az1</code> is an AZ ID for the us-east-1 Region and it has the same location in every Amazon Web Services account.</p>
1195
1195
  * @public
1196
1196
  */
1197
- AvailabilityZoneId?: string;
1197
+ AvailabilityZoneId?: string | undefined;
1198
1198
  /**
1199
1199
  * <p>The name of the Availability Zone in which the mount target is located. Availability Zones are
1200
1200
  * independently mapped to names for each Amazon Web Services account. For example, the Availability Zone
1201
1201
  * <code>us-east-1a</code> for your Amazon Web Services account might not be the same location as <code>us-east-1a</code> for another Amazon Web Services account.</p>
1202
1202
  * @public
1203
1203
  */
1204
- AvailabilityZoneName?: string;
1204
+ AvailabilityZoneName?: string | undefined;
1205
1205
  /**
1206
1206
  * <p>The virtual private cloud (VPC) ID that the mount target is configured in.</p>
1207
1207
  * @public
1208
1208
  */
1209
- VpcId?: string;
1209
+ VpcId?: string | undefined;
1210
1210
  }
1211
1211
  /**
1212
1212
  * <p>The calling account has reached the limit for elastic network interfaces for the
@@ -1234,7 +1234,7 @@ export declare class NetworkInterfaceLimitExceeded extends __BaseException {
1234
1234
  * more likely to ignore the error message.</p>
1235
1235
  * @public
1236
1236
  */
1237
- Message?: string;
1237
+ Message?: string | undefined;
1238
1238
  /**
1239
1239
  * @internal
1240
1240
  */
@@ -1262,7 +1262,7 @@ export declare class NoFreeAddressesInSubnet extends __BaseException {
1262
1262
  * more likely to ignore the error message.</p>
1263
1263
  * @public
1264
1264
  */
1265
- Message?: string;
1265
+ Message?: string | undefined;
1266
1266
  /**
1267
1267
  * @internal
1268
1268
  */
@@ -1290,7 +1290,7 @@ export declare class SecurityGroupLimitExceeded extends __BaseException {
1290
1290
  * more likely to ignore the error message.</p>
1291
1291
  * @public
1292
1292
  */
1293
- Message?: string;
1293
+ Message?: string | undefined;
1294
1294
  /**
1295
1295
  * @internal
1296
1296
  */
@@ -1318,7 +1318,7 @@ export declare class SecurityGroupNotFound extends __BaseException {
1318
1318
  * more likely to ignore the error message.</p>
1319
1319
  * @public
1320
1320
  */
1321
- Message?: string;
1321
+ Message?: string | undefined;
1322
1322
  /**
1323
1323
  * @internal
1324
1324
  */
@@ -1346,7 +1346,7 @@ export declare class SubnetNotFound extends __BaseException {
1346
1346
  * more likely to ignore the error message.</p>
1347
1347
  * @public
1348
1348
  */
1349
- Message?: string;
1349
+ Message?: string | undefined;
1350
1350
  /**
1351
1351
  * @internal
1352
1352
  */
@@ -1362,13 +1362,13 @@ export interface DestinationToCreate {
1362
1362
  * <p>To create a file system that uses Regional storage, specify the Amazon Web Services Region in which to create the destination file system.</p>
1363
1363
  * @public
1364
1364
  */
1365
- Region?: string;
1365
+ Region?: string | undefined;
1366
1366
  /**
1367
1367
  * <p>To create a file system that uses One Zone storage, specify the name of the
1368
1368
  * Availability Zone in which to create the destination file system.</p>
1369
1369
  * @public
1370
1370
  */
1371
- AvailabilityZoneName?: string;
1371
+ AvailabilityZoneName?: string | undefined;
1372
1372
  /**
1373
1373
  * <p>Specify the Key Management Service (KMS) key that you want to use to
1374
1374
  * encrypt the destination file system. If you do not specify a KMS key, Amazon EFS uses your default KMS key for Amazon EFS,
@@ -1393,14 +1393,14 @@ export interface DestinationToCreate {
1393
1393
  * </ul>
1394
1394
  * @public
1395
1395
  */
1396
- KmsKeyId?: string;
1396
+ KmsKeyId?: string | undefined;
1397
1397
  /**
1398
1398
  * <p>The ID of the file system to use for the destination. The file system's replication
1399
1399
  * overwrite replication must be disabled. If you do not provide an ID, then EFS creates a new
1400
1400
  * file system for the replication destination.</p>
1401
1401
  * @public
1402
1402
  */
1403
- FileSystemId?: string;
1403
+ FileSystemId?: string | undefined;
1404
1404
  }
1405
1405
  /**
1406
1406
  * @public
@@ -1478,7 +1478,7 @@ export interface Destination {
1478
1478
  * time might not be fully replicated.</p>
1479
1479
  * @public
1480
1480
  */
1481
- LastReplicatedTimestamp?: Date;
1481
+ LastReplicatedTimestamp?: Date | undefined;
1482
1482
  }
1483
1483
  /**
1484
1484
  * <p>Describes the replication configuration for a specific file system.</p>
@@ -1531,7 +1531,7 @@ export declare class ReplicationNotFound extends __BaseException {
1531
1531
  * <p>ReplicationNotFound</p>
1532
1532
  * @public
1533
1533
  */
1534
- ErrorCode?: string;
1534
+ ErrorCode?: string | undefined;
1535
1535
  /**
1536
1536
  * <p>The error message contains a generic description of the error
1537
1537
  * condition in English. It is intended for a human audience. Simple programs display the message directly
@@ -1540,7 +1540,7 @@ export declare class ReplicationNotFound extends __BaseException {
1540
1540
  * more likely to ignore the error message.</p>
1541
1541
  * @public
1542
1542
  */
1543
- Message?: string;
1543
+ Message?: string | undefined;
1544
1544
  /**
1545
1545
  * @internal
1546
1546
  */
@@ -1567,7 +1567,7 @@ export declare class ValidationException extends __BaseException {
1567
1567
  * more likely to ignore the error message.</p>
1568
1568
  * @public
1569
1569
  */
1570
- Message?: string;
1570
+ Message?: string | undefined;
1571
1571
  /**
1572
1572
  * @internal
1573
1573
  */
@@ -1633,7 +1633,7 @@ export declare class FileSystemInUse extends __BaseException {
1633
1633
  * more likely to ignore the error message.</p>
1634
1634
  * @public
1635
1635
  */
1636
- Message?: string;
1636
+ Message?: string | undefined;
1637
1637
  /**
1638
1638
  * @internal
1639
1639
  */
@@ -1683,7 +1683,7 @@ export declare class DependencyTimeout extends __BaseException {
1683
1683
  * more likely to ignore the error message.</p>
1684
1684
  * @public
1685
1685
  */
1686
- Message?: string;
1686
+ Message?: string | undefined;
1687
1687
  /**
1688
1688
  * @internal
1689
1689
  */
@@ -1711,7 +1711,7 @@ export declare class MountTargetNotFound extends __BaseException {
1711
1711
  * more likely to ignore the error message.</p>
1712
1712
  * @public
1713
1713
  */
1714
- Message?: string;
1714
+ Message?: string | undefined;
1715
1715
  /**
1716
1716
  * @internal
1717
1717
  */
@@ -1753,26 +1753,26 @@ export interface DescribeAccessPointsRequest {
1753
1753
  * The default value is 100. </p>
1754
1754
  * @public
1755
1755
  */
1756
- MaxResults?: number;
1756
+ MaxResults?: number | undefined;
1757
1757
  /**
1758
1758
  * <p>
1759
1759
  * <code>NextToken</code> is present if the response is paginated. You can use
1760
1760
  * <code>NextMarker</code> in the subsequent request to fetch the next page of access point descriptions.</p>
1761
1761
  * @public
1762
1762
  */
1763
- NextToken?: string;
1763
+ NextToken?: string | undefined;
1764
1764
  /**
1765
1765
  * <p>(Optional) Specifies an EFS access point to describe in the response; mutually
1766
1766
  * exclusive with <code>FileSystemId</code>.</p>
1767
1767
  * @public
1768
1768
  */
1769
- AccessPointId?: string;
1769
+ AccessPointId?: string | undefined;
1770
1770
  /**
1771
1771
  * <p>(Optional) If you provide a <code>FileSystemId</code>, EFS returns all access
1772
1772
  * points for that file system; mutually exclusive with <code>AccessPointId</code>.</p>
1773
1773
  * @public
1774
1774
  */
1775
- FileSystemId?: string;
1775
+ FileSystemId?: string | undefined;
1776
1776
  }
1777
1777
  /**
1778
1778
  * @public
@@ -1782,13 +1782,13 @@ export interface DescribeAccessPointsResponse {
1782
1782
  * <p>An array of access point descriptions.</p>
1783
1783
  * @public
1784
1784
  */
1785
- AccessPoints?: AccessPointDescription[];
1785
+ AccessPoints?: AccessPointDescription[] | undefined;
1786
1786
  /**
1787
1787
  * <p>Present if there are more access points than returned in the response.
1788
1788
  * You can use the NextMarker in the subsequent request to fetch the additional descriptions.</p>
1789
1789
  * @public
1790
1790
  */
1791
- NextToken?: string;
1791
+ NextToken?: string | undefined;
1792
1792
  }
1793
1793
  /**
1794
1794
  * @public
@@ -1799,14 +1799,14 @@ export interface DescribeAccountPreferencesRequest {
1799
1799
  * Amazon Web Services account preferences if the response payload was paginated.</p>
1800
1800
  * @public
1801
1801
  */
1802
- NextToken?: string;
1802
+ NextToken?: string | undefined;
1803
1803
  /**
1804
1804
  * <p>(Optional) When retrieving account preferences,
1805
1805
  * you can optionally specify the <code>MaxItems</code> parameter to limit the number of objects returned in a response.
1806
1806
  * The default value is 100. </p>
1807
1807
  * @public
1808
1808
  */
1809
- MaxResults?: number;
1809
+ MaxResults?: number | undefined;
1810
1810
  }
1811
1811
  /**
1812
1812
  * @public
@@ -1842,12 +1842,12 @@ export interface ResourceIdPreference {
1842
1842
  * characters) or <code>SHORT_ID</code> (8 characters).</p>
1843
1843
  * @public
1844
1844
  */
1845
- ResourceIdType?: ResourceIdType;
1845
+ ResourceIdType?: ResourceIdType | undefined;
1846
1846
  /**
1847
1847
  * <p>Identifies the Amazon EFS resources to which the ID preference setting applies, <code>FILE_SYSTEM</code> and <code>MOUNT_TARGET</code>.</p>
1848
1848
  * @public
1849
1849
  */
1850
- Resources?: Resource[];
1850
+ Resources?: Resource[] | undefined;
1851
1851
  }
1852
1852
  /**
1853
1853
  * @public
@@ -1857,13 +1857,13 @@ export interface DescribeAccountPreferencesResponse {
1857
1857
  * <p>Describes the resource ID preference setting for the Amazon Web Services account associated with the user making the request, in the current Amazon Web Services Region.</p>
1858
1858
  * @public
1859
1859
  */
1860
- ResourceIdPreference?: ResourceIdPreference;
1860
+ ResourceIdPreference?: ResourceIdPreference | undefined;
1861
1861
  /**
1862
1862
  * <p>Present if there are more records than returned in the response.
1863
1863
  * You can use the <code>NextToken</code> in the subsequent request to fetch the additional descriptions.</p>
1864
1864
  * @public
1865
1865
  */
1866
- NextToken?: string;
1866
+ NextToken?: string | undefined;
1867
1867
  }
1868
1868
  /**
1869
1869
  * @public
@@ -1888,7 +1888,7 @@ export declare class PolicyNotFound extends __BaseException {
1888
1888
  * It is meant to be read and understood by programs that detect and handle errors by type. </p>
1889
1889
  * @public
1890
1890
  */
1891
- ErrorCode?: string;
1891
+ ErrorCode?: string | undefined;
1892
1892
  /**
1893
1893
  * <p>The error message contains a generic description of the error
1894
1894
  * condition in English. It is intended for a human audience. Simple programs display the message directly
@@ -1897,7 +1897,7 @@ export declare class PolicyNotFound extends __BaseException {
1897
1897
  * more likely to ignore the error message.</p>
1898
1898
  * @public
1899
1899
  */
1900
- Message?: string;
1900
+ Message?: string | undefined;
1901
1901
  /**
1902
1902
  * @internal
1903
1903
  */
@@ -1923,13 +1923,13 @@ export interface FileSystemPolicyDescription {
1923
1923
  * applies.</p>
1924
1924
  * @public
1925
1925
  */
1926
- FileSystemId?: string;
1926
+ FileSystemId?: string | undefined;
1927
1927
  /**
1928
1928
  * <p>The JSON formatted <code>FileSystemPolicy</code> for the EFS file
1929
1929
  * system.</p>
1930
1930
  * @public
1931
1931
  */
1932
- Policy?: string;
1932
+ Policy?: string | undefined;
1933
1933
  }
1934
1934
  /**
1935
1935
  * <p></p>
@@ -1942,26 +1942,26 @@ export interface DescribeFileSystemsRequest {
1942
1942
  * </p>
1943
1943
  * @public
1944
1944
  */
1945
- MaxItems?: number;
1945
+ MaxItems?: number | undefined;
1946
1946
  /**
1947
1947
  * <p>(Optional) Opaque pagination token returned from a previous
1948
1948
  * <code>DescribeFileSystems</code> operation (String). If present, specifies to continue the
1949
1949
  * list from where the returning call had left off. </p>
1950
1950
  * @public
1951
1951
  */
1952
- Marker?: string;
1952
+ Marker?: string | undefined;
1953
1953
  /**
1954
1954
  * <p>(Optional) Restricts the list to the file system with this creation token (String). You
1955
1955
  * specify a creation token when you create an Amazon EFS file system.</p>
1956
1956
  * @public
1957
1957
  */
1958
- CreationToken?: string;
1958
+ CreationToken?: string | undefined;
1959
1959
  /**
1960
1960
  * <p>(Optional) ID of the file system whose description you want to retrieve
1961
1961
  * (String).</p>
1962
1962
  * @public
1963
1963
  */
1964
- FileSystemId?: string;
1964
+ FileSystemId?: string | undefined;
1965
1965
  }
1966
1966
  /**
1967
1967
  * @public
@@ -1971,18 +1971,18 @@ export interface DescribeFileSystemsResponse {
1971
1971
  * <p>Present if provided by caller in the request (String).</p>
1972
1972
  * @public
1973
1973
  */
1974
- Marker?: string;
1974
+ Marker?: string | undefined;
1975
1975
  /**
1976
1976
  * <p>An array of file system descriptions.</p>
1977
1977
  * @public
1978
1978
  */
1979
- FileSystems?: FileSystemDescription[];
1979
+ FileSystems?: FileSystemDescription[] | undefined;
1980
1980
  /**
1981
1981
  * <p>Present if there are more file systems than returned in the response (String). You can
1982
1982
  * use the <code>NextMarker</code> in the subsequent request to fetch the descriptions.</p>
1983
1983
  * @public
1984
1984
  */
1985
- NextMarker?: string;
1985
+ NextMarker?: string | undefined;
1986
1986
  }
1987
1987
  /**
1988
1988
  * @public
@@ -2066,14 +2066,14 @@ export interface LifecyclePolicy {
2066
2066
  * don't count as file access events.</p>
2067
2067
  * @public
2068
2068
  */
2069
- TransitionToIA?: TransitionToIARules;
2069
+ TransitionToIA?: TransitionToIARules | undefined;
2070
2070
  /**
2071
2071
  * <p>Whether to move files back to primary (Standard) storage after they are
2072
2072
  * accessed in IA or Archive storage. Metadata operations such as
2073
2073
  * listing the contents of a directory don't count as file access events.</p>
2074
2074
  * @public
2075
2075
  */
2076
- TransitionToPrimaryStorageClass?: TransitionToPrimaryStorageClassRules;
2076
+ TransitionToPrimaryStorageClass?: TransitionToPrimaryStorageClassRules | undefined;
2077
2077
  /**
2078
2078
  * <p>The number of days after files were last accessed in primary storage (the
2079
2079
  * Standard storage class) files at which to move them to Archive
@@ -2081,7 +2081,7 @@ export interface LifecyclePolicy {
2081
2081
  * file access events.</p>
2082
2082
  * @public
2083
2083
  */
2084
- TransitionToArchive?: TransitionToArchiveRules;
2084
+ TransitionToArchive?: TransitionToArchiveRules | undefined;
2085
2085
  }
2086
2086
  /**
2087
2087
  * @public
@@ -2092,7 +2092,7 @@ export interface LifecycleConfigurationDescription {
2092
2092
  * policy per file system.</p>
2093
2093
  * @public
2094
2094
  */
2095
- LifecyclePolicies?: LifecyclePolicy[];
2095
+ LifecyclePolicies?: LifecyclePolicy[] | undefined;
2096
2096
  }
2097
2097
  /**
2098
2098
  * <p></p>
@@ -2105,32 +2105,32 @@ export interface DescribeMountTargetsRequest {
2105
2105
  * 10, and other values are ignored. The response is paginated at 100 per page if you have more than 100 mount targets.</p>
2106
2106
  * @public
2107
2107
  */
2108
- MaxItems?: number;
2108
+ MaxItems?: number | undefined;
2109
2109
  /**
2110
2110
  * <p>(Optional) Opaque pagination token returned from a previous
2111
2111
  * <code>DescribeMountTargets</code> operation (String). If present, it specifies to continue
2112
2112
  * the list from where the previous returning call left off.</p>
2113
2113
  * @public
2114
2114
  */
2115
- Marker?: string;
2115
+ Marker?: string | undefined;
2116
2116
  /**
2117
2117
  * <p>(Optional) ID of the file system whose mount targets you want to list (String). It must
2118
2118
  * be included in your request if an <code>AccessPointId</code> or <code>MountTargetId</code> is not included. Accepts either a file system ID or ARN as input.</p>
2119
2119
  * @public
2120
2120
  */
2121
- FileSystemId?: string;
2121
+ FileSystemId?: string | undefined;
2122
2122
  /**
2123
2123
  * <p>(Optional) ID of the mount target that you want to have described (String). It must be
2124
2124
  * included in your request if <code>FileSystemId</code> is not included. Accepts either a mount target ID or ARN as input.</p>
2125
2125
  * @public
2126
2126
  */
2127
- MountTargetId?: string;
2127
+ MountTargetId?: string | undefined;
2128
2128
  /**
2129
2129
  * <p>(Optional) The ID of the access point whose mount targets that you want to list. It must be included in your request if a
2130
2130
  * <code>FileSystemId</code> or <code>MountTargetId</code> is not included in your request. Accepts either an access point ID or ARN as input.</p>
2131
2131
  * @public
2132
2132
  */
2133
- AccessPointId?: string;
2133
+ AccessPointId?: string | undefined;
2134
2134
  }
2135
2135
  /**
2136
2136
  * <p></p>
@@ -2142,20 +2142,20 @@ export interface DescribeMountTargetsResponse {
2142
2142
  * this field.</p>
2143
2143
  * @public
2144
2144
  */
2145
- Marker?: string;
2145
+ Marker?: string | undefined;
2146
2146
  /**
2147
2147
  * <p>Returns the file system's mount targets as an array of
2148
2148
  * <code>MountTargetDescription</code> objects.</p>
2149
2149
  * @public
2150
2150
  */
2151
- MountTargets?: MountTargetDescription[];
2151
+ MountTargets?: MountTargetDescription[] | undefined;
2152
2152
  /**
2153
2153
  * <p>If a value is present, there are more mount targets to return. In a subsequent request,
2154
2154
  * you can provide <code>Marker</code> in your request with this value to retrieve the next set
2155
2155
  * of mount targets.</p>
2156
2156
  * @public
2157
2157
  */
2158
- NextMarker?: string;
2158
+ NextMarker?: string | undefined;
2159
2159
  }
2160
2160
  /**
2161
2161
  * <p></p>
@@ -2200,7 +2200,7 @@ export declare class IncorrectMountTargetState extends __BaseException {
2200
2200
  * more likely to ignore the error message.</p>
2201
2201
  * @public
2202
2202
  */
2203
- Message?: string;
2203
+ Message?: string | undefined;
2204
2204
  /**
2205
2205
  * @internal
2206
2206
  */
@@ -2215,7 +2215,7 @@ export interface DescribeReplicationConfigurationsRequest {
2215
2215
  * file system ID.</p>
2216
2216
  * @public
2217
2217
  */
2218
- FileSystemId?: string;
2218
+ FileSystemId?: string | undefined;
2219
2219
  /**
2220
2220
  * <p>
2221
2221
  * <code>NextToken</code> is present if the response is paginated. You can use
@@ -2223,13 +2223,13 @@ export interface DescribeReplicationConfigurationsRequest {
2223
2223
  * output.</p>
2224
2224
  * @public
2225
2225
  */
2226
- NextToken?: string;
2226
+ NextToken?: string | undefined;
2227
2227
  /**
2228
2228
  * <p>(Optional) To limit the number of objects returned in a response, you can specify the
2229
2229
  * <code>MaxItems</code> parameter. The default value is 100. </p>
2230
2230
  * @public
2231
2231
  */
2232
- MaxResults?: number;
2232
+ MaxResults?: number | undefined;
2233
2233
  }
2234
2234
  /**
2235
2235
  * @public
@@ -2239,13 +2239,13 @@ export interface DescribeReplicationConfigurationsResponse {
2239
2239
  * <p>The collection of replication configurations that is returned.</p>
2240
2240
  * @public
2241
2241
  */
2242
- Replications?: ReplicationConfigurationDescription[];
2242
+ Replications?: ReplicationConfigurationDescription[] | undefined;
2243
2243
  /**
2244
2244
  * <p>You can use the <code>NextToken</code> from the previous response in a subsequent
2245
2245
  * request to fetch the additional descriptions.</p>
2246
2246
  * @public
2247
2247
  */
2248
- NextToken?: string;
2248
+ NextToken?: string | undefined;
2249
2249
  }
2250
2250
  /**
2251
2251
  * <p></p>
@@ -2258,14 +2258,14 @@ export interface DescribeTagsRequest {
2258
2258
  * 100, and other values are ignored. The response is paginated at 100 per page if you have more than 100 tags.</p>
2259
2259
  * @public
2260
2260
  */
2261
- MaxItems?: number;
2261
+ MaxItems?: number | undefined;
2262
2262
  /**
2263
2263
  * <p>(Optional) An opaque pagination token returned from a previous
2264
2264
  * <code>DescribeTags</code> operation (String). If present, it specifies to continue the list
2265
2265
  * from where the previous call left off.</p>
2266
2266
  * @public
2267
2267
  */
2268
- Marker?: string;
2268
+ Marker?: string | undefined;
2269
2269
  /**
2270
2270
  * <p>The ID of the file system whose tag set you want to retrieve.</p>
2271
2271
  * @public
@@ -2282,7 +2282,7 @@ export interface DescribeTagsResponse {
2282
2282
  * field.</p>
2283
2283
  * @public
2284
2284
  */
2285
- Marker?: string;
2285
+ Marker?: string | undefined;
2286
2286
  /**
2287
2287
  * <p>Returns tags associated with the file system as an array of <code>Tag</code> objects.
2288
2288
  * </p>
@@ -2295,7 +2295,7 @@ export interface DescribeTagsResponse {
2295
2295
  * in your next request to retrieve the next set of tags.</p>
2296
2296
  * @public
2297
2297
  */
2298
- NextMarker?: string;
2298
+ NextMarker?: string | undefined;
2299
2299
  }
2300
2300
  /**
2301
2301
  * <p>Returned if the <code>FileSystemPolicy</code> is malformed or contains an error such
@@ -2311,7 +2311,7 @@ export declare class InvalidPolicyException extends __BaseException {
2311
2311
  * It is meant to be read and understood by programs that detect and handle errors by type. </p>
2312
2312
  * @public
2313
2313
  */
2314
- ErrorCode?: string;
2314
+ ErrorCode?: string | undefined;
2315
2315
  /**
2316
2316
  * <p>The error message contains a generic description of the error
2317
2317
  * condition in English. It is intended for a human audience. Simple programs display the message directly
@@ -2320,7 +2320,7 @@ export declare class InvalidPolicyException extends __BaseException {
2320
2320
  * more likely to ignore the error message.</p>
2321
2321
  * @public
2322
2322
  */
2323
- Message?: string;
2323
+ Message?: string | undefined;
2324
2324
  /**
2325
2325
  * @internal
2326
2326
  */
@@ -2340,12 +2340,12 @@ export interface ListTagsForResourceRequest {
2340
2340
  * <p>(Optional) Specifies the maximum number of tag objects to return in the response. The default value is 100.</p>
2341
2341
  * @public
2342
2342
  */
2343
- MaxResults?: number;
2343
+ MaxResults?: number | undefined;
2344
2344
  /**
2345
2345
  * <p>(Optional) You can use <code>NextToken</code> in a subsequent request to fetch the next page of access point descriptions if the response payload was paginated.</p>
2346
2346
  * @public
2347
2347
  */
2348
- NextToken?: string;
2348
+ NextToken?: string | undefined;
2349
2349
  }
2350
2350
  /**
2351
2351
  * @public
@@ -2355,13 +2355,13 @@ export interface ListTagsForResourceResponse {
2355
2355
  * <p>An array of the tags for the specified EFS resource.</p>
2356
2356
  * @public
2357
2357
  */
2358
- Tags?: Tag[];
2358
+ Tags?: Tag[] | undefined;
2359
2359
  /**
2360
2360
  * <p>
2361
2361
  * <code>NextToken</code> is present if the response payload is paginated. You can use <code>NextToken</code> in a subsequent request to fetch the next page of access point descriptions.</p>
2362
2362
  * @public
2363
2363
  */
2364
- NextToken?: string;
2364
+ NextToken?: string | undefined;
2365
2365
  }
2366
2366
  /**
2367
2367
  * <p></p>
@@ -2377,7 +2377,7 @@ export interface ModifyMountTargetSecurityGroupsRequest {
2377
2377
  * <p>An array of up to five VPC security group IDs.</p>
2378
2378
  * @public
2379
2379
  */
2380
- SecurityGroups?: string[];
2380
+ SecurityGroups?: string[] | undefined;
2381
2381
  }
2382
2382
  /**
2383
2383
  * @public
@@ -2403,7 +2403,7 @@ export interface PutAccountPreferencesResponse {
2403
2403
  * <p>Describes the resource type and its ID preference for the user's Amazon Web Services account, in the current Amazon Web Services Region.</p>
2404
2404
  * @public
2405
2405
  */
2406
- ResourceIdPreference?: ResourceIdPreference;
2406
+ ResourceIdPreference?: ResourceIdPreference | undefined;
2407
2407
  }
2408
2408
  /**
2409
2409
  * @public
@@ -2446,7 +2446,7 @@ export interface PutFileSystemPolicyRequest {
2446
2446
  * </p>
2447
2447
  * @public
2448
2448
  */
2449
- BypassPolicyLockoutSafetyCheck?: boolean;
2449
+ BypassPolicyLockoutSafetyCheck?: boolean | undefined;
2450
2450
  }
2451
2451
  /**
2452
2452
  * @public
@@ -2559,7 +2559,7 @@ export declare class TooManyRequests extends __BaseException {
2559
2559
  * more likely to ignore the error message.</p>
2560
2560
  * @public
2561
2561
  */
2562
- Message?: string;
2562
+ Message?: string | undefined;
2563
2563
  /**
2564
2564
  * @internal
2565
2565
  */
@@ -2581,7 +2581,7 @@ export interface UpdateFileSystemRequest {
2581
2581
  * you must also set a value for <code>ProvisionedThroughputInMibps</code>.</p>
2582
2582
  * @public
2583
2583
  */
2584
- ThroughputMode?: ThroughputMode;
2584
+ ThroughputMode?: ThroughputMode | undefined;
2585
2585
  /**
2586
2586
  * <p>(Optional) The throughput, measured in mebibytes per second (MiBps), that you want to
2587
2587
  * provision for a file system that you're creating. Required if <code>ThroughputMode</code>
@@ -2592,7 +2592,7 @@ export interface UpdateFileSystemRequest {
2592
2592
  * Guide</i>.</p>
2593
2593
  * @public
2594
2594
  */
2595
- ProvisionedThroughputInMibps?: number;
2595
+ ProvisionedThroughputInMibps?: number | undefined;
2596
2596
  }
2597
2597
  /**
2598
2598
  * <p>Returned if the file system is already included in a replication configuration.></p>
@@ -2606,7 +2606,7 @@ export declare class ReplicationAlreadyExists extends __BaseException {
2606
2606
  * It is meant to be read and understood by programs that detect and handle errors by type. </p>
2607
2607
  * @public
2608
2608
  */
2609
- ErrorCode?: string;
2609
+ ErrorCode?: string | undefined;
2610
2610
  /**
2611
2611
  * <p>The error message contains a generic description of the error
2612
2612
  * condition in English. It is intended for a human audience. Simple programs display the message directly
@@ -2615,7 +2615,7 @@ export declare class ReplicationAlreadyExists extends __BaseException {
2615
2615
  * more likely to ignore the error message.</p>
2616
2616
  * @public
2617
2617
  */
2618
- Message?: string;
2618
+ Message?: string | undefined;
2619
2619
  /**
2620
2620
  * @internal
2621
2621
  */
@@ -2656,5 +2656,5 @@ export interface UpdateFileSystemProtectionRequest {
2656
2656
  * protection is re-enabled, the file system becomes writeable.</p>
2657
2657
  * @public
2658
2658
  */
2659
- ReplicationOverwriteProtection?: ReplicationOverwriteProtection;
2659
+ ReplicationOverwriteProtection?: ReplicationOverwriteProtection | undefined;
2660
2660
  }