@aws-sdk/client-fsx 3.218.0 → 3.222.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist-cjs/endpoint/ruleset.js +7 -7
  2. package/dist-cjs/models/models_0.js +13 -13
  3. package/dist-cjs/protocols/Aws_json1_1.js +22 -1
  4. package/dist-es/endpoint/ruleset.js +7 -7
  5. package/dist-es/models/models_0.js +10 -10
  6. package/dist-es/protocols/Aws_json1_1.js +22 -1
  7. package/dist-types/FSx.d.ts +95 -123
  8. package/dist-types/commands/AssociateFileSystemAliasesCommand.d.ts +1 -1
  9. package/dist-types/commands/CancelDataRepositoryTaskCommand.d.ts +1 -1
  10. package/dist-types/commands/CreateBackupCommand.d.ts +14 -16
  11. package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +3 -3
  12. package/dist-types/commands/CreateFileCacheCommand.d.ts +6 -6
  13. package/dist-types/commands/CreateFileSystemCommand.d.ts +8 -8
  14. package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +8 -12
  15. package/dist-types/commands/CreateSnapshotCommand.d.ts +6 -6
  16. package/dist-types/commands/DeleteBackupCommand.d.ts +3 -5
  17. package/dist-types/commands/DeleteFileCacheCommand.d.ts +3 -5
  18. package/dist-types/commands/DeleteFileSystemCommand.d.ts +6 -8
  19. package/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeBackupsCommand.d.ts +6 -9
  21. package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +2 -4
  22. package/dist-types/commands/DescribeDataRepositoryTasksCommand.d.ts +1 -2
  23. package/dist-types/commands/DescribeFileCachesCommand.d.ts +6 -9
  24. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +6 -9
  25. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +6 -6
  26. package/dist-types/commands/DisassociateFileSystemAliasesCommand.d.ts +1 -1
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -10
  28. package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +1 -1
  29. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  30. package/dist-types/models/models_0.d.ts +545 -374
  31. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +28 -16
  33. package/package.json +29 -28
@@ -57,6 +57,7 @@ export declare enum AdministrativeActionType {
57
57
  RELEASE_NFS_V3_LOCKS = "RELEASE_NFS_V3_LOCKS",
58
58
  SNAPSHOT_UPDATE = "SNAPSHOT_UPDATE",
59
59
  STORAGE_OPTIMIZATION = "STORAGE_OPTIMIZATION",
60
+ VOLUME_RESTORE = "VOLUME_RESTORE",
60
61
  VOLUME_UPDATE = "VOLUME_UPDATE"
61
62
  }
62
63
  /**
@@ -110,7 +111,7 @@ export declare enum AutoImportPolicyType {
110
111
  NONE = "NONE"
111
112
  }
112
113
  /**
113
- * <p>Provides detailed information about the data respository if its <code>Lifecycle</code> is
114
+ * <p>Provides detailed information about the data repository if its <code>Lifecycle</code> is
114
115
  * set to <code>MISCONFIGURED</code> or <code>FAILED</code>.</p>
115
116
  */
116
117
  export interface DataRepositoryFailureDetails {
@@ -130,14 +131,14 @@ export declare enum DataRepositoryLifecycle {
130
131
  /**
131
132
  * <p>The data repository configuration object for Lustre file systems returned in the response of
132
133
  * the <code>CreateFileSystem</code> operation.</p>
133
- * <p>This data type is not supported for file systems with the <code>Persistent_2</code> deployment type.
134
+ * <p>This data type is not supported for file systems with the <code>Persistent_2</code> deployment type.
134
135
  * Instead, use .</p>
135
136
  */
136
137
  export interface DataRepositoryConfiguration {
137
138
  /**
138
139
  * <p>Describes the state of the file system's S3 durable data repository, if it is configured with an S3 repository.
139
140
  * The lifecycle can have the following values:</p>
140
- * <ul>
141
+ * <ul>
141
142
  * <li>
142
143
  * <p>
143
144
  * <code>CREATING</code> - The data repository configuration between
@@ -186,8 +187,7 @@ export interface DataRepositoryConfiguration {
186
187
  * maximum amount of data per file (in MiB) stored on a single physical disk. The maximum
187
188
  * number of disks that a single file can be striped across is limited by the total number
188
189
  * of disks that make up the file system.</p>
189
- *
190
- * <p>The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500
190
+ * <p>The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500
191
191
  * GiB). Amazon S3 objects have a maximum size of 5 TB.</p>
192
192
  */
193
193
  ImportedFileChunkSize?: number;
@@ -195,7 +195,7 @@ export interface DataRepositoryConfiguration {
195
195
  * <p>Describes the file system's linked S3 data repository's <code>AutoImportPolicy</code>.
196
196
  * The AutoImportPolicy configures how Amazon FSx keeps your file and directory listings up to date
197
197
  * as you add or modify objects in your linked S3 bucket. <code>AutoImportPolicy</code> can have the following values:</p>
198
- * <ul>
198
+ * <ul>
199
199
  * <li>
200
200
  * <p>
201
201
  * <code>NONE</code> - (Default) AutoImport is off. Amazon FSx only updates
@@ -226,7 +226,7 @@ export interface DataRepositoryConfiguration {
226
226
  */
227
227
  AutoImportPolicy?: AutoImportPolicyType | string;
228
228
  /**
229
- * <p>Provides detailed information about the data respository if its <code>Lifecycle</code> is
229
+ * <p>Provides detailed information about the data repository if its <code>Lifecycle</code> is
230
230
  * set to <code>MISCONFIGURED</code> or <code>FAILED</code>.</p>
231
231
  */
232
232
  FailureDetails?: DataRepositoryFailureDetails;
@@ -255,27 +255,27 @@ export declare enum LustreAccessAuditLogLevel {
255
255
  export interface LustreLogConfiguration {
256
256
  /**
257
257
  * <p>The data repository events that are logged by Amazon FSx.</p>
258
- * <ul>
258
+ * <ul>
259
259
  * <li>
260
- * <p>
260
+ * <p>
261
261
  * <code>WARN_ONLY</code> - only warning events are logged.</p>
262
262
  * </li>
263
263
  * <li>
264
- * <p>
264
+ * <p>
265
265
  * <code>ERROR_ONLY</code> - only error events are logged.</p>
266
266
  * </li>
267
267
  * <li>
268
- * <p>
268
+ * <p>
269
269
  * <code>WARN_ERROR</code> - both warning events and error events
270
270
  * are logged.</p>
271
271
  * </li>
272
272
  * <li>
273
- * <p>
273
+ * <p>
274
274
  * <code>DISABLED</code> - logging of data repository events
275
275
  * is turned off.</p>
276
276
  * </li>
277
277
  * </ul>
278
- * <p>Note that Amazon File Cache uses a default setting of <code>WARN_ERROR</code>,
278
+ * <p>Note that Amazon File Cache uses a default setting of <code>WARN_ERROR</code>,
279
279
  * which can't be changed.</p>
280
280
  */
281
281
  Level: LustreAccessAuditLogLevel | string | undefined;
@@ -293,7 +293,7 @@ export interface LustreLogConfiguration {
293
293
  * Use the <code>RootSquash</code> parameter to enable root squash. To learn more
294
294
  * about Lustre root squash,
295
295
  * see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/root-squash.html">Lustre root squash</a>.</p>
296
- * <p>You can also use the <code>NoSquashNids</code> parameter to provide an array of clients
296
+ * <p>You can also use the <code>NoSquashNids</code> parameter to provide an array of clients
297
297
  * who are not affected by the root squash setting. These clients will access the file system as root,
298
298
  * with unrestricted privileges.</p>
299
299
  */
@@ -302,7 +302,7 @@ export interface LustreRootSquashConfiguration {
302
302
  * <p>You enable root squash by setting a user ID (UID) and group ID (GID) for the file
303
303
  * system in the format <code>UID:GID</code> (for example, <code>365534:65534</code>).
304
304
  * The UID and GID values can range from <code>0</code> to <code>4294967294</code>:</p>
305
- * <ul>
305
+ * <ul>
306
306
  * <li>
307
307
  * <p>A non-zero value for UID and GID enables root squash. The UID and GID
308
308
  * values can be different, but each must be a non-zero value.</p>
@@ -312,7 +312,7 @@ export interface LustreRootSquashConfiguration {
312
312
  * and therefore disables root squash.</p>
313
313
  * </li>
314
314
  * </ul>
315
- * <p>When root squash is enabled, the user ID and group ID of a root user accessing
315
+ * <p>When root squash is enabled, the user ID and group ID of a root user accessing
316
316
  * the file system are re-mapped to the UID and GID you provide.</p>
317
317
  */
318
318
  RootSquash?: string;
@@ -321,7 +321,7 @@ export interface LustreRootSquashConfiguration {
321
321
  * for which root squash does not apply. A client NID is a Lustre Network Identifier used
322
322
  * to uniquely identify a client. You can specify the NID as either a single address or a
323
323
  * range of addresses:</p>
324
- * <ul>
324
+ * <ul>
325
325
  * <li>
326
326
  * <p>A single address is described in standard Lustre NID format by specifying
327
327
  * the client’s IP address followed by the Lustre network ID (for example,
@@ -348,7 +348,7 @@ export interface LustreFileSystemConfiguration {
348
348
  /**
349
349
  * <p>The data repository configuration object for Lustre file systems returned in the response of
350
350
  * the <code>CreateFileSystem</code> operation.</p>
351
- * <p>This data type is not supported for file systems with the <code>Persistent_2</code> deployment type.
351
+ * <p>This data type is not supported for file systems with the <code>Persistent_2</code> deployment type.
352
352
  * Instead, use .</p>
353
353
  */
354
354
  DataRepositoryConfiguration?: DataRepositoryConfiguration;
@@ -356,18 +356,18 @@ export interface LustreFileSystemConfiguration {
356
356
  * <p>The deployment type of the FSx for Lustre file system.
357
357
  * <i>Scratch deployment type</i> is designed for temporary storage
358
358
  * and shorter-term processing of data.</p>
359
- * <p>
359
+ * <p>
360
360
  * <code>SCRATCH_1</code> and <code>SCRATCH_2</code> deployment types are best suited
361
361
  * for when you need temporary storage and shorter-term processing of data. The
362
362
  * <code>SCRATCH_2</code> deployment type provides in-transit encryption of data and higher burst
363
363
  * throughput capacity than <code>SCRATCH_1</code>.</p>
364
- * <p>The <code>PERSISTENT_1</code> and <code>PERSISTENT_2</code> deployment type is used
364
+ * <p>The <code>PERSISTENT_1</code> and <code>PERSISTENT_2</code> deployment type is used
365
365
  * for longer-term storage and workloads and encryption of data in transit.
366
366
  * <code>PERSISTENT_2</code> is built on Lustre v2.12 and offers higher
367
367
  * <code>PerUnitStorageThroughput</code> (up to 1000 MB/s/TiB) along with a lower
368
368
  * minimum storage capacity requirement (600 GiB). To learn more about FSx for Lustre deployment types, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-deployment-types.html">
369
369
  * FSx for Lustre deployment options</a>.</p>
370
- * <p>The default is <code>SCRATCH_1</code>.</p>
370
+ * <p>The default is <code>SCRATCH_1</code>.</p>
371
371
  */
372
372
  DeploymentType?: LustreDeploymentType | string;
373
373
  /**
@@ -375,8 +375,8 @@ export interface LustreFileSystemConfiguration {
375
375
  * throughput per 1 tebibyte of storage provisioned. File system throughput capacity is
376
376
  * equal to Storage capacity (TiB) * PerUnitStorageThroughput (MB/s/TiB). This option is
377
377
  * only valid for <code>PERSISTENT_1</code> and <code>PERSISTENT_2</code> deployment types. </p>
378
- * <p>Valid values:</p>
379
- * <ul>
378
+ * <p>Valid values:</p>
379
+ * <ul>
380
380
  * <li>
381
381
  * <p>For <code>PERSISTENT_1</code> SSD storage: 50, 100, 200.</p>
382
382
  * </li>
@@ -391,7 +391,7 @@ export interface LustreFileSystemConfiguration {
391
391
  PerUnitStorageThroughput?: number;
392
392
  /**
393
393
  * <p>You use the <code>MountName</code> value when mounting the file system.</p>
394
- * <p>For the <code>SCRATCH_1</code> deployment type, this value is always "<code>fsx</code>".
394
+ * <p>For the <code>SCRATCH_1</code> deployment type, this value is always "<code>fsx</code>".
395
395
  * For <code>SCRATCH_2</code>, <code>PERSISTENT_1</code>, and <code>PERSISTENT_2</code> deployment
396
396
  * types, this value is a string that is unique within an Amazon Web Services Region.
397
397
  *
@@ -426,13 +426,13 @@ export interface LustreFileSystemConfiguration {
426
426
  * <code>READ</code> the file system has an SSD storage cache that is sized to 20% of the file system's
427
427
  * storage capacity. This improves the performance for frequently accessed files by caching up to 20%
428
428
  * of the total storage capacity.</p>
429
- * <p>This parameter is required when <code>StorageType</code> is set to HDD.</p>
429
+ * <p>This parameter is required when <code>StorageType</code> is set to HDD.</p>
430
430
  */
431
431
  DriveCacheType?: DriveCacheType | string;
432
432
  /**
433
433
  * <p>The data compression configuration for the file system. <code>DataCompressionType</code>
434
434
  * can have the following values:</p>
435
- * <ul>
435
+ * <ul>
436
436
  * <li>
437
437
  * <p>
438
438
  * <code>NONE</code> - Data compression is turned off for
@@ -444,7 +444,7 @@ export interface LustreFileSystemConfiguration {
444
444
  * algorithm.</p>
445
445
  * </li>
446
446
  * </ul>
447
- * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/data-compression.html">Lustre data compression</a>.</p>
447
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/data-compression.html">Lustre data compression</a>.</p>
448
448
  */
449
449
  DataCompressionType?: DataCompressionType | string;
450
450
  /**
@@ -538,20 +538,20 @@ export interface OntapFileSystemConfiguration {
538
538
  /**
539
539
  * <p>Specifies the FSx for ONTAP file system deployment type in use in the file
540
540
  * system. </p>
541
- * <ul>
541
+ * <ul>
542
542
  * <li>
543
- * <p>
543
+ * <p>
544
544
  * <code>MULTI_AZ_1</code> - (Default) A high availability file system configured
545
545
  * for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ)
546
546
  * unavailability. </p>
547
547
  * </li>
548
548
  * <li>
549
- * <p>
549
+ * <p>
550
550
  * <code>SINGLE_AZ_1</code> - A file system configured for Single-AZ
551
551
  * redundancy.</p>
552
552
  * </li>
553
553
  * </ul>
554
- * <p>For information about the use cases for Multi-AZ and Single-AZ deployments, refer to
554
+ * <p>For information about the use cases for Multi-AZ and Single-AZ deployments, refer to
555
555
  * <a href="https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/high-availability-multiAZ.html">Choosing Multi-AZ or
556
556
  * Single-AZ file system deployment</a>. </p>
557
557
  */
@@ -559,7 +559,7 @@ export interface OntapFileSystemConfiguration {
559
559
  /**
560
560
  * <p>(Multi-AZ only) The IP address range in which the endpoints to access your file system
561
561
  * are created.</p>
562
- * <important>
562
+ * <important>
563
563
  * <p>The Endpoint IP address range you select for your file system
564
564
  * must exist outside the VPC's CIDR range and must be at least /30 or larger.
565
565
  * If you do not specify this optional parameter, Amazon FSx will automatically
@@ -596,18 +596,19 @@ export interface OntapFileSystemConfiguration {
596
596
  ThroughputCapacity?: number;
597
597
  /**
598
598
  * <p>A recurring weekly time, in the format <code>D:HH:MM</code>. </p>
599
- * <p>
599
+ * <p>
600
600
  * <code>D</code> is the day of the week, for which 1 represents Monday and 7
601
601
  * represents Sunday. For further details, see <a href="https://en.wikipedia.org/wiki/ISO_week_date">the ISO-8601 spec as described on Wikipedia</a>.</p>
602
- * <p>
602
+ * <p>
603
603
  * <code>HH</code> is the zero-padded hour of the day (0-23), and <code>MM</code> is
604
604
  * the zero-padded minute of the hour. </p>
605
- * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
605
+ * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
606
606
  */
607
607
  WeeklyMaintenanceStartTime?: string;
608
608
  }
609
609
  export declare enum OpenZFSDeploymentType {
610
- SINGLE_AZ_1 = "SINGLE_AZ_1"
610
+ SINGLE_AZ_1 = "SINGLE_AZ_1",
611
+ SINGLE_AZ_2 = "SINGLE_AZ_2"
611
612
  }
612
613
  /**
613
614
  * <p>The configuration for the Amazon FSx for OpenZFS file system. </p>
@@ -647,24 +648,22 @@ export interface OpenZFSFileSystemConfiguration {
647
648
  DailyAutomaticBackupStartTime?: string;
648
649
  /**
649
650
  * <p>Specifies the file-system deployment type. Amazon FSx for OpenZFS supports
650
- * <code>SINGLE_AZ_1</code>. <code>SINGLE_AZ_1</code> is a file system configured for a
651
- * single Availability Zone (AZ) of redundancy. </p>
651
+ <code>SINGLE_AZ_1</code> and <code>SINGLE_AZ_2</code>.</p>
652
652
  */
653
653
  DeploymentType?: OpenZFSDeploymentType | string;
654
654
  /**
655
- * <p>The throughput of an Amazon FSx file system, measured in megabytes per second
656
- * (MBps). Valid values are 64, 128, 256, 512, 1024, 2048, 3072, or 4096 MB/s.</p>
655
+ * <p>The throughput of an Amazon FSx file system, measured in megabytes per second (MBps).</p>
657
656
  */
658
657
  ThroughputCapacity?: number;
659
658
  /**
660
659
  * <p>A recurring weekly time, in the format <code>D:HH:MM</code>. </p>
661
- * <p>
660
+ * <p>
662
661
  * <code>D</code> is the day of the week, for which 1 represents Monday and 7
663
662
  * represents Sunday. For further details, see <a href="https://en.wikipedia.org/wiki/ISO_week_date">the ISO-8601 spec as described on Wikipedia</a>.</p>
664
- * <p>
663
+ * <p>
665
664
  * <code>HH</code> is the zero-padded hour of the day (0-23), and <code>MM</code> is
666
665
  * the zero-padded minute of the hour. </p>
667
- * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
666
+ * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
668
667
  */
669
668
  WeeklyMaintenanceStartTime?: string;
670
669
  /**
@@ -717,7 +716,7 @@ export declare enum AliasLifecycle {
717
716
  export interface Alias {
718
717
  /**
719
718
  * <p>The name of the DNS alias. The alias name has to meet the following requirements:</p>
720
- * <ul>
719
+ * <ul>
721
720
  * <li>
722
721
  * <p>Formatted as a fully-qualified domain name (FQDN), <code>hostname.domain</code>, for example, <code>accounting.example.com</code>.</p>
723
722
  * </li>
@@ -731,13 +730,13 @@ export interface Alias {
731
730
  * <p>Can start with a numeric.</p>
732
731
  * </li>
733
732
  * </ul>
734
- * <p>For DNS names, Amazon FSx stores alphabetic characters as lowercase letters (a-z), regardless of how you specify them:
733
+ * <p>For DNS names, Amazon FSx stores alphabetic characters as lowercase letters (a-z), regardless of how you specify them:
735
734
  * as uppercase letters, lowercase letters, or the corresponding letters in escape codes.</p>
736
735
  */
737
736
  Name?: string;
738
737
  /**
739
738
  * <p>Describes the state of the DNS alias.</p>
740
- * <ul>
739
+ * <ul>
741
740
  * <li>
742
741
  * <p>AVAILABLE - The DNS alias is associated with an Amazon FSx file system.</p>
743
742
  * </li>
@@ -773,24 +772,24 @@ export declare enum WindowsAccessAuditLogLevel {
773
772
  export interface WindowsAuditLogConfiguration {
774
773
  /**
775
774
  * <p>Sets which attempt type is logged by Amazon FSx for file and folder accesses.</p>
776
- * <ul>
775
+ * <ul>
777
776
  * <li>
778
- * <p>
777
+ * <p>
779
778
  * <code>SUCCESS_ONLY</code> - only successful attempts to access files
780
779
  * or folders are logged.</p>
781
780
  * </li>
782
781
  * <li>
783
- * <p>
782
+ * <p>
784
783
  * <code>FAILURE_ONLY</code> - only failed attempts to access files
785
784
  * or folders are logged.</p>
786
785
  * </li>
787
786
  * <li>
788
- * <p>
787
+ * <p>
789
788
  * <code>SUCCESS_AND_FAILURE</code> - both successful attempts and
790
789
  * failed attempts to access files or folders are logged.</p>
791
790
  * </li>
792
791
  * <li>
793
- * <p>
792
+ * <p>
794
793
  * <code>DISABLED</code> - access auditing of files and folders is turned off.</p>
795
794
  * </li>
796
795
  * </ul>
@@ -798,24 +797,24 @@ export interface WindowsAuditLogConfiguration {
798
797
  FileAccessAuditLogLevel: WindowsAccessAuditLogLevel | string | undefined;
799
798
  /**
800
799
  * <p>Sets which attempt type is logged by Amazon FSx for file share accesses.</p>
801
- * <ul>
800
+ * <ul>
802
801
  * <li>
803
- * <p>
802
+ * <p>
804
803
  * <code>SUCCESS_ONLY</code> - only successful attempts to access file
805
804
  * shares are logged.</p>
806
805
  * </li>
807
806
  * <li>
808
- * <p>
807
+ * <p>
809
808
  * <code>FAILURE_ONLY</code> - only failed attempts to access file
810
809
  * shares are logged.</p>
811
810
  * </li>
812
811
  * <li>
813
- * <p>
812
+ * <p>
814
813
  * <code>SUCCESS_AND_FAILURE</code> - both successful attempts and
815
814
  * failed attempts to access file shares are logged.</p>
816
815
  * </li>
817
816
  * <li>
818
- * <p>
817
+ * <p>
819
818
  * <code>DISABLED</code> - access auditing of file shares is turned off.</p>
820
819
  * </li>
821
820
  * </ul>
@@ -825,10 +824,10 @@ export interface WindowsAuditLogConfiguration {
825
824
  * <p>The Amazon Resource Name (ARN) for the destination of the audit logs.
826
825
  * The destination can be any Amazon CloudWatch Logs log group ARN or
827
826
  * Amazon Kinesis Data Firehose delivery stream ARN.</p>
828
- * <p>The name of the Amazon CloudWatch Logs log group must begin with
827
+ * <p>The name of the Amazon CloudWatch Logs log group must begin with
829
828
  * the <code>/aws/fsx</code> prefix. The name of the Amazon Kinesis Data
830
829
  * Firehouse delivery stream must begin with the <code>aws-fsx</code> prefix.</p>
831
- * <p>The destination ARN (either CloudWatch Logs log group or Kinesis
830
+ * <p>The destination ARN (either CloudWatch Logs log group or Kinesis
832
831
  * Data Firehose delivery stream) must be in the same Amazon Web Services partition,
833
832
  * Amazon Web Services Region, and Amazon Web Services account as your Amazon FSx file system.</p>
834
833
  */
@@ -888,46 +887,46 @@ export interface WindowsFileSystemConfiguration {
888
887
  SelfManagedActiveDirectoryConfiguration?: SelfManagedActiveDirectoryAttributes;
889
888
  /**
890
889
  * <p>Specifies the file system deployment type, valid values are the following:</p>
891
- * <ul>
890
+ * <ul>
892
891
  * <li>
893
- * <p>
892
+ * <p>
894
893
  * <code>MULTI_AZ_1</code> - Specifies a high availability file system that is configured for Multi-AZ
895
894
  * redundancy to tolerate temporary Availability Zone (AZ) unavailability, and supports SSD and HDD storage.</p>
896
895
  * </li>
897
896
  * <li>
898
- * <p>
897
+ * <p>
899
898
  * <code>SINGLE_AZ_1</code> - (Default) Specifies a file system that is configured for single AZ redundancy,
900
899
  * only supports SSD storage.</p>
901
900
  * </li>
902
901
  * <li>
903
- * <p>
902
+ * <p>
904
903
  * <code>SINGLE_AZ_2</code> - Latest generation Single AZ file system.
905
904
  * Specifies a file system that is configured for single AZ redundancy and supports SSD and HDD storage.</p>
906
905
  * </li>
907
906
  * </ul>
908
- * <p>For more information, see
907
+ * <p>For more information, see
909
908
  * <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/high-availability-multiAZ.html">Single-AZ and Multi-AZ File Systems</a>.</p>
910
909
  */
911
910
  DeploymentType?: WindowsDeploymentType | string;
912
911
  /**
913
912
  * <p>For <code>MULTI_AZ_1</code> deployment types, use this endpoint when performing administrative tasks on the file system using
914
913
  * Amazon FSx Remote PowerShell.</p>
915
- * <p>For <code>SINGLE_AZ_1</code> and <code>SINGLE_AZ_2</code> deployment types, this is the DNS name of the file system.</p>
916
- * <p>This endpoint is temporarily unavailable when the file system is undergoing maintenance.</p>
914
+ * <p>For <code>SINGLE_AZ_1</code> and <code>SINGLE_AZ_2</code> deployment types, this is the DNS name of the file system.</p>
915
+ * <p>This endpoint is temporarily unavailable when the file system is undergoing maintenance.</p>
917
916
  */
918
917
  RemoteAdministrationEndpoint?: string;
919
918
  /**
920
919
  * <p>For <code>MULTI_AZ_1</code> deployment types, it specifies the ID of the subnet where the preferred file server is located.
921
920
  * Must be one of the two subnet IDs specified in <code>SubnetIds</code> property.
922
921
  * Amazon FSx serves traffic from this subnet except in the event of a failover to the secondary file server.</p>
923
- * <p>For <code>SINGLE_AZ_1</code> and <code>SINGLE_AZ_2</code> deployment types, this value is the same as that for <code>SubnetIDs</code>.
922
+ * <p>For <code>SINGLE_AZ_1</code> and <code>SINGLE_AZ_2</code> deployment types, this value is the same as that for <code>SubnetIDs</code>.
924
923
  * For more information, see
925
924
  * <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/high-availability-multiAZ.html#single-multi-az-resources">Availability and durability: Single-AZ and Multi-AZ file systems</a>.</p>
926
925
  */
927
926
  PreferredSubnetId?: string;
928
927
  /**
929
928
  * <p>For <code>MULTI_AZ_1</code> deployment types, the IP address of the primary, or preferred, file server.</p>
930
- * <p>Use this IP address when mounting the file system on Linux SMB clients or Windows SMB clients that
929
+ * <p>Use this IP address when mounting the file system on Linux SMB clients or Windows SMB clients that
931
930
  * are not joined to a Microsoft Active Directory.
932
931
  * Applicable for all Windows file system deployment types.
933
932
  * This IP address is temporarily unavailable
@@ -1036,28 +1035,28 @@ export declare enum TieringPolicyName {
1036
1035
  * <p>Describes the data tiering policy for an ONTAP volume. When enabled, Amazon FSx for ONTAP's intelligent
1037
1036
  * tiering automatically transitions a volume's data between the file system's primary storage and capacity
1038
1037
  * pool storage based on your access patterns.</p>
1039
- * <p>Valid tiering policies are the following:</p>
1040
- * <ul>
1038
+ * <p>Valid tiering policies are the following:</p>
1039
+ * <ul>
1041
1040
  * <li>
1042
- * <p>
1041
+ * <p>
1043
1042
  * <code>SNAPSHOT_ONLY</code> - (Default value) moves cold snapshots to the capacity pool storage tier.</p>
1044
1043
  * </li>
1045
1044
  * </ul>
1046
- * <ul>
1045
+ * <ul>
1047
1046
  * <li>
1048
- * <p>
1047
+ * <p>
1049
1048
  * <code>AUTO</code> - moves cold user data and snapshots to the capacity pool storage tier based on your access patterns.</p>
1050
1049
  * </li>
1051
1050
  * </ul>
1052
- * <ul>
1051
+ * <ul>
1053
1052
  * <li>
1054
- * <p>
1053
+ * <p>
1055
1054
  * <code>ALL</code> - moves all user data blocks in both the active file system and Snapshot copies to the storage pool tier.</p>
1056
1055
  * </li>
1057
1056
  * </ul>
1058
- * <ul>
1057
+ * <ul>
1059
1058
  * <li>
1060
- * <p>
1059
+ * <p>
1061
1060
  * <code>NONE</code> - keeps a volume's data in the primary storage tier, preventing it from being moved to the capacity pool tier.</p>
1062
1061
  * </li>
1063
1062
  * </ul>
@@ -1072,7 +1071,7 @@ export interface TieringPolicy {
1072
1071
  CoolingPeriod?: number;
1073
1072
  /**
1074
1073
  * <p>Specifies the tiering policy used to transition data. Default value is <code>SNAPSHOT_ONLY</code>.</p>
1075
- * <ul>
1074
+ * <ul>
1076
1075
  * <li>
1077
1076
  * <p>
1078
1077
  * <code>SNAPSHOT_ONLY</code> - moves cold snapshots to the capacity pool storage tier.</p>
@@ -1103,7 +1102,7 @@ export interface OntapVolumeConfiguration {
1103
1102
  /**
1104
1103
  * <p>Specifies the FlexCache endpoint type of the volume.
1105
1104
  * Valid values are the following:</p>
1106
- * <ul>
1105
+ * <ul>
1107
1106
  * <li>
1108
1107
  * <p>
1109
1108
  * <code>NONE</code> specifies that the volume doesn't have a FlexCache configuration.
@@ -1152,7 +1151,7 @@ export interface OntapVolumeConfiguration {
1152
1151
  * virtual machine (SVM). Only one volume on an SVM can be the root volume. This value
1153
1152
  * defaults to <code>false</code>. If this value is <code>true</code>, then this is the SVM
1154
1153
  * root volume.</p>
1155
- * <p>This flag is useful when you're deleting an SVM, because you must first delete all
1154
+ * <p>This flag is useful when you're deleting an SVM, because you must first delete all
1156
1155
  * non-root volumes. This flag, when set to <code>false</code>, helps you identify which
1157
1156
  * volumes to delete before you can delete the SVM.</p>
1158
1157
  */
@@ -1167,7 +1166,7 @@ export interface OntapVolumeConfiguration {
1167
1166
  UUID?: string;
1168
1167
  /**
1169
1168
  * <p>Specifies the type of volume. Valid values are the following:</p>
1170
- * <ul>
1169
+ * <ul>
1171
1170
  * <li>
1172
1171
  * <p>
1173
1172
  * <code>RW</code> specifies a read/write volume. <code>RW</code> is the default.</p>
@@ -1187,6 +1186,39 @@ export interface OntapVolumeConfiguration {
1187
1186
  * </ul>
1188
1187
  */
1189
1188
  OntapVolumeType?: OntapVolumeType | string;
1189
+ /**
1190
+ * <p>Specifies the snapshot policy for the volume. There are three built-in snapshot policies:</p>
1191
+ * <ul>
1192
+ * <li>
1193
+ * <p>
1194
+ * <code>default</code>: This is the default policy. A maximum of six hourly snapshots taken five minutes past
1195
+ * the hour. A maximum of two daily snapshots taken Monday through Saturday at 10 minutes after
1196
+ * midnight. A maximum of two weekly snapshots taken every Sunday at 15 minutes after midnight.</p>
1197
+ * </li>
1198
+ * <li>
1199
+ * <p>
1200
+ * <code>default-1weekly</code>: This policy is the same as the <code>default</code> policy except
1201
+ * that it only retains one snapshot from the weekly schedule.</p>
1202
+ * </li>
1203
+ * <li>
1204
+ * <p>
1205
+ * <code>none</code>: This policy does not take any snapshots. This policy can be assigned to volumes to
1206
+ * prevent automatic snapshots from being taken.</p>
1207
+ * </li>
1208
+ * </ul>
1209
+ * <p>You can also provide the name of a custom policy that you created with the ONTAP CLI or REST API.</p>
1210
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snapshots-ontap.html#snapshot-policies">Snapshot policies</a>
1211
+ * in the <i>Amazon FSx for NetApp ONTAP User Guide</i>.</p>
1212
+ */
1213
+ SnapshotPolicy?: string;
1214
+ /**
1215
+ * <p>A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to
1216
+ * false. If it's set to true, all tags for the volume are copied to all automatic and user-initiated backups
1217
+ * where the user doesn't specify tags. If this value is true, and you specify one or more tags, only the
1218
+ * specified tags are copied to backups. If you specify one or more tags when creating a user-initiated
1219
+ * backup, no tags are copied from the volume, regardless of this value.</p>
1220
+ */
1221
+ CopyTagsToBackups?: boolean;
1190
1222
  }
1191
1223
  export declare enum OpenZFSDataCompressionType {
1192
1224
  LZ4 = "LZ4",
@@ -1209,15 +1241,15 @@ export interface OpenZFSClientConfiguration {
1209
1241
  * <p>The options to use when mounting the file system. For a list of options that you can
1210
1242
  * use with Network File System (NFS), see the <a href="https://linux.die.net/man/5/exports">exports(5) - Linux man page</a>. When
1211
1243
  * choosing your options, consider the following:</p>
1212
- * <ul>
1244
+ * <ul>
1213
1245
  * <li>
1214
- * <p>
1246
+ * <p>
1215
1247
  * <code>crossmnt</code> is used by default. If you don't specify
1216
1248
  * <code>crossmnt</code> when changing the client configuration, you won't be
1217
1249
  * able to see or access snapshots in your file system's snapshot directory.</p>
1218
1250
  * </li>
1219
1251
  * <li>
1220
- * <p>
1252
+ * <p>
1221
1253
  * <code>sync</code> is used by default. If you instead specify
1222
1254
  * <code>async</code>, the system acknowledges writes before writing to disk.
1223
1255
  * If the system crashes before the writes are finished, you lose the unwritten
@@ -1256,16 +1288,16 @@ export interface OpenZFSOriginSnapshotConfiguration {
1256
1288
  SnapshotARN?: string;
1257
1289
  /**
1258
1290
  * <p>The strategy used when copying data from the snapshot to the new volume. </p>
1259
- * <ul>
1291
+ * <ul>
1260
1292
  * <li>
1261
- * <p>
1293
+ * <p>
1262
1294
  * <code>CLONE</code> - The new volume references the data in the origin
1263
1295
  * snapshot. Cloning a snapshot is faster than copying the data from a snapshot to
1264
1296
  * a new volume and doesn't consume disk throughput. However, the origin snapshot
1265
1297
  * can't be deleted if there is a volume using its copied data. </p>
1266
1298
  * </li>
1267
1299
  * <li>
1268
- * <p>
1300
+ * <p>
1269
1301
  * <code>FULL_COPY</code> - Copies all data from the snapshot to the new volume.
1270
1302
  * </p>
1271
1303
  * </li>
@@ -1328,20 +1360,20 @@ export interface OpenZFSVolumeConfiguration {
1328
1360
  /**
1329
1361
  * <p>Specifies the method used to compress the data on the volume. The compression
1330
1362
  * type is <code>NONE</code> by default.</p>
1331
- * <ul>
1363
+ * <ul>
1332
1364
  * <li>
1333
- * <p>
1365
+ * <p>
1334
1366
  * <code>NONE</code> - Doesn't compress the data on the volume.
1335
1367
  * <code>NONE</code> is the default.</p>
1336
1368
  * </li>
1337
1369
  * <li>
1338
- * <p>
1370
+ * <p>
1339
1371
  * <code>ZSTD</code> - Compresses the data in the volume using the Zstandard
1340
1372
  * (ZSTD) compression algorithm. Compared to LZ4, Z-Standard provides a better
1341
1373
  * compression ratio to minimize on-disk storage utilization.</p>
1342
1374
  * </li>
1343
1375
  * <li>
1344
- * <p>
1376
+ * <p>
1345
1377
  * <code>LZ4</code> - Compresses the data in the volume using the LZ4
1346
1378
  * compression algorithm. Compared to Z-Standard, LZ4 is less compute-intensive
1347
1379
  * and delivers higher write throughput speeds.</p>
@@ -1376,6 +1408,22 @@ export interface OpenZFSVolumeConfiguration {
1376
1408
  * <p>An object specifying how much storage users or groups can use on the volume.</p>
1377
1409
  */
1378
1410
  UserAndGroupQuotas?: OpenZFSUserOrGroupQuota[];
1411
+ /**
1412
+ * <p>Specifies the ID of the snapshot to which the volume was restored.</p>
1413
+ */
1414
+ RestoreToSnapshot?: string;
1415
+ /**
1416
+ * <p>A Boolean value indicating whether snapshots between the
1417
+ * current state and the specified snapshot should be deleted
1418
+ * when a volume is restored from snapshot.</p>
1419
+ */
1420
+ DeleteIntermediateSnaphots?: boolean;
1421
+ /**
1422
+ * <p>A Boolean value indicating whether dependent clone volumes
1423
+ * created from intermediate snapshots should be deleted when
1424
+ * a volume is restored from snapshot.</p>
1425
+ */
1426
+ DeleteClonedVolumes?: boolean;
1379
1427
  }
1380
1428
  export declare enum VolumeType {
1381
1429
  ONTAP = "ONTAP",
@@ -1398,7 +1446,7 @@ export interface AssociateFileSystemAliasesRequest {
1398
1446
  /**
1399
1447
  * <p>An array of one or more DNS alias names to associate with the file system.
1400
1448
  * The alias name has to comply with the following formatting requirements:</p>
1401
- * <ul>
1449
+ * <ul>
1402
1450
  * <li>
1403
1451
  * <p>Formatted as a fully-qualified domain name (FQDN), <i>
1404
1452
  * <code>hostname.domain</code>
@@ -1415,7 +1463,7 @@ export interface AssociateFileSystemAliasesRequest {
1415
1463
  * <p>Can start with a numeric.</p>
1416
1464
  * </li>
1417
1465
  * </ul>
1418
- * <p>For DNS alias names, Amazon FSx stores alphabetic characters as lowercase letters (a-z), regardless of how you specify them:
1466
+ * <p>For DNS alias names, Amazon FSx stores alphabetic characters as lowercase letters (a-z), regardless of how you specify them:
1419
1467
  * as uppercase letters, lowercase letters, or the corresponding letters in escape codes.</p>
1420
1468
  */
1421
1469
  Aliases: string[] | undefined;
@@ -1491,13 +1539,13 @@ export declare enum EventType {
1491
1539
  * As you create, modify, or delete files, Amazon FSx for Lustre
1492
1540
  * automatically exports the defined changes asynchronously once your application finishes
1493
1541
  * modifying the file.</p>
1494
- * <p>This <code>AutoExportPolicy</code> is supported only for Amazon FSx for Lustre
1542
+ * <p>This <code>AutoExportPolicy</code> is supported only for Amazon FSx for Lustre
1495
1543
  * file systems with the <code>Persistent_2</code> deployment type.</p>
1496
1544
  */
1497
1545
  export interface AutoExportPolicy {
1498
1546
  /**
1499
1547
  * <p>The <code>AutoExportPolicy</code> can have the following event values:</p>
1500
- * <ul>
1548
+ * <ul>
1501
1549
  * <li>
1502
1550
  * <p>
1503
1551
  * <code>NEW</code> - New files and directories are automatically exported
@@ -1514,7 +1562,7 @@ export interface AutoExportPolicy {
1514
1562
  * on the data repository when they are deleted on the file system.</p>
1515
1563
  * </li>
1516
1564
  * </ul>
1517
- * <p>You can define any combination of event types for your <code>AutoExportPolicy</code>.</p>
1565
+ * <p>You can define any combination of event types for your <code>AutoExportPolicy</code>.</p>
1518
1566
  */
1519
1567
  Events?: (EventType | string)[];
1520
1568
  }
@@ -1523,13 +1571,13 @@ export interface AutoExportPolicy {
1523
1571
  * The AutoImportPolicy defines how Amazon FSx keeps your file metadata and directory
1524
1572
  * listings up to date by importing changes to your Amazon FSx for Lustre file system
1525
1573
  * as you modify objects in a linked S3 bucket.</p>
1526
- * <p>The <code>AutoImportPolicy</code> is supported only for Amazon FSx for Lustre
1574
+ * <p>The <code>AutoImportPolicy</code> is supported only for Amazon FSx for Lustre
1527
1575
  * file systems with the <code>Persistent_2</code> deployment type.</p>
1528
1576
  */
1529
1577
  export interface AutoImportPolicy {
1530
1578
  /**
1531
1579
  * <p>The <code>AutoImportPolicy</code> can have the following event values:</p>
1532
- * <ul>
1580
+ * <ul>
1533
1581
  * <li>
1534
1582
  * <p>
1535
1583
  * <code>NEW</code> - Amazon FSx automatically imports metadata of
@@ -1548,7 +1596,7 @@ export interface AutoImportPolicy {
1548
1596
  * on the file system as corresponding files are deleted in the data repository.</p>
1549
1597
  * </li>
1550
1598
  * </ul>
1551
- * <p>You can define any combination of event types for your <code>AutoImportPolicy</code>.</p>
1599
+ * <p>You can define any combination of event types for your <code>AutoImportPolicy</code>.</p>
1552
1600
  */
1553
1601
  Events?: (EventType | string)[];
1554
1602
  }
@@ -1572,7 +1620,7 @@ export declare enum DataRepositoryTaskLifecycle {
1572
1620
  export interface CancelDataRepositoryTaskResponse {
1573
1621
  /**
1574
1622
  * <p>The lifecycle status of the data repository task, as follows:</p>
1575
- * <ul>
1623
+ * <ul>
1576
1624
  * <li>
1577
1625
  * <p>
1578
1626
  * <code>PENDING</code> - Amazon FSx has not started the task.</p>
@@ -1687,11 +1735,11 @@ export interface CopyBackupRequest {
1687
1735
  /**
1688
1736
  * <p>Specifies the ID of the Key Management Service (KMS) key to use for encrypting data on
1689
1737
  * Amazon FSx file systems, as follows:</p>
1690
- * <ul>
1738
+ * <ul>
1691
1739
  * <li>
1692
1740
  * <p>Amazon FSx for Lustre <code>PERSISTENT_1</code>
1693
1741
  * and <code>PERSISTENT_2</code> deployment types only.</p>
1694
- * <p>
1742
+ * <p>
1695
1743
  * <code>SCRATCH_1</code> and <code>SCRATCH_2</code> types are encrypted using
1696
1744
  * the Amazon FSx service KMS key for your account.</p>
1697
1745
  * </li>
@@ -1705,7 +1753,7 @@ export interface CopyBackupRequest {
1705
1753
  * <p>Amazon FSx for Windows File Server</p>
1706
1754
  * </li>
1707
1755
  * </ul>
1708
- * <p>If a <code>KmsKeyId</code> isn't specified, the Amazon FSx-managed KMS key for your account is used.
1756
+ * <p>If a <code>KmsKeyId</code> isn't specified, the Amazon FSx-managed KMS key for your account is used.
1709
1757
  * For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html">Encrypt</a> in the
1710
1758
  * <i>Key Management Service API Reference</i>.</p>
1711
1759
  */
@@ -1957,11 +2005,11 @@ export declare class VolumeNotFound extends __BaseException {
1957
2005
  * defines which file events on the file system are automatically exported
1958
2006
  * to the data repository. File events are when files or directories are
1959
2007
  * added, changed, or deleted on the file system or the data repository.</p>
1960
- * <note>
2008
+ * <note>
1961
2009
  * <p>Data repository associations on Amazon File Cache don't
1962
2010
  * use <code>S3DataRepositoryConfiguration</code> because they don't
1963
2011
  * support automatic import or automatic export.</p>
1964
- * </note>
2012
+ * </note>
1965
2013
  */
1966
2014
  export interface S3DataRepositoryConfiguration {
1967
2015
  /**
@@ -1991,10 +2039,10 @@ export interface CreateDataRepositoryAssociationRequest {
1991
2039
  * a data repository is associated with file system path <code>/ns1/</code>,
1992
2040
  * then you cannot link another data repository with file system
1993
2041
  * path <code>/ns1/ns2</code>.</p>
1994
- * <p>This path specifies where in your file system files will be exported
2042
+ * <p>This path specifies where in your file system files will be exported
1995
2043
  * from or imported to. This file system directory can be linked to only one
1996
2044
  * Amazon S3 bucket, and no other S3 bucket can be linked to the directory.</p>
1997
- * <note>
2045
+ * <note>
1998
2046
  * <p>If you specify only a forward slash (<code>/</code>) as the file system
1999
2047
  * path, you can link only one data repository to the file system. You can only specify
2000
2048
  * "/" as the file system path for the first data repository associated with a file system.</p>
@@ -2019,8 +2067,7 @@ export interface CreateDataRepositoryAssociationRequest {
2019
2067
  * maximum amount of data per file (in MiB) stored on a single physical disk. The maximum
2020
2068
  * number of disks that a single file can be striped across is limited by the total number
2021
2069
  * of disks that make up the file system.</p>
2022
- *
2023
- * <p>The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500
2070
+ * <p>The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500
2024
2071
  * GiB). Amazon S3 objects have a maximum size of 5 TB.</p>
2025
2072
  */
2026
2073
  ImportedFileChunkSize?: number;
@@ -2078,7 +2125,7 @@ export interface NFSDataRepositoryConfiguration {
2078
2125
  * or an Amazon File Cache resource to an Amazon S3 bucket or an NFS file system.
2079
2126
  * The data repository association configuration object is returned
2080
2127
  * in the response of the following operations:</p>
2081
- * <ul>
2128
+ * <ul>
2082
2129
  * <li>
2083
2130
  * <p>
2084
2131
  * <code>CreateDataRepositoryAssociation</code>
@@ -2095,7 +2142,7 @@ export interface NFSDataRepositoryConfiguration {
2095
2142
  * </p>
2096
2143
  * </li>
2097
2144
  * </ul>
2098
- * <p>Data repository associations are supported only for an Amazon FSx for Lustre
2145
+ * <p>Data repository associations are supported only for an Amazon FSx for Lustre
2099
2146
  * file system with the <code>Persistent_2</code> deployment type and for an
2100
2147
  * Amazon File Cache resource.</p>
2101
2148
  */
@@ -2118,7 +2165,7 @@ export interface DataRepositoryAssociation {
2118
2165
  /**
2119
2166
  * <p>Describes the state of a data repository association. The lifecycle can have
2120
2167
  * the following values:</p>
2121
- * <ul>
2168
+ * <ul>
2122
2169
  * <li>
2123
2170
  * <p>
2124
2171
  * <code>CREATING</code> - The data repository association between
@@ -2155,7 +2202,7 @@ export interface DataRepositoryAssociation {
2155
2202
  */
2156
2203
  Lifecycle?: DataRepositoryLifecycle | string;
2157
2204
  /**
2158
- * <p>Provides detailed information about the data respository if its <code>Lifecycle</code> is
2205
+ * <p>Provides detailed information about the data repository if its <code>Lifecycle</code> is
2159
2206
  * set to <code>MISCONFIGURED</code> or <code>FAILED</code>.</p>
2160
2207
  */
2161
2208
  FailureDetails?: DataRepositoryFailureDetails;
@@ -2168,10 +2215,10 @@ export interface DataRepositoryAssociation {
2168
2215
  * a data repository is associated with file system path <code>/ns1/</code>,
2169
2216
  * then you cannot link another data repository with file system
2170
2217
  * path <code>/ns1/ns2</code>.</p>
2171
- * <p>This path specifies where in your file system files will be exported
2218
+ * <p>This path specifies where in your file system files will be exported
2172
2219
  * from or imported to. This file system directory can be linked to only one
2173
2220
  * Amazon S3 bucket, and no other S3 bucket can be linked to the directory.</p>
2174
- * <note>
2221
+ * <note>
2175
2222
  * <p>If you specify only a forward slash (<code>/</code>) as the file system
2176
2223
  * path, you can link only one data repository to the file system. You can only specify
2177
2224
  * "/" as the file system path for the first data repository associated with a file system.</p>
@@ -2181,11 +2228,11 @@ export interface DataRepositoryAssociation {
2181
2228
  /**
2182
2229
  * <p>The path to the data repository that will be linked to the cache
2183
2230
  * or file system.</p>
2184
- * <ul>
2231
+ * <ul>
2185
2232
  * <li>
2186
2233
  * <p>For Amazon File Cache, the path can be an NFS data repository
2187
2234
  * that will be linked to the cache. The path can be in one of two formats:</p>
2188
- * <ul>
2235
+ * <ul>
2189
2236
  * <li>
2190
2237
  * <p>If you are not using the <code>DataRepositorySubdirectories</code>
2191
2238
  * parameter, the path is to an NFS Export directory (or one of its subdirectories)
@@ -2216,11 +2263,11 @@ export interface DataRepositoryAssociation {
2216
2263
  * <p>A boolean flag indicating whether an import data repository task to import
2217
2264
  * metadata should run after the data repository association is created. The
2218
2265
  * task runs if this flag is set to <code>true</code>.</p>
2219
- * <note>
2266
+ * <note>
2220
2267
  * <p>
2221
2268
  * <code>BatchImportMetaDataOnCreate</code> is not supported for data repositories
2222
2269
  * linked to an Amazon File Cache resource.</p>
2223
- * </note>
2270
+ * </note>
2224
2271
  */
2225
2272
  BatchImportMetaDataOnCreate?: boolean;
2226
2273
  /**
@@ -2228,8 +2275,7 @@ export interface DataRepositoryAssociation {
2228
2275
  * maximum amount of data per file (in MiB) stored on a single physical disk. The maximum
2229
2276
  * number of disks that a single file can be striped across is limited by the total number
2230
2277
  * of disks that make up the file system or cache.</p>
2231
- *
2232
- * <p>The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500
2278
+ * <p>The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500
2233
2279
  * GiB). Amazon S3 objects have a maximum size of 5 TB.</p>
2234
2280
  */
2235
2281
  ImportedFileChunkSize?: number;
@@ -2260,16 +2306,16 @@ export interface DataRepositoryAssociation {
2260
2306
  * a data repository is associated with cache path <code>/ns1/</code>,
2261
2307
  * then you cannot link another data repository with cache
2262
2308
  * path <code>/ns1/ns2</code>.</p>
2263
- * <p>This path specifies the directory in your cache where files will be exported
2309
+ * <p>This path specifies the directory in your cache where files will be exported
2264
2310
  * from. This cache directory can be linked to only one data repository
2265
2311
  * (S3 or NFS) and no other data repository can be linked to the directory.</p>
2266
- * <note>
2312
+ * <note>
2267
2313
  * <p>The cache path can only be set to root (/) on an NFS DRA when
2268
2314
  * <code>DataRepositorySubdirectories</code> is specified. If you
2269
2315
  * specify root (/) as the cache path, you can create only one DRA
2270
2316
  * on the cache.</p>
2271
2317
  * <p>The cache path cannot be set to root (/) for an S3 DRA.</p>
2272
- * </note>
2318
+ * </note>
2273
2319
  */
2274
2320
  FileCachePath?: string;
2275
2321
  /**
@@ -2348,7 +2394,7 @@ export interface CreateDataRepositoryTaskRequest {
2348
2394
  /**
2349
2395
  * <p>A list of paths for the data repository task to use when the task is processed.
2350
2396
  * If a path that you provide isn't valid, the task fails.</p>
2351
- * <ul>
2397
+ * <ul>
2352
2398
  * <li>
2353
2399
  * <p>For export tasks, the list contains paths on the Amazon FSx file system
2354
2400
  * from which the files are exported to the Amazon S3 bucket. The default path is the
@@ -2444,7 +2490,7 @@ export interface DataRepositoryTask {
2444
2490
  TaskId: string | undefined;
2445
2491
  /**
2446
2492
  * <p>The lifecycle status of the data repository task, as follows:</p>
2447
- * <ul>
2493
+ * <ul>
2448
2494
  * <li>
2449
2495
  * <p>
2450
2496
  * <code>PENDING</code> - The task has not started.</p>
@@ -2471,17 +2517,17 @@ export interface DataRepositoryTask {
2471
2517
  * <code>CANCELING</code> - The task is in process of being canceled.</p>
2472
2518
  * </li>
2473
2519
  * </ul>
2474
- * <note>
2520
+ * <note>
2475
2521
  * <p>You cannot delete an FSx for Lustre file system if there are data
2476
2522
  * repository tasks for the file system in the <code>PENDING</code> or <code>EXECUTING</code> states.
2477
2523
  * Please retry when the data repository task is finished (with a status of <code>CANCELED</code>, <code>SUCCEEDED</code>, or <code>FAILED</code>).
2478
2524
  * You can use the DescribeDataRepositoryTask action to monitor the task status. Contact the FSx team if you need to delete your file system immediately.</p>
2479
- * </note>
2525
+ * </note>
2480
2526
  */
2481
2527
  Lifecycle: DataRepositoryTaskLifecycle | string | undefined;
2482
2528
  /**
2483
2529
  * <p>The type of data repository task.</p>
2484
- * <ul>
2530
+ * <ul>
2485
2531
  * <li>
2486
2532
  * <p>
2487
2533
  * <code>EXPORT_TO_REPOSITORY</code> tasks export from your
@@ -2532,7 +2578,7 @@ export interface DataRepositoryTask {
2532
2578
  * <p>An array of paths that specify the data for the data repository task to process.
2533
2579
  * For example, in an EXPORT_TO_REPOSITORY task, the paths specify which data to export
2534
2580
  * to the linked data repository.</p>
2535
- * <p>(Default) If <code>Paths</code> is not specified, Amazon FSx uses the file system root directory.</p>
2581
+ * <p>(Default) If <code>Paths</code> is not specified, Amazon FSx uses the file system root directory.</p>
2536
2582
  */
2537
2583
  Paths?: string[];
2538
2584
  /**
@@ -2607,7 +2653,7 @@ export interface FileCacheNFSConfiguration {
2607
2653
  * be created during the Amazon File Cache resource creation. The DRA
2608
2654
  * links the cache to either an Amazon S3 bucket or prefix, or a Network File
2609
2655
  * System (NFS) data repository that supports the NFSv3 protocol.</p>
2610
- * <p>The DRA does not support automatic import or automatic
2656
+ * <p>The DRA does not support automatic import or automatic
2611
2657
  * export.</p>
2612
2658
  */
2613
2659
  export interface FileCacheDataRepositoryAssociation {
@@ -2620,26 +2666,26 @@ export interface FileCacheDataRepositoryAssociation {
2620
2666
  * a data repository is associated with cache path <code>/ns1/</code>,
2621
2667
  * then you cannot link another data repository with cache
2622
2668
  * path <code>/ns1/ns2</code>.</p>
2623
- * <p>This path specifies where in your cache files will be exported
2669
+ * <p>This path specifies where in your cache files will be exported
2624
2670
  * from. This cache directory can be linked to only one data repository,
2625
2671
  * and no data repository other can be linked to the directory.</p>
2626
- * <note>
2672
+ * <note>
2627
2673
  * <p>The cache path can only be set to root (/) on an NFS DRA when
2628
2674
  * <code>DataRepositorySubdirectories</code> is specified. If you
2629
2675
  * specify root (/) as the cache path, you can create only one DRA
2630
2676
  * on the cache.</p>
2631
2677
  * <p>The cache path cannot be set to root (/) for an S3 DRA.</p>
2632
- * </note>
2678
+ * </note>
2633
2679
  */
2634
2680
  FileCachePath: string | undefined;
2635
2681
  /**
2636
2682
  * <p>The path to the S3 or NFS data repository that links to the
2637
2683
  * cache. You must provide one of the following paths:</p>
2638
- * <ul>
2684
+ * <ul>
2639
2685
  * <li>
2640
2686
  * <p>The path can be an NFS data repository that links to
2641
2687
  * the cache. The path can be in one of two formats:</p>
2642
- * <ul>
2688
+ * <ul>
2643
2689
  * <li>
2644
2690
  * <p>If you are not using the <code>DataRepositorySubdirectories</code>
2645
2691
  * parameter, the path is to an NFS Export directory (or one of its subdirectories)
@@ -2711,13 +2757,13 @@ export interface CreateFileCacheLustreConfiguration {
2711
2757
  DeploymentType: FileCacheLustreDeploymentType | string | undefined;
2712
2758
  /**
2713
2759
  * <p>A recurring weekly time, in the format <code>D:HH:MM</code>. </p>
2714
- * <p>
2760
+ * <p>
2715
2761
  * <code>D</code> is the day of the week, for which 1 represents Monday and 7
2716
2762
  * represents Sunday. For further details, see <a href="https://en.wikipedia.org/wiki/ISO_week_date">the ISO-8601 spec as described on Wikipedia</a>.</p>
2717
- * <p>
2763
+ * <p>
2718
2764
  * <code>HH</code> is the zero-padded hour of the day (0-23), and <code>MM</code> is
2719
2765
  * the zero-padded minute of the hour. </p>
2720
- * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
2766
+ * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
2721
2767
  */
2722
2768
  WeeklyMaintenanceStartTime?: string;
2723
2769
  /**
@@ -2730,7 +2776,7 @@ export interface CreateFileCacheRequest {
2730
2776
  * <p>An idempotency token for resource creation, in a string of up to 64
2731
2777
  * ASCII characters. This token is automatically filled on your behalf when you use the
2732
2778
  * Command Line Interface (CLI) or an Amazon Web Services SDK.</p>
2733
- * <p>By using the idempotent operation, you can retry a <code>CreateFileCache</code>
2779
+ * <p>By using the idempotent operation, you can retry a <code>CreateFileCache</code>
2734
2780
  * operation without the risk of creating an extra cache. This approach can be useful
2735
2781
  * when an initial call fails in a way that makes it unclear whether a cache was created.
2736
2782
  * Examples are if a transport level timeout occurred, or your connection was reset.
@@ -2789,8 +2835,8 @@ export interface CreateFileCacheRequest {
2789
2835
  * <p>A list of up to 8 configurations for data repository associations (DRAs) to
2790
2836
  * be created during the cache creation. The DRAs link the cache to either an
2791
2837
  * Amazon S3 data repository or a Network File System (NFS) data repository that supports the NFSv3 protocol.</p>
2792
- * <p>The DRA configurations must meet the following requirements:</p>
2793
- * <ul>
2838
+ * <p>The DRA configurations must meet the following requirements:</p>
2839
+ * <ul>
2794
2840
  * <li>
2795
2841
  * <p>All configurations on the list must be of the
2796
2842
  * same data repository type, either all S3 or all NFS. A cache
@@ -2801,8 +2847,7 @@ export interface CreateFileCacheRequest {
2801
2847
  * supports the NFSv3 protocol.</p>
2802
2848
  * </li>
2803
2849
  * </ul>
2804
- *
2805
- * <p>DRA automatic import and automatic export is not supported.</p>
2850
+ * <p>DRA automatic import and automatic export is not supported.</p>
2806
2851
  */
2807
2852
  DataRepositoryAssociations?: FileCacheDataRepositoryAssociation[];
2808
2853
  }
@@ -2846,13 +2891,13 @@ export interface FileCacheLustreConfiguration {
2846
2891
  MountName?: string;
2847
2892
  /**
2848
2893
  * <p>A recurring weekly time, in the format <code>D:HH:MM</code>. </p>
2849
- * <p>
2894
+ * <p>
2850
2895
  * <code>D</code> is the day of the week, for which 1 represents Monday and 7
2851
2896
  * represents Sunday. For further details, see <a href="https://en.wikipedia.org/wiki/ISO_week_date">the ISO-8601 spec as described on Wikipedia</a>.</p>
2852
- * <p>
2897
+ * <p>
2853
2898
  * <code>HH</code> is the zero-padded hour of the day (0-23), and <code>MM</code> is
2854
2899
  * the zero-padded minute of the hour. </p>
2855
- * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
2900
+ * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
2856
2901
  */
2857
2902
  WeeklyMaintenanceStartTime?: string;
2858
2903
  /**
@@ -2895,7 +2940,7 @@ export interface FileCacheCreating {
2895
2940
  /**
2896
2941
  * <p>The lifecycle status of the cache. The following are the possible values and
2897
2942
  * what they mean:</p>
2898
- * <ul>
2943
+ * <ul>
2899
2944
  * <li>
2900
2945
  * <p>
2901
2946
  * <code>AVAILABLE</code> - The cache is in a healthy state, and is reachable and available for use.</p>
@@ -3047,28 +3092,28 @@ export declare class MissingFileCacheConfiguration extends __BaseException {
3047
3092
  * Amazon FSx for Lustre file system. An Amazon File Cache is created
3048
3093
  * with Lustre logging enabled by default, with a setting of
3049
3094
  * <code>WARN_ERROR</code> for the logging events. which can't be changed.</p>
3050
- * <p>Lustre logging writes the enabled logging events for your file system
3095
+ * <p>Lustre logging writes the enabled logging events for your file system
3051
3096
  * or cache to Amazon CloudWatch Logs.</p>
3052
3097
  */
3053
3098
  export interface LustreLogCreateConfiguration {
3054
3099
  /**
3055
3100
  * <p>Sets which data repository events are logged by Amazon FSx.</p>
3056
- * <ul>
3101
+ * <ul>
3057
3102
  * <li>
3058
- * <p>
3103
+ * <p>
3059
3104
  * <code>WARN_ONLY</code> - only warning events are logged.</p>
3060
3105
  * </li>
3061
3106
  * <li>
3062
- * <p>
3107
+ * <p>
3063
3108
  * <code>ERROR_ONLY</code> - only error events are logged.</p>
3064
3109
  * </li>
3065
3110
  * <li>
3066
- * <p>
3111
+ * <p>
3067
3112
  * <code>WARN_ERROR</code> - both warning events and error events
3068
3113
  * are logged.</p>
3069
3114
  * </li>
3070
3115
  * <li>
3071
- * <p>
3116
+ * <p>
3072
3117
  * <code>DISABLED</code> - logging of data repository events
3073
3118
  * is turned off.</p>
3074
3119
  * </li>
@@ -3077,29 +3122,29 @@ export interface LustreLogCreateConfiguration {
3077
3122
  Level: LustreAccessAuditLogLevel | string | undefined;
3078
3123
  /**
3079
3124
  * <p>The Amazon Resource Name (ARN) that specifies the destination of the logs.</p>
3080
- * <p>The destination can be any Amazon CloudWatch Logs log group ARN, with the following
3125
+ * <p>The destination can be any Amazon CloudWatch Logs log group ARN, with the following
3081
3126
  * requirements:</p>
3082
- * <ul>
3127
+ * <ul>
3083
3128
  * <li>
3084
- * <p>The destination ARN that you provide must be in the same Amazon Web Services partition,
3129
+ * <p>The destination ARN that you provide must be in the same Amazon Web Services partition,
3085
3130
  * Amazon Web Services Region, and Amazon Web Services account as your Amazon FSx file system.</p>
3086
3131
  * </li>
3087
3132
  * <li>
3088
- * <p>The name of the Amazon CloudWatch Logs log group must begin with
3133
+ * <p>The name of the Amazon CloudWatch Logs log group must begin with
3089
3134
  * the <code>/aws/fsx</code> prefix.</p>
3090
3135
  * </li>
3091
3136
  * <li>
3092
- * <p>If you do not provide a destination, Amazon FSx will create and use a
3137
+ * <p>If you do not provide a destination, Amazon FSx will create and use a
3093
3138
  * log stream in the CloudWatch Logs <code>/aws/fsx/lustre</code> log group
3094
3139
  * (for Amazon FSx for Lustre) or <code>/aws/fsx/filecache</code>
3095
3140
  * (for Amazon File Cache).</p>
3096
3141
  * </li>
3097
3142
  * <li>
3098
- * <p>If <code>Destination</code> is provided and the resource does not
3143
+ * <p>If <code>Destination</code> is provided and the resource does not
3099
3144
  * exist, the request will fail with a <code>BadRequest</code> error.</p>
3100
3145
  * </li>
3101
3146
  * <li>
3102
- * <p>If <code>Level</code> is set to <code>DISABLED</code>, you cannot specify
3147
+ * <p>If <code>Level</code> is set to <code>DISABLED</code>, you cannot specify
3103
3148
  * a destination in <code>Destination</code>.</p>
3104
3149
  * </li>
3105
3150
  * </ul>
@@ -3108,7 +3153,7 @@ export interface LustreLogCreateConfiguration {
3108
3153
  }
3109
3154
  /**
3110
3155
  * <p>The Lustre configuration for the file system being created.</p>
3111
- * <note>
3156
+ * <note>
3112
3157
  * <p>The following parameters are not supported for file systems with the <code>Persistent_2</code>
3113
3158
  * deployment type. Instead, use <code>CreateDataRepositoryAssociation</code>
3114
3159
  * to create a data repository association to link your Lustre file system to a data repository.</p>
@@ -3150,7 +3195,7 @@ export interface CreateFileSystemLustreConfiguration {
3150
3195
  * example is <code>s3://import-bucket/optional-prefix</code>. If you specify a prefix
3151
3196
  * after the Amazon S3 bucket name, only object keys with that prefix are loaded into the
3152
3197
  * file system.</p>
3153
- * <note>
3198
+ * <note>
3154
3199
  * <p>This parameter is not supported for file systems with the <code>Persistent_2</code> deployment type.
3155
3200
  * Instead, use <code>CreateDataRepositoryAssociation</code> to create
3156
3201
  * a data repository association to link your Lustre file system to a data repository.</p>
@@ -3166,15 +3211,14 @@ export interface CreateFileSystemLustreConfiguration {
3166
3211
  * <code>s3://import-bucket/FSxLustre[creation-timestamp]</code>. The timestamp is in
3167
3212
  * UTC format, for example
3168
3213
  * <code>s3://import-bucket/FSxLustre20181105T222312Z</code>.</p>
3169
- * <p>The Amazon S3 export bucket must be the same as the import bucket specified by
3214
+ * <p>The Amazon S3 export bucket must be the same as the import bucket specified by
3170
3215
  * <code>ImportPath</code>. If you specify only a bucket name, such as
3171
3216
  * <code>s3://import-bucket</code>, you get a 1:1 mapping of file system objects to S3
3172
3217
  * bucket objects. This mapping means that the input data in S3 is overwritten on export.
3173
3218
  * If you provide a custom prefix in the export path, such as
3174
3219
  * <code>s3://import-bucket/[custom-optional-prefix]</code>, Amazon FSx exports the contents of your file
3175
3220
  * system to that export prefix in the Amazon S3 bucket.</p>
3176
- *
3177
- * <note>
3221
+ * <note>
3178
3222
  * <p>This parameter is not supported for file systems with the <code>Persistent_2</code> deployment type.
3179
3223
  * Instead, use <code>CreateDataRepositoryAssociation</code> to create
3180
3224
  * a data repository association to link your Lustre file system to a data repository.</p>
@@ -3186,10 +3230,9 @@ export interface CreateFileSystemLustreConfiguration {
3186
3230
  * count and maximum amount of data per file (in MiB) stored on a single physical disk. The
3187
3231
  * maximum number of disks that a single file can be striped across is limited by the total
3188
3232
  * number of disks that make up the file system.</p>
3189
- *
3190
- * <p>The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500
3233
+ * <p>The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500
3191
3234
  * GiB). Amazon S3 objects have a maximum size of 5 TB.</p>
3192
- * <p>This parameter is not supported for file systems with the <code>Persistent_2</code> deployment type.
3235
+ * <p>This parameter is not supported for file systems with the <code>Persistent_2</code> deployment type.
3193
3236
  * Instead, use <code>CreateDataRepositoryAssociation</code> to create
3194
3237
  * a data repository association to link your Lustre file system to a data repository.</p>
3195
3238
  */
@@ -3199,11 +3242,11 @@ export interface CreateFileSystemLustreConfiguration {
3199
3242
  * types when you need temporary storage and shorter-term processing of data.
3200
3243
  * The <code>SCRATCH_2</code> deployment type provides in-transit encryption of data and higher burst
3201
3244
  * throughput capacity than <code>SCRATCH_1</code>.</p>
3202
- * <p>Choose <code>PERSISTENT_1</code> for longer-term storage and for throughput-focused
3245
+ * <p>Choose <code>PERSISTENT_1</code> for longer-term storage and for throughput-focused
3203
3246
  * workloads that aren’t latency-sensitive.
3204
3247
  * <code>PERSISTENT_1</code> supports encryption of data in transit, and is available in all
3205
3248
  * Amazon Web Services Regions in which FSx for Lustre is available.</p>
3206
- * <p>Choose <code>PERSISTENT_2</code> for longer-term storage and for latency-sensitive workloads
3249
+ * <p>Choose <code>PERSISTENT_2</code> for longer-term storage and for latency-sensitive workloads
3207
3250
  * that require the highest levels of IOPS/throughput. <code>PERSISTENT_2</code> supports
3208
3251
  * SSD storage, and offers higher <code>PerUnitStorageThroughput</code> (up to 1000 MB/s/TiB). <code>PERSISTENT_2</code>
3209
3252
  * is available in a limited number of Amazon Web Services Regions.
@@ -3211,19 +3254,18 @@ export interface CreateFileSystemLustreConfiguration {
3211
3254
  * <code>PERSISTENT_2</code> is available, see
3212
3255
  * <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-fsx-lustre.html#lustre-deployment-types">File
3213
3256
  * system deployment options for FSx for Lustre</a> in the <i>Amazon FSx for Lustre User Guide</i>.</p>
3214
- * <note>
3257
+ * <note>
3215
3258
  * <p>If you choose <code>PERSISTENT_2</code>, and you set <code>FileSystemTypeVersion</code> to
3216
3259
  * <code>2.10</code>, the <code>CreateFileSystem</code> operation fails.</p>
3217
3260
  * </note>
3218
- *
3219
- * <p>Encryption of data in transit is automatically turned on when you access
3261
+ * <p>Encryption of data in transit is automatically turned on when you access
3220
3262
  * <code>SCRATCH_2</code>, <code>PERSISTENT_1</code> and <code>PERSISTENT_2</code> file
3221
3263
  * systems from Amazon EC2 instances that <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/data- protection.html">support
3222
3264
  * automatic encryption</a> in the Amazon Web Services Regions where they are
3223
3265
  * available. For more information about encryption in transit for FSx for Lustre
3224
3266
  * file systems, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/encryption-in-transit-fsxl.html">Encrypting data in
3225
3267
  * transit</a> in the <i>Amazon FSx for Lustre User Guide</i>. </p>
3226
- * <p>(Default = <code>SCRATCH_1</code>)</p>
3268
+ * <p>(Default = <code>SCRATCH_1</code>)</p>
3227
3269
  */
3228
3270
  DeploymentType?: LustreDeploymentType | string;
3229
3271
  /**
@@ -3232,7 +3274,7 @@ export interface CreateFileSystemLustreConfiguration {
3232
3274
  * Use this property to choose how Amazon FSx keeps your file and directory listings up to date
3233
3275
  * as you add or modify objects in your linked S3 bucket. <code>AutoImportPolicy</code> can
3234
3276
  * have the following values:</p>
3235
- * <ul>
3277
+ * <ul>
3236
3278
  * <li>
3237
3279
  * <p>
3238
3280
  * <code>NONE</code> - (Default) AutoImport is off. Amazon FSx only updates
@@ -3260,9 +3302,9 @@ export interface CreateFileSystemLustreConfiguration {
3260
3302
  * in the S3 bucket.</p>
3261
3303
  * </li>
3262
3304
  * </ul>
3263
- * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/older-deployment-types.html#legacy-auto-import-from-s3">
3305
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/older-deployment-types.html#legacy-auto-import-from-s3">
3264
3306
  * Automatically import updates from your S3 bucket</a>.</p>
3265
- * <note>
3307
+ * <note>
3266
3308
  * <p>This parameter is not supported for file systems with the <code>Persistent_2</code> deployment type.
3267
3309
  * Instead, use <code>CreateDataRepositoryAssociation</code> to create
3268
3310
  * a data repository association to link your Lustre file system to a data repository.</p>
@@ -3277,8 +3319,8 @@ export interface CreateFileSystemLustreConfiguration {
3277
3319
  * <code>PerUnitStorageThroughput</code> (MB/s/TiB). For a 2.4-TiB file system,
3278
3320
  * provisioning 50 MB/s/TiB of <code>PerUnitStorageThroughput</code> yields 120 MB/s of file
3279
3321
  * system throughput. You pay for the amount of throughput that you provision. </p>
3280
- * <p>Valid values:</p>
3281
- * <ul>
3322
+ * <p>Valid values:</p>
3323
+ * <ul>
3282
3324
  * <li>
3283
3325
  * <p>For <code>PERSISTENT_1</code> SSD storage: 50, 100, 200 MB/s/TiB.</p>
3284
3326
  * </li>
@@ -3313,8 +3355,8 @@ export interface CreateFileSystemLustreConfiguration {
3313
3355
  * tags, only the specified tags are copied to backups. If you specify one or more tags
3314
3356
  * when creating a user-initiated backup, no tags are copied from the file system,
3315
3357
  * regardless of this value.</p>
3316
- * <p>(Default = <code>false</code>)</p>
3317
- * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-backups-fsx.html">
3358
+ * <p>(Default = <code>false</code>)</p>
3359
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-backups-fsx.html">
3318
3360
  * Working with backups</a> in the <i>Amazon FSx for Lustre User Guide</i>.</p>
3319
3361
  */
3320
3362
  CopyTagsToBackups?: boolean;
@@ -3323,13 +3365,13 @@ export interface CreateFileSystemLustreConfiguration {
3323
3365
  * HDD storage devices. This parameter is required when storage type is HDD. Set this property to
3324
3366
  * <code>READ</code> to improve the performance for frequently accessed files by caching up to 20%
3325
3367
  * of the total storage capacity of the file system.</p>
3326
- * <p>This parameter is required when <code>StorageType</code> is set to <code>HDD</code>.</p>
3368
+ * <p>This parameter is required when <code>StorageType</code> is set to <code>HDD</code>.</p>
3327
3369
  */
3328
3370
  DriveCacheType?: DriveCacheType | string;
3329
3371
  /**
3330
3372
  * <p>Sets the data compression configuration for the file system. <code>DataCompressionType</code>
3331
3373
  * can have the following values:</p>
3332
- * <ul>
3374
+ * <ul>
3333
3375
  * <li>
3334
3376
  * <p>
3335
3377
  * <code>NONE</code> - (Default) Data compression is turned off when
@@ -3341,7 +3383,7 @@ export interface CreateFileSystemLustreConfiguration {
3341
3383
  * algorithm.</p>
3342
3384
  * </li>
3343
3385
  * </ul>
3344
- * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/data-compression.html">Lustre data compression</a>
3386
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/data-compression.html">Lustre data compression</a>
3345
3387
  * in the <i>Amazon FSx for Lustre User Guide</i>.</p>
3346
3388
  */
3347
3389
  DataCompressionType?: DataCompressionType | string;
@@ -3378,31 +3420,31 @@ export interface CreateFileSystemOntapConfiguration {
3378
3420
  /**
3379
3421
  * <p>Specifies the FSx for ONTAP file system deployment type to use in creating
3380
3422
  * the file system. </p>
3381
- * <ul>
3423
+ * <ul>
3382
3424
  * <li>
3383
- * <p>
3425
+ * <p>
3384
3426
  * <code>MULTI_AZ_1</code> - (Default) A high availability file system configured
3385
3427
  * for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ)
3386
3428
  * unavailability. </p>
3387
3429
  * </li>
3388
3430
  * <li>
3389
- * <p>
3431
+ * <p>
3390
3432
  * <code>SINGLE_AZ_1</code> - A file system configured for Single-AZ
3391
3433
  * redundancy.</p>
3392
3434
  * </li>
3393
3435
  * </ul>
3394
- * <p>For information about the use cases for Multi-AZ and Single-AZ deployments, refer to
3436
+ * <p>For information about the use cases for Multi-AZ and Single-AZ deployments, refer to
3395
3437
  * <a href="https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/high-availability-AZ.html">Choosing a file system deployment type</a>. </p>
3396
3438
  */
3397
3439
  DeploymentType: OntapDeploymentType | string | undefined;
3398
3440
  /**
3399
3441
  * <p>(Multi-AZ only) Specifies the IP address range in which the endpoints to access your
3400
- * file system will be created. By default, Amazon FSx selects an unused IP address
3401
- * range for you from the 198.19.* range.</p>
3402
- * <important>
3403
- * <p>The Endpoint IP address range you select for your file system must exist outside
3404
- * the VPC's CIDR range and must be at least /30 or larger.</p>
3405
- * </important>
3442
+ * file system will be created. By default in the Amazon FSx API, Amazon FSx
3443
+ * selects an unused IP address range for you from the 198.19.* range. By default in the
3444
+ * Amazon FSx console, Amazon FSx chooses the last 64 IP addresses from
3445
+ * the VPC’s primary CIDR range to use as the endpoint IP address range for the file system.
3446
+ * You can have overlapping endpoint IP addresses for file systems deployed in the
3447
+ * same VPC/route tables.</p>
3406
3448
  */
3407
3449
  EndpointIpAddressRange?: string;
3408
3450
  /**
@@ -3428,18 +3470,18 @@ export interface CreateFileSystemOntapConfiguration {
3428
3470
  RouteTableIds?: string[];
3429
3471
  /**
3430
3472
  * <p>Sets the throughput capacity for the file system that you're creating. Valid values
3431
- * are 128, 256, 512, 1024, and 2048 MBps.</p>
3473
+ * are 128, 256, 512, 1024, 2048, and 4096 MBps.</p>
3432
3474
  */
3433
3475
  ThroughputCapacity: number | undefined;
3434
3476
  /**
3435
3477
  * <p>A recurring weekly time, in the format <code>D:HH:MM</code>. </p>
3436
- * <p>
3478
+ * <p>
3437
3479
  * <code>D</code> is the day of the week, for which 1 represents Monday and 7
3438
3480
  * represents Sunday. For further details, see <a href="https://en.wikipedia.org/wiki/ISO_week_date">the ISO-8601 spec as described on Wikipedia</a>.</p>
3439
- * <p>
3481
+ * <p>
3440
3482
  * <code>HH</code> is the zero-padded hour of the day (0-23), and <code>MM</code> is
3441
3483
  * the zero-padded minute of the hour. </p>
3442
- * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
3484
+ * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
3443
3485
  */
3444
3486
  WeeklyMaintenanceStartTime?: string;
3445
3487
  }
@@ -3460,20 +3502,20 @@ export interface OpenZFSCreateRootVolumeConfiguration {
3460
3502
  /**
3461
3503
  * <p>Specifies the method used to compress the data on the volume. The compression
3462
3504
  * type is <code>NONE</code> by default.</p>
3463
- * <ul>
3505
+ * <ul>
3464
3506
  * <li>
3465
- * <p>
3507
+ * <p>
3466
3508
  * <code>NONE</code> - Doesn't compress the data on the volume.
3467
3509
  * <code>NONE</code> is the default.</p>
3468
3510
  * </li>
3469
3511
  * <li>
3470
- * <p>
3512
+ * <p>
3471
3513
  * <code>ZSTD</code> - Compresses the data in the volume using the Zstandard
3472
3514
  * (ZSTD) compression algorithm. Compared to LZ4, Z-Standard provides a better
3473
3515
  * compression ratio to minimize on-disk storage utilization.</p>
3474
3516
  * </li>
3475
3517
  * <li>
3476
- * <p>
3518
+ * <p>
3477
3519
  * <code>LZ4</code> - Compresses the data in the volume using the LZ4
3478
3520
  * compression algorithm. Compared to Z-Standard, LZ4 is less compute-intensive
3479
3521
  * and delivers higher write throughput speeds.</p>
@@ -3541,26 +3583,48 @@ export interface CreateFileSystemOpenZFSConfiguration {
3541
3583
  */
3542
3584
  DailyAutomaticBackupStartTime?: string;
3543
3585
  /**
3544
- * <p>Specifies the file system deployment type. Amazon FSx for OpenZFS supports
3545
- * <code>SINGLE_AZ_1</code>. <code>SINGLE_AZ_1</code> deployment type is configured for redundancy
3546
- * within a single Availability Zone.</p>
3586
+ * <p>Specifies the file system deployment type. Single AZ deployment types are configured
3587
+ * for redundancy within a single Availability Zone in an Amazon Web Services Region .
3588
+ * Valid values are the following:</p>
3589
+ * <ul>
3590
+ * <li>
3591
+ * <p>
3592
+ * <code>SINGLE_AZ_1</code>- (Default) Creates file systems with throughput capacities of 64 - 4,096 MB/s.
3593
+ * <code>Single_AZ_1</code> is available in all Amazon Web Services Regions where Amazon FSx
3594
+ * for OpenZFS is available, except US West (Oregon).</p>
3595
+ * </li>
3596
+ * <li>
3597
+ * <p>
3598
+ * <code>SINGLE_AZ_2</code>- Creates file systems with throughput capacities of 160 - 10,240 MB/s
3599
+ * using an NVMe L2ARC cache. <code>Single_AZ_2</code> is available only in the US East (N. Virginia), US East (Ohio),
3600
+ * US West (Oregon), and Europe (Ireland) Amazon Web Services Regions.</p>
3601
+ * </li>
3602
+ * </ul>
3603
+ * <p>For more information, see: <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/available-aws-regions.html">Deployment type availability</a> and <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/zfs-fs-performance.html"> File system performance</a>in the<i>Amazon FSx for OpenZFS User Guide</i>.</p>
3547
3604
  */
3548
3605
  DeploymentType: OpenZFSDeploymentType | string | undefined;
3549
3606
  /**
3550
- * <p>Specifies the throughput of an Amazon FSx for OpenZFS file system, measured in megabytes per second
3551
- * (MB/s). Valid values are 64, 128, 256, 512, 1024, 2048, 3072, or 4096 MB/s.
3552
- * You pay for additional throughput capacity that you provision.</p>
3607
+ * <p>Specifies the throughput of an Amazon FSx for OpenZFS file system, measured in megabytes per second (MB/s). Valid values depend on the DeploymentType you choose, as follows:</p>
3608
+ * <ul>
3609
+ * <li>
3610
+ * <p>For <code>SINGLE_AZ_1</code>, valid values are 64, 128, 256, 512, 1024, 2048, 3072, or 4096 MB/s.</p>
3611
+ * </li>
3612
+ * <li>
3613
+ * <p>For <code>SINGLE_AZ_2</code>, valid values are 160, 320, 640, 1280, 2560, 3840, 5120, 7680, or 10240 MB/s.</p>
3614
+ * </li>
3615
+ * </ul>
3616
+ * <p>You pay for additional throughput capacity that you provision.</p>
3553
3617
  */
3554
3618
  ThroughputCapacity: number | undefined;
3555
3619
  /**
3556
3620
  * <p>A recurring weekly time, in the format <code>D:HH:MM</code>. </p>
3557
- * <p>
3621
+ * <p>
3558
3622
  * <code>D</code> is the day of the week, for which 1 represents Monday and 7
3559
3623
  * represents Sunday. For further details, see <a href="https://en.wikipedia.org/wiki/ISO_week_date">the ISO-8601 spec as described on Wikipedia</a>.</p>
3560
- * <p>
3624
+ * <p>
3561
3625
  * <code>HH</code> is the zero-padded hour of the day (0-23), and <code>MM</code> is
3562
3626
  * the zero-padded minute of the hour. </p>
3563
- * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
3627
+ * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
3564
3628
  */
3565
3629
  WeeklyMaintenanceStartTime?: string;
3566
3630
  /**
@@ -3583,24 +3647,24 @@ export interface CreateFileSystemOpenZFSConfiguration {
3583
3647
  export interface WindowsAuditLogCreateConfiguration {
3584
3648
  /**
3585
3649
  * <p>Sets which attempt type is logged by Amazon FSx for file and folder accesses.</p>
3586
- * <ul>
3650
+ * <ul>
3587
3651
  * <li>
3588
- * <p>
3652
+ * <p>
3589
3653
  * <code>SUCCESS_ONLY</code> - only successful attempts to access files
3590
3654
  * or folders are logged.</p>
3591
3655
  * </li>
3592
3656
  * <li>
3593
- * <p>
3657
+ * <p>
3594
3658
  * <code>FAILURE_ONLY</code> - only failed attempts to access files
3595
3659
  * or folders are logged.</p>
3596
3660
  * </li>
3597
3661
  * <li>
3598
- * <p>
3662
+ * <p>
3599
3663
  * <code>SUCCESS_AND_FAILURE</code> - both successful attempts and
3600
3664
  * failed attempts to access files or folders are logged.</p>
3601
3665
  * </li>
3602
3666
  * <li>
3603
- * <p>
3667
+ * <p>
3604
3668
  * <code>DISABLED</code> - access auditing of files and folders is turned off.</p>
3605
3669
  * </li>
3606
3670
  * </ul>
@@ -3608,24 +3672,24 @@ export interface WindowsAuditLogCreateConfiguration {
3608
3672
  FileAccessAuditLogLevel: WindowsAccessAuditLogLevel | string | undefined;
3609
3673
  /**
3610
3674
  * <p>Sets which attempt type is logged by Amazon FSx for file share accesses.</p>
3611
- * <ul>
3675
+ * <ul>
3612
3676
  * <li>
3613
- * <p>
3677
+ * <p>
3614
3678
  * <code>SUCCESS_ONLY</code> - only successful attempts to access file
3615
3679
  * shares are logged.</p>
3616
3680
  * </li>
3617
3681
  * <li>
3618
- * <p>
3682
+ * <p>
3619
3683
  * <code>FAILURE_ONLY</code> - only failed attempts to access file
3620
3684
  * shares are logged.</p>
3621
3685
  * </li>
3622
3686
  * <li>
3623
- * <p>
3687
+ * <p>
3624
3688
  * <code>SUCCESS_AND_FAILURE</code> - both successful attempts and
3625
3689
  * failed attempts to access file shares are logged.</p>
3626
3690
  * </li>
3627
3691
  * <li>
3628
- * <p>
3692
+ * <p>
3629
3693
  * <code>DISABLED</code> - access auditing of file shares is turned off.</p>
3630
3694
  * </li>
3631
3695
  * </ul>
@@ -3633,30 +3697,30 @@ export interface WindowsAuditLogCreateConfiguration {
3633
3697
  FileShareAccessAuditLogLevel: WindowsAccessAuditLogLevel | string | undefined;
3634
3698
  /**
3635
3699
  * <p>The Amazon Resource Name (ARN) that specifies the destination of the audit logs.</p>
3636
- * <p>The destination can be any Amazon CloudWatch Logs log group ARN or Amazon Kinesis
3700
+ * <p>The destination can be any Amazon CloudWatch Logs log group ARN or Amazon Kinesis
3637
3701
  * Data Firehose delivery stream ARN, with the following requirements:</p>
3638
- * <ul>
3702
+ * <ul>
3639
3703
  * <li>
3640
- * <p>The destination ARN that you provide (either CloudWatch Logs log group
3704
+ * <p>The destination ARN that you provide (either CloudWatch Logs log group
3641
3705
  * or Kinesis Data Firehose delivery stream) must be in the same Amazon Web Services partition,
3642
3706
  * Amazon Web Services Region, and Amazon Web Services account as your Amazon FSx file system.</p>
3643
3707
  * </li>
3644
3708
  * <li>
3645
- * <p>The name of the Amazon CloudWatch Logs log group must begin with
3709
+ * <p>The name of the Amazon CloudWatch Logs log group must begin with
3646
3710
  * the <code>/aws/fsx</code> prefix. The name of the Amazon Kinesis Data
3647
3711
  * Firehouse delivery stream must begin with the <code>aws-fsx</code> prefix.</p>
3648
3712
  * </li>
3649
3713
  * <li>
3650
- * <p>If you do not provide a destination in <code>AuditLogDestination</code>,
3714
+ * <p>If you do not provide a destination in <code>AuditLogDestination</code>,
3651
3715
  * Amazon FSx will create and use a log stream in the CloudWatch Logs
3652
3716
  * <code>/aws/fsx/windows</code> log group.</p>
3653
3717
  * </li>
3654
3718
  * <li>
3655
- * <p>If <code>AuditLogDestination</code> is provided and the resource does not
3719
+ * <p>If <code>AuditLogDestination</code> is provided and the resource does not
3656
3720
  * exist, the request will fail with a <code>BadRequest</code> error.</p>
3657
3721
  * </li>
3658
3722
  * <li>
3659
- * <p>If <code>FileAccessAuditLogLevel</code> and <code>FileShareAccessAuditLogLevel</code>
3723
+ * <p>If <code>FileAccessAuditLogLevel</code> and <code>FileShareAccessAuditLogLevel</code>
3660
3724
  * are both set to <code>DISABLED</code>, you cannot specify a destination in
3661
3725
  * <code>AuditLogDestination</code>.</p>
3662
3726
  * </li>
@@ -3684,10 +3748,10 @@ export interface SelfManagedActiveDirectoryConfiguration {
3684
3748
  * FSx only accepts OU as the direct parent of the file system. An example is
3685
3749
  * <code>OU=FSx,DC=yourdomain,DC=corp,DC=com</code>. To learn more, see <a href="https://tools.ietf.org/html/rfc2253">RFC 2253</a>. If none is provided, the
3686
3750
  * FSx file system is created in the default location of your self-managed AD directory. </p>
3687
- * <important>
3751
+ * <important>
3688
3752
  * <p>Only Organizational Unit (OU) objects can be the direct parent of the file system
3689
3753
  * that you're creating.</p>
3690
- * </important>
3754
+ * </important>
3691
3755
  */
3692
3756
  OrganizationalUnitDistinguishedName?: string;
3693
3757
  /**
@@ -3740,25 +3804,25 @@ export interface CreateFileSystemWindowsConfiguration {
3740
3804
  SelfManagedActiveDirectoryConfiguration?: SelfManagedActiveDirectoryConfiguration;
3741
3805
  /**
3742
3806
  * <p>Specifies the file system deployment type, valid values are the following:</p>
3743
- * <ul>
3807
+ * <ul>
3744
3808
  * <li>
3745
- * <p>
3809
+ * <p>
3746
3810
  * <code>MULTI_AZ_1</code> - Deploys a high availability file system that is configured
3747
3811
  * for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ) unavailability. You
3748
3812
  * can only deploy a Multi-AZ file system in Amazon Web Services Regions that have a minimum of three Availability Zones. Also
3749
3813
  * supports HDD storage type</p>
3750
3814
  * </li>
3751
3815
  * <li>
3752
- * <p>
3816
+ * <p>
3753
3817
  * <code>SINGLE_AZ_1</code> - (Default) Choose to deploy a file system that is configured for single AZ redundancy.</p>
3754
3818
  * </li>
3755
3819
  * <li>
3756
- * <p>
3820
+ * <p>
3757
3821
  * <code>SINGLE_AZ_2</code> - The latest generation Single AZ file system.
3758
3822
  * Specifies a file system that is configured for single AZ redundancy and supports HDD storage type.</p>
3759
3823
  * </li>
3760
3824
  * </ul>
3761
- * <p>For more information, see
3825
+ * <p>For more information, see
3762
3826
  * <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/high-availability-multiAZ.html">
3763
3827
  * Availability and Durability: Single-AZ and Multi-AZ File Systems</a>.</p>
3764
3828
  */
@@ -3807,11 +3871,11 @@ export interface CreateFileSystemWindowsConfiguration {
3807
3871
  * You can associate additional DNS aliases after you create the file system using the AssociateFileSystemAliases operation.
3808
3872
  * You can remove DNS aliases from the file system after it is created using the DisassociateFileSystemAliases operation.
3809
3873
  * You only need to specify the alias name in the request payload.</p>
3810
- * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-dns-aliases.html">Working with DNS Aliases</a> and
3874
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-dns-aliases.html">Working with DNS Aliases</a> and
3811
3875
  * <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/walkthrough05-file-system-custom-CNAME.html">Walkthrough 5: Using DNS aliases to access your file system</a>, including
3812
3876
  * additional steps you must take to be able to access your file system using a DNS alias.</p>
3813
3877
  * <p>An alias name has to meet the following requirements:</p>
3814
- * <ul>
3878
+ * <ul>
3815
3879
  * <li>
3816
3880
  * <p>Formatted as a fully-qualified domain name (FQDN), <code>hostname.domain</code>, for example, <code>accounting.example.com</code>.</p>
3817
3881
  * </li>
@@ -3825,7 +3889,7 @@ export interface CreateFileSystemWindowsConfiguration {
3825
3889
  * <p>Can start with a numeric.</p>
3826
3890
  * </li>
3827
3891
  * </ul>
3828
- * <p>For DNS alias names, Amazon FSx stores alphabetic characters as lowercase letters (a-z), regardless of how you specify them:
3892
+ * <p>For DNS alias names, Amazon FSx stores alphabetic characters as lowercase letters (a-z), regardless of how you specify them:
3829
3893
  * as uppercase letters, lowercase letters, or the corresponding letters in escape codes.</p>
3830
3894
  */
3831
3895
  Aliases?: string[];
@@ -3854,12 +3918,12 @@ export interface CreateFileSystemRequest {
3854
3918
  FileSystemType: FileSystemType | string | undefined;
3855
3919
  /**
3856
3920
  * <p>Sets the storage capacity of the file system that you're creating, in gibibytes (GiB).</p>
3857
- * <p>
3921
+ * <p>
3858
3922
  * <b>FSx for Lustre file systems</b> - The amount of
3859
3923
  * storage capacity that you can configure depends on the value that you set for
3860
3924
  * <code>StorageType</code> and the Lustre <code>DeploymentType</code>, as
3861
3925
  * follows:</p>
3862
- * <ul>
3926
+ * <ul>
3863
3927
  * <li>
3864
3928
  * <p>For <code>SCRATCH_2</code>, <code>PERSISTENT_2</code> and <code>PERSISTENT_1</code> deployment types
3865
3929
  * using SSD storage type, the valid values are 1200 GiB, 2400 GiB, and increments of 2400 GiB.</p>
@@ -3873,17 +3937,17 @@ export interface CreateFileSystemRequest {
3873
3937
  * 1200 GiB, 2400 GiB, and increments of 3600 GiB.</p>
3874
3938
  * </li>
3875
3939
  * </ul>
3876
- * <p>
3940
+ * <p>
3877
3941
  * <b>FSx for ONTAP file systems</b> - The amount of storage capacity
3878
3942
  * that you can configure is from 1024 GiB up to 196,608 GiB (192 TiB).</p>
3879
- * <p>
3943
+ * <p>
3880
3944
  * <b>FSx for OpenZFS file systems</b> - The amount of storage capacity that
3881
3945
  * you can configure is from 64 GiB up to 524,288 GiB (512 TiB).</p>
3882
- * <p>
3946
+ * <p>
3883
3947
  * <b>FSx for Windows File Server file systems</b> - The amount
3884
3948
  * of storage capacity that you can configure depends on the value that you set for
3885
3949
  * <code>StorageType</code> as follows:</p>
3886
- * <ul>
3950
+ * <ul>
3887
3951
  * <li>
3888
3952
  * <p>For SSD storage, valid values are 32 GiB-65,536 GiB (64 TiB).</p>
3889
3953
  * </li>
@@ -3896,7 +3960,7 @@ export interface CreateFileSystemRequest {
3896
3960
  /**
3897
3961
  * <p>Sets the storage type for the file system that you're creating. Valid values are
3898
3962
  * <code>SSD</code> and <code>HDD</code>.</p>
3899
- * <ul>
3963
+ * <ul>
3900
3964
  * <li>
3901
3965
  * <p>Set to <code>SSD</code> to use solid state drive storage. SSD is supported on all Windows,
3902
3966
  * Lustre, ONTAP, and OpenZFS deployment types.</p>
@@ -3908,7 +3972,7 @@ export interface CreateFileSystemRequest {
3908
3972
  * </p>
3909
3973
  * </li>
3910
3974
  * </ul>
3911
- * <p>Default value is <code>SSD</code>. For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options"> Storage
3975
+ * <p>Default value is <code>SSD</code>. For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options"> Storage
3912
3976
  * type options</a> in the <i>FSx for Windows File Server User
3913
3977
  * Guide</i> and <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/what-is.html#storage-options">Multiple storage
3914
3978
  * options</a> in the <i>FSx for Lustre User
@@ -3926,7 +3990,7 @@ export interface CreateFileSystemRequest {
3926
3990
  * <i>Amazon FSx for Windows User Guide</i> and <a href="https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/high-availability-multiAZ.html">
3927
3991
  * Availability and durability</a> in the <i>Amazon FSx for ONTAP User
3928
3992
  * Guide</i>.</p>
3929
- * <p>For Windows <code>SINGLE_AZ_1</code> and <code>SINGLE_AZ_2</code> and all Lustre
3993
+ * <p>For Windows <code>SINGLE_AZ_1</code> and <code>SINGLE_AZ_2</code> and all Lustre
3930
3994
  * deployment types, provide exactly one subnet ID.
3931
3995
  * The file server is launched in that subnet's Availability Zone.</p>
3932
3996
  */
@@ -3945,11 +4009,11 @@ export interface CreateFileSystemRequest {
3945
4009
  /**
3946
4010
  * <p>Specifies the ID of the Key Management Service (KMS) key to use for encrypting data on
3947
4011
  * Amazon FSx file systems, as follows:</p>
3948
- * <ul>
4012
+ * <ul>
3949
4013
  * <li>
3950
4014
  * <p>Amazon FSx for Lustre <code>PERSISTENT_1</code>
3951
4015
  * and <code>PERSISTENT_2</code> deployment types only.</p>
3952
- * <p>
4016
+ * <p>
3953
4017
  * <code>SCRATCH_1</code> and <code>SCRATCH_2</code> types are encrypted using
3954
4018
  * the Amazon FSx service KMS key for your account.</p>
3955
4019
  * </li>
@@ -3963,7 +4027,7 @@ export interface CreateFileSystemRequest {
3963
4027
  * <p>Amazon FSx for Windows File Server</p>
3964
4028
  * </li>
3965
4029
  * </ul>
3966
- * <p>If a <code>KmsKeyId</code> isn't specified, the Amazon FSx-managed KMS key for your account is used.
4030
+ * <p>If a <code>KmsKeyId</code> isn't specified, the Amazon FSx-managed KMS key for your account is used.
3967
4031
  * For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html">Encrypt</a> in the
3968
4032
  * <i>Key Management Service API Reference</i>.</p>
3969
4033
  */
@@ -3974,7 +4038,7 @@ export interface CreateFileSystemRequest {
3974
4038
  WindowsConfiguration?: CreateFileSystemWindowsConfiguration;
3975
4039
  /**
3976
4040
  * <p>The Lustre configuration for the file system being created.</p>
3977
- * <note>
4041
+ * <note>
3978
4042
  * <p>The following parameters are not supported for file systems with the <code>Persistent_2</code>
3979
4043
  * deployment type. Instead, use <code>CreateDataRepositoryAssociation</code>
3980
4044
  * to create a data repository association to link your Lustre file system to a data repository.</p>
@@ -4012,8 +4076,7 @@ export interface CreateFileSystemRequest {
4012
4076
  * <p>(Optional) For FSx for Lustre file systems, sets the Lustre version for the
4013
4077
  * file system that you're creating. Valid values are <code>2.10</code> and
4014
4078
  * <code>2.12</code>:</p>
4015
- *
4016
- * <ul>
4079
+ * <ul>
4017
4080
  * <li>
4018
4081
  * <p>2.10 is supported by the Scratch and Persistent_1 Lustre deployment types.</p>
4019
4082
  * </li>
@@ -4023,9 +4086,9 @@ export interface CreateFileSystemRequest {
4023
4086
  * <code>PERSISTENT_2</code>.</p>
4024
4087
  * </li>
4025
4088
  * </ul>
4026
- * <p>Default value = <code>2.10</code>, except when <code>DeploymentType</code> is set to
4089
+ * <p>Default value = <code>2.10</code>, except when <code>DeploymentType</code> is set to
4027
4090
  * <code>PERSISTENT_2</code>, then the default is <code>2.12</code>.</p>
4028
- * <note>
4091
+ * <note>
4029
4092
  * <p>If you set <code>FileSystemTypeVersion</code> to <code>2.10</code> for a
4030
4093
  * <code>PERSISTENT_2</code> Lustre deployment type, the <code>CreateFileSystem</code>
4031
4094
  * operation fails.</p>
@@ -4102,7 +4165,7 @@ export interface CreateFileSystemFromBackupRequest {
4102
4165
  * file system deployment types, provide exactly two subnet IDs, one for the preferred file server
4103
4166
  * and one for the standby file server. You specify one of these subnets as the preferred subnet
4104
4167
  * using the <code>WindowsConfiguration > PreferredSubnetID</code> property.</p>
4105
- * <p>Windows <code>SINGLE_AZ_1</code> and <code>SINGLE_AZ_2</code> file system deployment
4168
+ * <p>Windows <code>SINGLE_AZ_1</code> and <code>SINGLE_AZ_2</code> file system deployment
4106
4169
  * types, Lustre file systems, and OpenZFS file systems provide exactly one subnet ID. The
4107
4170
  * file server is launched in that subnet's Availability Zone.</p>
4108
4171
  */
@@ -4125,7 +4188,7 @@ export interface CreateFileSystemFromBackupRequest {
4125
4188
  WindowsConfiguration?: CreateFileSystemWindowsConfiguration;
4126
4189
  /**
4127
4190
  * <p>The Lustre configuration for the file system being created.</p>
4128
- * <note>
4191
+ * <note>
4129
4192
  * <p>The following parameters are not supported for file systems with the <code>Persistent_2</code>
4130
4193
  * deployment type. Instead, use <code>CreateDataRepositoryAssociation</code>
4131
4194
  * to create a data repository association to link your Lustre file system to a data repository.</p>
@@ -4157,7 +4220,7 @@ export interface CreateFileSystemFromBackupRequest {
4157
4220
  /**
4158
4221
  * <p>Sets the storage type for the Windows or OpenZFS file system that you're creating from
4159
4222
  * a backup. Valid values are <code>SSD</code> and <code>HDD</code>.</p>
4160
- * <ul>
4223
+ * <ul>
4161
4224
  * <li>
4162
4225
  * <p>Set to <code>SSD</code> to use solid state drive storage. SSD is supported on all Windows and OpenZFS
4163
4226
  * deployment types.</p>
@@ -4167,8 +4230,8 @@ export interface CreateFileSystemFromBackupRequest {
4167
4230
  * HDD is supported on <code>SINGLE_AZ_2</code> and <code>MULTI_AZ_1</code> FSx for Windows File Server file system deployment types.</p>
4168
4231
  * </li>
4169
4232
  * </ul>
4170
- * <p> The default value is <code>SSD</code>. </p>
4171
- * <note>
4233
+ * <p> The default value is <code>SSD</code>. </p>
4234
+ * <note>
4172
4235
  * <p>HDD and SSD storage types have different minimum storage capacity requirements.
4173
4236
  * A restored file system's storage capacity is tied to the file system that was backed up.
4174
4237
  * You can create a file system that uses HDD storage from a backup of a file system that
@@ -4179,11 +4242,11 @@ export interface CreateFileSystemFromBackupRequest {
4179
4242
  /**
4180
4243
  * <p>Specifies the ID of the Key Management Service (KMS) key to use for encrypting data on
4181
4244
  * Amazon FSx file systems, as follows:</p>
4182
- * <ul>
4245
+ * <ul>
4183
4246
  * <li>
4184
4247
  * <p>Amazon FSx for Lustre <code>PERSISTENT_1</code>
4185
4248
  * and <code>PERSISTENT_2</code> deployment types only.</p>
4186
- * <p>
4249
+ * <p>
4187
4250
  * <code>SCRATCH_1</code> and <code>SCRATCH_2</code> types are encrypted using
4188
4251
  * the Amazon FSx service KMS key for your account.</p>
4189
4252
  * </li>
@@ -4197,7 +4260,7 @@ export interface CreateFileSystemFromBackupRequest {
4197
4260
  * <p>Amazon FSx for Windows File Server</p>
4198
4261
  * </li>
4199
4262
  * </ul>
4200
- * <p>If a <code>KmsKeyId</code> isn't specified, the Amazon FSx-managed KMS key for your account is used.
4263
+ * <p>If a <code>KmsKeyId</code> isn't specified, the Amazon FSx-managed KMS key for your account is used.
4201
4264
  * For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html">Encrypt</a> in the
4202
4265
  * <i>Key Management Service API Reference</i>.</p>
4203
4266
  */
@@ -4205,7 +4268,7 @@ export interface CreateFileSystemFromBackupRequest {
4205
4268
  /**
4206
4269
  * <p>Sets the version for the Amazon FSx for Lustre file system that you're
4207
4270
  * creating from a backup. Valid values are <code>2.10</code> and <code>2.12</code>.</p>
4208
- * <p>You don't need to specify <code>FileSystemTypeVersion</code> because it will
4271
+ * <p>You don't need to specify <code>FileSystemTypeVersion</code> because it will
4209
4272
  * be applied using the backup's <code>FileSystemTypeVersion</code> setting.
4210
4273
  * If you choose to specify <code>FileSystemTypeVersion</code> when creating from backup, the
4211
4274
  * value must match the backup's <code>FileSystemTypeVersion</code> setting.</p>
@@ -4221,7 +4284,7 @@ export interface CreateFileSystemFromBackupRequest {
4221
4284
  * (512 TiB). However, the value that you specify must be equal to or greater than the
4222
4285
  * backup's storage capacity value. If you don't use the <code>StorageCapacity</code>
4223
4286
  * parameter, the default is the backup's <code>StorageCapacity</code> value.</p>
4224
- * <p>If used to create a file system other than OpenZFS, you must provide a value
4287
+ * <p>If used to create a file system other than OpenZFS, you must provide a value
4225
4288
  * that matches the backup's <code>StorageCapacity</code> value. If you provide any
4226
4289
  * other value, Amazon FSx responds with a 400 Bad Request. </p>
4227
4290
  */
@@ -4304,7 +4367,7 @@ export interface CreateStorageVirtualMachineRequest {
4304
4367
  Tags?: Tag[];
4305
4368
  /**
4306
4369
  * <p>The security style of the root volume of the SVM. Specify one of the following values:</p>
4307
- * <ul>
4370
+ * <ul>
4308
4371
  * <li>
4309
4372
  * <p>
4310
4373
  * <code>UNIX</code> if the file system is managed by a UNIX
@@ -4391,12 +4454,6 @@ export declare enum StorageVirtualMachineLifecycle {
4391
4454
  MISCONFIGURED = "MISCONFIGURED",
4392
4455
  PENDING = "PENDING"
4393
4456
  }
4394
- export declare enum StorageVirtualMachineSubtype {
4395
- DEFAULT = "DEFAULT",
4396
- DP_DESTINATION = "DP_DESTINATION",
4397
- SYNC_DESTINATION = "SYNC_DESTINATION",
4398
- SYNC_SOURCE = "SYNC_SOURCE"
4399
- }
4400
4457
  /**
4401
4458
  * <p>Describes the Amazon FSx for NetApp ONTAP storage virtual machine (SVM) configuration.</p>
4402
4459
  */
@@ -4423,7 +4480,7 @@ export interface StorageVirtualMachine {
4423
4480
  FileSystemId?: string;
4424
4481
  /**
4425
4482
  * <p>Describes the SVM's lifecycle status.</p>
4426
- * <ul>
4483
+ * <ul>
4427
4484
  * <li>
4428
4485
  * <p>
4429
4486
  * <code>CREATED</code> - The SVM is fully available for use.</p>
@@ -4466,10 +4523,6 @@ export interface StorageVirtualMachine {
4466
4523
  * <p>The SVM's system generated unique ID.</p>
4467
4524
  */
4468
4525
  StorageVirtualMachineId?: string;
4469
- /**
4470
- * <p>Describes the SVM's subtype.</p>
4471
- */
4472
- Subtype?: StorageVirtualMachineSubtype | string;
4473
4526
  /**
4474
4527
  * <p>The SVM's UUID (universally unique identifier).</p>
4475
4528
  */
@@ -4493,6 +4546,10 @@ export interface CreateStorageVirtualMachineResponse {
4493
4546
  */
4494
4547
  StorageVirtualMachine?: StorageVirtualMachine;
4495
4548
  }
4549
+ export declare enum InputOntapVolumeType {
4550
+ DP = "DP",
4551
+ RW = "RW"
4552
+ }
4496
4553
  /**
4497
4554
  * <p>Specifies the configuration of the ONTAP volume that you are creating.</p>
4498
4555
  */
@@ -4501,7 +4558,7 @@ export interface CreateOntapVolumeConfiguration {
4501
4558
  * <p>Specifies the location in the SVM's namespace where the volume is mounted.
4502
4559
  * The <code>JunctionPath</code> must have a leading forward slash, such as <code>/vol3</code>.</p>
4503
4560
  */
4504
- JunctionPath: string | undefined;
4561
+ JunctionPath?: string;
4505
4562
  /**
4506
4563
  * <p>Specifies the security style for the volume. If a volume's security style is not specified,
4507
4564
  * it is automatically set to the root volume's security style. The security style determines the type of permissions
@@ -4509,7 +4566,7 @@ export interface CreateOntapVolumeConfiguration {
4509
4566
  * <a href="https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/managing-volumes.html#volume-security-style">Volume security style</a>
4510
4567
  * in the <i>Amazon FSx for NetApp ONTAP User Guide</i>.
4511
4568
  * Specify one of the following values:</p>
4512
- * <ul>
4569
+ * <ul>
4513
4570
  * <li>
4514
4571
  * <p>
4515
4572
  * <code>UNIX</code> if the file system is managed by a UNIX
@@ -4539,7 +4596,7 @@ export interface CreateOntapVolumeConfiguration {
4539
4596
  * <p>Set to true to enable deduplication, compression, and
4540
4597
  * compaction storage efficiency features on the volume.</p>
4541
4598
  */
4542
- StorageEfficiencyEnabled: boolean | undefined;
4599
+ StorageEfficiencyEnabled?: boolean;
4543
4600
  /**
4544
4601
  * <p>Specifies the ONTAP SVM in which to create the volume.</p>
4545
4602
  */
@@ -4548,33 +4605,83 @@ export interface CreateOntapVolumeConfiguration {
4548
4605
  * <p>Describes the data tiering policy for an ONTAP volume. When enabled, Amazon FSx for ONTAP's intelligent
4549
4606
  * tiering automatically transitions a volume's data between the file system's primary storage and capacity
4550
4607
  * pool storage based on your access patterns.</p>
4551
- * <p>Valid tiering policies are the following:</p>
4552
- * <ul>
4608
+ * <p>Valid tiering policies are the following:</p>
4609
+ * <ul>
4553
4610
  * <li>
4554
- * <p>
4611
+ * <p>
4555
4612
  * <code>SNAPSHOT_ONLY</code> - (Default value) moves cold snapshots to the capacity pool storage tier.</p>
4556
4613
  * </li>
4557
4614
  * </ul>
4558
- * <ul>
4615
+ * <ul>
4559
4616
  * <li>
4560
- * <p>
4617
+ * <p>
4561
4618
  * <code>AUTO</code> - moves cold user data and snapshots to the capacity pool storage tier based on your access patterns.</p>
4562
4619
  * </li>
4563
4620
  * </ul>
4564
- * <ul>
4621
+ * <ul>
4565
4622
  * <li>
4566
- * <p>
4623
+ * <p>
4567
4624
  * <code>ALL</code> - moves all user data blocks in both the active file system and Snapshot copies to the storage pool tier.</p>
4568
4625
  * </li>
4569
4626
  * </ul>
4570
- * <ul>
4627
+ * <ul>
4571
4628
  * <li>
4572
- * <p>
4629
+ * <p>
4573
4630
  * <code>NONE</code> - keeps a volume's data in the primary storage tier, preventing it from being moved to the capacity pool tier.</p>
4574
4631
  * </li>
4575
4632
  * </ul>
4576
4633
  */
4577
4634
  TieringPolicy?: TieringPolicy;
4635
+ /**
4636
+ * <p>Specifies the type of volume you are creating. Valid values are the following:</p>
4637
+ * <ul>
4638
+ * <li>
4639
+ * <p>
4640
+ * <code>RW</code> specifies a read/write volume. <code>RW</code> is the default.</p>
4641
+ * </li>
4642
+ * <li>
4643
+ * <p>
4644
+ * <code>DP</code> specifies a data-protection volume. A <code>DP</code> volume
4645
+ * is read-only and can be used as the destination of a NetApp SnapMirror relationship.</p>
4646
+ * </li>
4647
+ * </ul>
4648
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/volume-types">Volume types</a>
4649
+ * in the <i>Amazon FSx for NetApp ONTAP User Guide</i>.</p>
4650
+ */
4651
+ OntapVolumeType?: InputOntapVolumeType | string;
4652
+ /**
4653
+ * <p>Specifies the snapshot policy for the volume. There are three built-in snapshot policies:</p>
4654
+ * <ul>
4655
+ * <li>
4656
+ * <p>
4657
+ * <code>default</code>: This is the default policy. A maximum of six hourly snapshots taken five minutes past
4658
+ * the hour. A maximum of two daily snapshots taken Monday through Saturday at 10 minutes after
4659
+ * midnight. A maximum of two weekly snapshots taken every Sunday at 15 minutes after midnight.</p>
4660
+ * </li>
4661
+ * <li>
4662
+ * <p>
4663
+ * <code>default-1weekly</code>: This policy is the same as the <code>default</code> policy except
4664
+ * that it only retains one snapshot from the weekly schedule.</p>
4665
+ * </li>
4666
+ * <li>
4667
+ * <p>
4668
+ * <code>none</code>: This policy does not take any snapshots. This policy can be assigned to volumes to
4669
+ * prevent automatic snapshots from being taken.</p>
4670
+ * </li>
4671
+ * </ul>
4672
+ * <p>You can also provide the name of a custom policy that you created with the ONTAP CLI or REST API.</p>
4673
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snapshots-ontap.html#snapshot-policies">Snapshot policies</a>
4674
+ * in the <i>Amazon FSx for NetApp ONTAP User Guide</i>.</p>
4675
+ */
4676
+ SnapshotPolicy?: string;
4677
+ /**
4678
+ * <p>A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to
4679
+ * false. If it's set to true, all tags for the volume are copied to all automatic and user-initiated backups
4680
+ * where the user doesn't specify tags. If this value is true, and you specify one or more tags, only the
4681
+ * specified tags are copied to backups. If you specify one or more tags when creating a user-initiated
4682
+ * backup, no tags are copied from the volume, regardless of this value.</p>
4683
+ */
4684
+ CopyTagsToBackups?: boolean;
4578
4685
  }
4579
4686
  /**
4580
4687
  * <p>The snapshot configuration to use when creating an OpenZFS volume from a snapshot. </p>
@@ -4589,16 +4696,16 @@ export interface CreateOpenZFSOriginSnapshotConfiguration {
4589
4696
  SnapshotARN: string | undefined;
4590
4697
  /**
4591
4698
  * <p>The strategy used when copying data from the snapshot to the new volume. </p>
4592
- * <ul>
4699
+ * <ul>
4593
4700
  * <li>
4594
- * <p>
4701
+ * <p>
4595
4702
  * <code>CLONE</code> - The new volume references the data in the origin
4596
4703
  * snapshot. Cloning a snapshot is faster than copying data from the snapshot to a
4597
4704
  * new volume and doesn't consume disk throughput. However, the origin snapshot
4598
4705
  * can't be deleted if there is a volume using its copied data. </p>
4599
4706
  * </li>
4600
4707
  * <li>
4601
- * <p>
4708
+ * <p>
4602
4709
  * <code>FULL_COPY</code> - Copies all data from the snapshot to the new volume.
4603
4710
  * </p>
4604
4711
  * </li>
@@ -4631,7 +4738,7 @@ export interface CreateOpenZFSVolumeConfiguration {
4631
4738
  * guarantee the space will be available on the parent volume. To guarantee quota space, you must also set
4632
4739
  * <code>StorageCapacityReservationGiB</code>. To <i>not</i> specify a storage capacity quota, set this to <code>-1</code>.
4633
4740
  * </p>
4634
- * <p>For more information, see
4741
+ * <p>For more information, see
4635
4742
  * <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/managing-volumes.html#volume-properties">Volume properties</a>
4636
4743
  * in the <i>Amazon FSx for OpenZFS User Guide</i>.</p>
4637
4744
  */
@@ -4652,26 +4759,26 @@ export interface CreateOpenZFSVolumeConfiguration {
4652
4759
  /**
4653
4760
  * <p>Specifies the method used to compress the data on the volume. The compression
4654
4761
  * type is <code>NONE</code> by default.</p>
4655
- * <ul>
4762
+ * <ul>
4656
4763
  * <li>
4657
- * <p>
4764
+ * <p>
4658
4765
  * <code>NONE</code> - Doesn't compress the data on the volume.
4659
4766
  * <code>NONE</code> is the default.</p>
4660
4767
  * </li>
4661
4768
  * <li>
4662
- * <p>
4769
+ * <p>
4663
4770
  * <code>ZSTD</code> - Compresses the data in the volume using the Zstandard
4664
4771
  * (ZSTD) compression algorithm. ZSTD compression provides a higher level of
4665
4772
  * data compression and higher read throughput performance than LZ4 compression.</p>
4666
4773
  * </li>
4667
4774
  * <li>
4668
- * <p>
4775
+ * <p>
4669
4776
  * <code>LZ4</code> - Compresses the data in the volume using the LZ4
4670
4777
  * compression algorithm. LZ4 compression provides a lower level of compression
4671
4778
  * and higher write throughput performance than ZSTD compression.</p>
4672
4779
  * </li>
4673
4780
  * </ul>
4674
- * <p>For more information about volume compression types and the performance of your Amazon FSx for OpenZFS file system,
4781
+ * <p>For more information about volume compression types and the performance of your Amazon FSx for OpenZFS file system,
4675
4782
  * see <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance.html#performance-tips-zfs">
4676
4783
  * Tips for maximizing performance</a> File system and volume settings in the <i>Amazon FSx for OpenZFS User Guide</i>.</p>
4677
4784
  */
@@ -4949,7 +5056,7 @@ export interface DeleteFileSystemLustreConfiguration {
4949
5056
  * <p>Set <code>SkipFinalBackup</code> to false if you want to take a final backup of the file
4950
5057
  * system you are deleting. By default, Amazon FSx will not take a final backup on your behalf when the
4951
5058
  * <code>DeleteFileSystem</code> operation is invoked. (Default = true)</p>
4952
- * <note>
5059
+ * <note>
4953
5060
  * <p>The <code>fsx:CreateBackup</code> permission is required if you set <code>SkipFinalBackup</code> to <code>false</code> in order to delete the file system and take a final backup.</p>
4954
5061
  * </note>
4955
5062
  */
@@ -5363,7 +5470,7 @@ export declare enum DataRepositoryTaskFilterName {
5363
5470
  export interface DataRepositoryTaskFilter {
5364
5471
  /**
5365
5472
  * <p>Name of the task property to use in filtering the tasks returned in the response.</p>
5366
- * <ul>
5473
+ * <ul>
5367
5474
  * <li>
5368
5475
  * <p>Use <code>file-system-id</code> to retrieve data repository tasks for specific file systems.</p>
5369
5476
  * </li>
@@ -5462,7 +5569,7 @@ export interface FileCache {
5462
5569
  /**
5463
5570
  * <p>The lifecycle status of the cache. The following are the possible values and
5464
5571
  * what they mean:</p>
5465
- * <ul>
5572
+ * <ul>
5466
5573
  * <li>
5467
5574
  * <p>
5468
5575
  * <code>AVAILABLE</code> - The cache is in a healthy state, and is reachable and available for use.</p>
@@ -5911,16 +6018,16 @@ export interface RestoreVolumeFromSnapshotRequest {
5911
6018
  */
5912
6019
  SnapshotId: string | undefined;
5913
6020
  /**
5914
- * <p>The settings used when restoring the specified volume from snapshot. </p>
5915
- * <ul>
6021
+ * <p>The settings used when restoring the specified volume from snapshot.</p>
6022
+ * <ul>
5916
6023
  * <li>
5917
- * <p>
6024
+ * <p>
5918
6025
  * <code>DELETE_INTERMEDIATE_SNAPSHOTS</code> - Deletes snapshots between the
5919
6026
  * current state and the specified snapshot. If there are intermediate snapshots
5920
6027
  * and this option isn't used, <code>RestoreVolumeFromSnapshot</code> fails.</p>
5921
6028
  * </li>
5922
6029
  * <li>
5923
- * <p>
6030
+ * <p>
5924
6031
  * <code>DELETE_CLONED_VOLUMES</code> - Deletes any dependent clone volumes
5925
6032
  * created from intermediate snapshots. If there are any dependent clone volumes and this
5926
6033
  * option isn't used, <code>RestoreVolumeFromSnapshot</code> fails.</p>
@@ -5929,16 +6036,6 @@ export interface RestoreVolumeFromSnapshotRequest {
5929
6036
  */
5930
6037
  Options?: (RestoreOpenZFSVolumeOption | string)[];
5931
6038
  }
5932
- export interface RestoreVolumeFromSnapshotResponse {
5933
- /**
5934
- * <p>The ID of the volume that you restored.</p>
5935
- */
5936
- VolumeId?: string;
5937
- /**
5938
- * <p>The lifecycle state of the volume being restored.</p>
5939
- */
5940
- Lifecycle?: VolumeLifecycle | string;
5941
- }
5942
6039
  /**
5943
6040
  * <p>The request object for the <code>TagResource</code> operation.</p>
5944
6041
  */
@@ -5994,8 +6091,7 @@ export interface UpdateDataRepositoryAssociationRequest {
5994
6091
  * maximum amount of data per file (in MiB) stored on a single physical disk. The maximum
5995
6092
  * number of disks that a single file can be striped across is limited by the total number
5996
6093
  * of disks that make up the file system.</p>
5997
- *
5998
- * <p>The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500
6094
+ * <p>The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500
5999
6095
  * GiB). Amazon S3 objects have a maximum size of 5 TB.</p>
6000
6096
  */
6001
6097
  ImportedFileChunkSize?: number;
@@ -6021,13 +6117,13 @@ export interface UpdateDataRepositoryAssociationResponse {
6021
6117
  export interface UpdateFileCacheLustreConfiguration {
6022
6118
  /**
6023
6119
  * <p>A recurring weekly time, in the format <code>D:HH:MM</code>. </p>
6024
- * <p>
6120
+ * <p>
6025
6121
  * <code>D</code> is the day of the week, for which 1 represents Monday and 7
6026
6122
  * represents Sunday. For further details, see <a href="https://en.wikipedia.org/wiki/ISO_week_date">the ISO-8601 spec as described on Wikipedia</a>.</p>
6027
- * <p>
6123
+ * <p>
6028
6124
  * <code>HH</code> is the zero-padded hour of the day (0-23), and <code>MM</code> is
6029
6125
  * the zero-padded minute of the hour. </p>
6030
- * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
6126
+ * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
6031
6127
  */
6032
6128
  WeeklyMaintenanceStartTime?: string;
6033
6129
  }
@@ -6080,7 +6176,7 @@ export interface UpdateFileSystemLustreConfiguration {
6080
6176
  * Use this property to choose how Amazon FSx keeps your file and directory listing up to date
6081
6177
  * as you add or modify objects in your linked S3 bucket. <code>AutoImportPolicy</code> can
6082
6178
  * have the following values:</p>
6083
- * <ul>
6179
+ * <ul>
6084
6180
  * <li>
6085
6181
  * <p>
6086
6182
  * <code>NONE</code> - (Default) AutoImport is off. Amazon FSx only updates
@@ -6108,7 +6204,7 @@ export interface UpdateFileSystemLustreConfiguration {
6108
6204
  * in the S3 bucket.</p>
6109
6205
  * </li>
6110
6206
  * </ul>
6111
- * <p>The <code>AutoImportPolicy</code> parameter is not supported for Lustre file systems with
6207
+ * <p>The <code>AutoImportPolicy</code> parameter is not supported for Lustre file systems with
6112
6208
  * the <code>Persistent_2</code> deployment type. Instead, use
6113
6209
  * to update a data repository association on your <code>Persistent_2</code> file system.</p>
6114
6210
  */
@@ -6116,7 +6212,7 @@ export interface UpdateFileSystemLustreConfiguration {
6116
6212
  /**
6117
6213
  * <p>Sets the data compression configuration for the file system. <code>DataCompressionType</code>
6118
6214
  * can have the following values:</p>
6119
- * <ul>
6215
+ * <ul>
6120
6216
  * <li>
6121
6217
  * <p>
6122
6218
  * <code>NONE</code> - Data compression is turned off for
@@ -6128,9 +6224,9 @@ export interface UpdateFileSystemLustreConfiguration {
6128
6224
  * algorithm.</p>
6129
6225
  * </li>
6130
6226
  * </ul>
6131
- * <p>If you don't use <code>DataCompressionType</code>, the file system retains
6227
+ * <p>If you don't use <code>DataCompressionType</code>, the file system retains
6132
6228
  * its current data compression configuration.</p>
6133
- * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/data-compression.html">Lustre data compression</a>.</p>
6229
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/data-compression.html">Lustre data compression</a>.</p>
6134
6230
  */
6135
6231
  DataCompressionType?: DataCompressionType | string;
6136
6232
  /**
@@ -6168,13 +6264,13 @@ export interface UpdateFileSystemOntapConfiguration {
6168
6264
  FsxAdminPassword?: string;
6169
6265
  /**
6170
6266
  * <p>A recurring weekly time, in the format <code>D:HH:MM</code>. </p>
6171
- * <p>
6267
+ * <p>
6172
6268
  * <code>D</code> is the day of the week, for which 1 represents Monday and 7
6173
6269
  * represents Sunday. For further details, see <a href="https://en.wikipedia.org/wiki/ISO_week_date">the ISO-8601 spec as described on Wikipedia</a>.</p>
6174
- * <p>
6270
+ * <p>
6175
6271
  * <code>HH</code> is the zero-padded hour of the day (0-23), and <code>MM</code> is
6176
6272
  * the zero-padded minute of the hour. </p>
6177
- * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
6273
+ * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
6178
6274
  */
6179
6275
  WeeklyMaintenanceStartTime?: string;
6180
6276
  /**
@@ -6186,9 +6282,21 @@ export interface UpdateFileSystemOntapConfiguration {
6186
6282
  DiskIopsConfiguration?: DiskIopsConfiguration;
6187
6283
  /**
6188
6284
  * <p>Specifies the throughput of an FSx for NetApp ONTAP file system, measured in megabytes per second
6189
- * (MBps). Valid values are 128, 256, 512, 1024, or 2048 MB/s.</p>
6285
+ * (MBps). Valid values are 128, 256, 512, 1024, 2048, and 4096 MBps.</p>
6190
6286
  */
6191
6287
  ThroughputCapacity?: number;
6288
+ /**
6289
+ * <p>(Multi-AZ only) A list of IDs of new virtual private cloud (VPC) route tables
6290
+ * to associate (add) with your Amazon FSx for NetApp ONTAP file system.</p>
6291
+ */
6292
+ AddRouteTableIds?: string[];
6293
+ /**
6294
+ * <p>(Multi-AZ only) A list of IDs of existing virtual private cloud (VPC)
6295
+ * route tables to disassociate (remove) from your Amazon FSx for NetApp ONTAP file system. You can use
6296
+ * the API operation to retrieve the
6297
+ * list of VPC route table IDs for a file system.</p>
6298
+ */
6299
+ RemoveRouteTableIds?: string[];
6192
6300
  }
6193
6301
  /**
6194
6302
  * <p>The configuration updates for an Amazon FSx for OpenZFS file system.</p>
@@ -6226,19 +6334,27 @@ export interface UpdateFileSystemOpenZFSConfiguration {
6226
6334
  */
6227
6335
  DailyAutomaticBackupStartTime?: string;
6228
6336
  /**
6229
- * <p>The throughput of an Amazon FSx file system, measured in megabytes per second
6230
- * (MBps). Valid values are 64, 128, 256, 512, 1024, 2048, 3072, or 4096 MB/s.</p>
6337
+ * <p>The throughput of an Amazon FSx for OpenZFS file system, measured in megabytes per second
6338
+ (MB/s). Valid values depend on the DeploymentType you choose, as follows:</p>
6339
+ * <ul>
6340
+ * <li>
6341
+ * <p>For <code>SINGLE_AZ_1</code>, valid values are 64, 128, 256, 512, 1024, 2048, 3072, or 4096 MB/s.</p>
6342
+ * </li>
6343
+ * <li>
6344
+ * <p>For <code>SINGLE_AZ_2</code>, valid values are 160, 320, 640, 1280, 2560, 3840, 5120, 7680, or 10240 MB/s.</p>
6345
+ * </li>
6346
+ * </ul>
6231
6347
  */
6232
6348
  ThroughputCapacity?: number;
6233
6349
  /**
6234
6350
  * <p>A recurring weekly time, in the format <code>D:HH:MM</code>. </p>
6235
- * <p>
6351
+ * <p>
6236
6352
  * <code>D</code> is the day of the week, for which 1 represents Monday and 7
6237
6353
  * represents Sunday. For further details, see <a href="https://en.wikipedia.org/wiki/ISO_week_date">the ISO-8601 spec as described on Wikipedia</a>.</p>
6238
- * <p>
6354
+ * <p>
6239
6355
  * <code>HH</code> is the zero-padded hour of the day (0-23), and <code>MM</code> is
6240
6356
  * the zero-padded minute of the hour. </p>
6241
- * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
6357
+ * <p>For example, <code>1:05:00</code> specifies maintenance at 5 AM Monday.</p>
6242
6358
  */
6243
6359
  WeeklyMaintenanceStartTime?: string;
6244
6360
  /**
@@ -6463,6 +6579,39 @@ export interface UpdateOntapVolumeConfiguration {
6463
6579
  * <p>Update the volume's data tiering policy.</p>
6464
6580
  */
6465
6581
  TieringPolicy?: TieringPolicy;
6582
+ /**
6583
+ * <p>Specifies the snapshot policy for the volume. There are three built-in snapshot policies:</p>
6584
+ * <ul>
6585
+ * <li>
6586
+ * <p>
6587
+ * <code>default</code>: This is the default policy. A maximum of six hourly snapshots taken five minutes past
6588
+ * the hour. A maximum of two daily snapshots taken Monday through Saturday at 10 minutes after
6589
+ * midnight. A maximum of two weekly snapshots taken every Sunday at 15 minutes after midnight.</p>
6590
+ * </li>
6591
+ * <li>
6592
+ * <p>
6593
+ * <code>default-1weekly</code>: This policy is the same as the <code>default</code> policy except
6594
+ * that it only retains one snapshot from the weekly schedule.</p>
6595
+ * </li>
6596
+ * <li>
6597
+ * <p>
6598
+ * <code>none</code>: This policy does not take any snapshots. This policy can be assigned to volumes to
6599
+ * prevent automatic snapshots from being taken.</p>
6600
+ * </li>
6601
+ * </ul>
6602
+ * <p>You can also provide the name of a custom policy that you created with the ONTAP CLI or REST API.</p>
6603
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snapshots-ontap.html#snapshot-policies">Snapshot policies</a>
6604
+ * in the <i>Amazon FSx for NetApp ONTAP User Guide</i>.</p>
6605
+ */
6606
+ SnapshotPolicy?: string;
6607
+ /**
6608
+ * <p>A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to
6609
+ * false. If it's set to true, all tags for the volume are copied to all automatic and user-initiated backups
6610
+ * where the user doesn't specify tags. If this value is true, and you specify one or more tags, only the
6611
+ * specified tags are copied to backups. If you specify one or more tags when creating a user-initiated
6612
+ * backup, no tags are copied from the volume, regardless of this value.</p>
6613
+ */
6614
+ CopyTagsToBackups?: boolean;
6466
6615
  }
6467
6616
  /**
6468
6617
  * <p>Used to specify changes to the OpenZFS configuration for the volume
@@ -6494,20 +6643,20 @@ export interface UpdateOpenZFSVolumeConfiguration {
6494
6643
  /**
6495
6644
  * <p>Specifies the method used to compress the data on the volume. The compression
6496
6645
  * type is <code>NONE</code> by default.</p>
6497
- * <ul>
6646
+ * <ul>
6498
6647
  * <li>
6499
- * <p>
6648
+ * <p>
6500
6649
  * <code>NONE</code> - Doesn't compress the data on the volume.
6501
6650
  * <code>NONE</code> is the default.</p>
6502
6651
  * </li>
6503
6652
  * <li>
6504
- * <p>
6653
+ * <p>
6505
6654
  * <code>ZSTD</code> - Compresses the data in the volume using the Zstandard
6506
6655
  * (ZSTD) compression algorithm. Compared to LZ4, Z-Standard provides a better
6507
6656
  * compression ratio to minimize on-disk storage utilization.</p>
6508
6657
  * </li>
6509
6658
  * <li>
6510
- * <p>
6659
+ * <p>
6511
6660
  * <code>LZ4</code> - Compresses the data in the volume using the LZ4
6512
6661
  * compression algorithm. Compared to Z-Standard, LZ4 is less compute-intensive
6513
6662
  * and delivers higher write throughput speeds.</p>
@@ -6562,20 +6711,20 @@ export interface UpdateVolumeRequest {
6562
6711
  export interface AdministrativeAction {
6563
6712
  /**
6564
6713
  * <p>Describes the type of administrative action, as follows:</p>
6565
- * <ul>
6714
+ * <ul>
6566
6715
  * <li>
6567
- * <p>
6716
+ * <p>
6568
6717
  * <code>FILE_SYSTEM_UPDATE</code> - A file system update administrative action
6569
6718
  * initiated from the Amazon FSx console, API
6570
6719
  * (<code>UpdateFileSystem</code>), or CLI
6571
6720
  * (<code>update-file-system</code>).</p>
6572
6721
  * </li>
6573
6722
  * <li>
6574
- * <p>
6723
+ * <p>
6575
6724
  * <code>STORAGE_OPTIMIZATION</code> - After the <code>FILE_SYSTEM_UPDATE</code>
6576
6725
  * task to increase a file system's storage capacity has been completed
6577
6726
  * successfully, a <code>STORAGE_OPTIMIZATION</code> task starts. </p>
6578
- * <ul>
6727
+ * <ul>
6579
6728
  * <li>
6580
6729
  * <p>For Windows and ONTAP, storage optimization is the process of migrating the file system data
6581
6730
  * to newer larger disks.</p>
@@ -6585,7 +6734,7 @@ export interface AdministrativeAction {
6585
6734
  * newly added file servers.</p>
6586
6735
  * </li>
6587
6736
  * </ul>
6588
- * <p>You can track the storage-optimization progress using the
6737
+ * <p>You can track the storage-optimization progress using the
6589
6738
  * <code>ProgressPercent</code> property. When
6590
6739
  * <code>STORAGE_OPTIMIZATION</code> has been completed successfully, the
6591
6740
  * parent <code>FILE_SYSTEM_UPDATE</code> action status changes to
@@ -6616,15 +6765,22 @@ export interface AdministrativeAction {
6616
6765
  * (<code>update-volume</code>).</p>
6617
6766
  * </li>
6618
6767
  * <li>
6619
- * <p>
6768
+ * <p>
6769
+ * <code>VOLUME_RESTORE</code> - An Amazon FSx for OpenZFS volume
6770
+ * is returned to the state saved by the specified snapshot, initiated from an
6771
+ * API (<code>RestoreVolumeFromSnapshot</code>) or CLI
6772
+ * (<code>restore-volume-from-snapshot</code>).</p>
6773
+ * </li>
6774
+ * <li>
6775
+ * <p>
6620
6776
  * <code>SNAPSHOT_UPDATE</code> - A snapshot update to an Amazon FSx for
6621
6777
  * OpenZFS volume initiated from the Amazon FSx console, API
6622
6778
  * (<code>UpdateSnapshot</code>), or CLI (<code>update-snapshot</code>).</p>
6623
6779
  * </li>
6624
6780
  * <li>
6625
- * <p>
6781
+ * <p>
6626
6782
  * <code>RELEASE_NFS_V3_LOCKS</code> - Tracks the release of Network File System
6627
- * (NFS) V3 locks on an Amazon FSx for OpenZFS file system. </p>
6783
+ * (NFS) V3 locks on an Amazon FSx for OpenZFS file system.</p>
6628
6784
  * </li>
6629
6785
  * </ul>
6630
6786
  */
@@ -6640,7 +6796,7 @@ export interface AdministrativeAction {
6640
6796
  RequestTime?: Date;
6641
6797
  /**
6642
6798
  * <p>Describes the status of the administrative action, as follows:</p>
6643
- * <ul>
6799
+ * <ul>
6644
6800
  * <li>
6645
6801
  * <p>
6646
6802
  * <code>FAILED</code> - Amazon FSx failed to process the administrative action
@@ -6717,7 +6873,7 @@ export interface FileSystem {
6717
6873
  /**
6718
6874
  * <p>The lifecycle status of the file system. The following are the possible values and
6719
6875
  * what they mean:</p>
6720
- * <ul>
6876
+ * <ul>
6721
6877
  * <li>
6722
6878
  * <p>
6723
6879
  * <code>AVAILABLE</code> - The file system is in a healthy state, and is reachable and available for use.</p>
@@ -6775,7 +6931,7 @@ export interface FileSystem {
6775
6931
  * ONTAP <code>MULTI_AZ_1</code> file system deployment type, there are two subnet IDs, one for
6776
6932
  * the preferred file server and one for the standby file server. The preferred file server subnet
6777
6933
  * identified in the <code>PreferredSubnetID</code> property. All other file systems have only one subnet ID.</p>
6778
- * <p>For FSx for Lustre file systems, and Single-AZ Windows file systems, this is the ID of
6934
+ * <p>For FSx for Lustre file systems, and Single-AZ Windows file systems, this is the ID of
6779
6935
  * the subnet that contains the file system's endpoint. For <code>MULTI_AZ_1</code> Windows and
6780
6936
  * ONTAP file systems, the file system endpoint is available in the <code>PreferredSubnetID</code>.</p>
6781
6937
  */
@@ -6787,8 +6943,7 @@ export interface FileSystem {
6787
6943
  * information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html">Elastic Network Interfaces</a> in
6788
6944
  * the <i>Amazon EC2 User Guide.</i>
6789
6945
  * </p>
6790
- *
6791
- * <p>For an Amazon FSx for Windows File Server file system, you can have one
6946
+ * <p>For an Amazon FSx for Windows File Server file system, you can have one
6792
6947
  * network interface ID. For an Amazon FSx for Lustre file system, you can have
6793
6948
  * more than one.</p>
6794
6949
  */
@@ -6800,11 +6955,11 @@ export interface FileSystem {
6800
6955
  /**
6801
6956
  * <p>The ID of the Key Management Service (KMS) key used to encrypt Amazon FSx file
6802
6957
  * system data. Used as follows with Amazon FSx file system types:</p>
6803
- * <ul>
6958
+ * <ul>
6804
6959
  * <li>
6805
6960
  * <p>Amazon FSx for Lustre <code>PERSISTENT_1</code>
6806
6961
  * and <code>PERSISTENT_2</code> deployment types only.</p>
6807
- * <p>
6962
+ * <p>
6808
6963
  * <code>SCRATCH_1</code> and <code>SCRATCH_2</code> types are encrypted using
6809
6964
  * the Amazon FSx service KMS key for your account.</p>
6810
6965
  * </li>
@@ -6888,22 +7043,22 @@ export interface Snapshot {
6888
7043
  CreationTime?: Date;
6889
7044
  /**
6890
7045
  * <p>The lifecycle status of the snapshot.</p>
6891
- * <ul>
7046
+ * <ul>
6892
7047
  * <li>
6893
- * <p>
7048
+ * <p>
6894
7049
  * <code>PENDING</code> - Amazon FSx hasn't started creating the
6895
7050
  * snapshot.</p>
6896
7051
  * </li>
6897
7052
  * <li>
6898
- * <p>
7053
+ * <p>
6899
7054
  * <code>CREATING</code> - Amazon FSx is creating the snapshot.</p>
6900
7055
  * </li>
6901
7056
  * <li>
6902
- * <p>
7057
+ * <p>
6903
7058
  * <code>DELETING</code> - Amazon FSx is deleting the snapshot.</p>
6904
7059
  * </li>
6905
7060
  * <li>
6906
- * <p>
7061
+ * <p>
6907
7062
  * <code>AVAILABLE</code> - The snapshot is fully available.</p>
6908
7063
  * </li>
6909
7064
  * </ul>
@@ -6940,37 +7095,37 @@ export interface Volume {
6940
7095
  FileSystemId?: string;
6941
7096
  /**
6942
7097
  * <p>The lifecycle status of the volume.</p>
6943
- * <ul>
7098
+ * <ul>
6944
7099
  * <li>
6945
- * <p>
7100
+ * <p>
6946
7101
  * <code>AVAILABLE</code> - The volume is fully available for
6947
7102
  * use.</p>
6948
7103
  * </li>
6949
7104
  * <li>
6950
- * <p>
7105
+ * <p>
6951
7106
  * <code>CREATED</code> - The volume has been created.</p>
6952
7107
  * </li>
6953
7108
  * <li>
6954
- * <p>
7109
+ * <p>
6955
7110
  * <code>CREATING</code> - Amazon FSx is creating the new volume.</p>
6956
7111
  * </li>
6957
7112
  * <li>
6958
- * <p>
7113
+ * <p>
6959
7114
  * <code>DELETING</code> - Amazon FSx is deleting an existing
6960
7115
  * volume.</p>
6961
7116
  * </li>
6962
7117
  * <li>
6963
- * <p>
7118
+ * <p>
6964
7119
  * <code>FAILED</code> - Amazon FSx was unable to create the
6965
7120
  * volume.</p>
6966
7121
  * </li>
6967
7122
  * <li>
6968
- * <p>
7123
+ * <p>
6969
7124
  * <code>MISCONFIGURED</code> - The volume is in a failed but recoverable
6970
7125
  * state.</p>
6971
7126
  * </li>
6972
7127
  * <li>
6973
- * <p>
7128
+ * <p>
6974
7129
  * <code>PENDING</code> - Amazon FSx hasn't started creating the
6975
7130
  * volume.</p>
6976
7131
  * </li>
@@ -7009,9 +7164,9 @@ export interface Volume {
7009
7164
  */
7010
7165
  LifecycleTransitionReason?: LifecycleTransitionReason;
7011
7166
  /**
7012
- * <p>A list of administrative actions for the file system that are in process or waiting to
7013
- * be processed. Administrative actions describe changes to the Amazon FSx system
7014
- * that you initiated.</p>
7167
+ * <p>A list of administrative actions for the volume that are in process or waiting to be processed.
7168
+ * Administrative actions describe changes to the volume that you have initiated using
7169
+ * the <code>UpdateVolume</code> action.</p>
7015
7170
  */
7016
7171
  AdministrativeActions?: AdministrativeAction[];
7017
7172
  /**
@@ -7019,6 +7174,22 @@ export interface Volume {
7019
7174
  */
7020
7175
  OpenZFSConfiguration?: OpenZFSVolumeConfiguration;
7021
7176
  }
7177
+ export interface RestoreVolumeFromSnapshotResponse {
7178
+ /**
7179
+ * <p>The ID of the volume that you restored.</p>
7180
+ */
7181
+ VolumeId?: string;
7182
+ /**
7183
+ * <p>The lifecycle state of the volume being restored.</p>
7184
+ */
7185
+ Lifecycle?: VolumeLifecycle | string;
7186
+ /**
7187
+ * <p>A list of administrative actions for the file system that are in process or waiting to
7188
+ * be processed. Administrative actions describe changes to the Amazon FSx
7189
+ * system.</p>
7190
+ */
7191
+ AdministrativeActions?: AdministrativeAction[];
7192
+ }
7022
7193
  /**
7023
7194
  * <p>The response object for the <code>CreateFileSystemFromBackup</code>
7024
7195
  * operation.</p>
@@ -7137,7 +7308,7 @@ export interface Backup {
7137
7308
  BackupId: string | undefined;
7138
7309
  /**
7139
7310
  * <p>The lifecycle status of the backup.</p>
7140
- * <ul>
7311
+ * <ul>
7141
7312
  * <li>
7142
7313
  * <p>
7143
7314
  * <code>AVAILABLE</code> - The backup is fully available.</p>
@@ -7773,10 +7944,6 @@ export declare const ReleaseFileSystemNfsV3LocksRequestFilterSensitiveLog: (obj:
7773
7944
  * @internal
7774
7945
  */
7775
7946
  export declare const RestoreVolumeFromSnapshotRequestFilterSensitiveLog: (obj: RestoreVolumeFromSnapshotRequest) => any;
7776
- /**
7777
- * @internal
7778
- */
7779
- export declare const RestoreVolumeFromSnapshotResponseFilterSensitiveLog: (obj: RestoreVolumeFromSnapshotResponse) => any;
7780
7947
  /**
7781
7948
  * @internal
7782
7949
  */
@@ -7881,6 +8048,10 @@ export declare const SnapshotFilterSensitiveLog: (obj: Snapshot) => any;
7881
8048
  * @internal
7882
8049
  */
7883
8050
  export declare const VolumeFilterSensitiveLog: (obj: Volume) => any;
8051
+ /**
8052
+ * @internal
8053
+ */
8054
+ export declare const RestoreVolumeFromSnapshotResponseFilterSensitiveLog: (obj: RestoreVolumeFromSnapshotResponse) => any;
7884
8055
  /**
7885
8056
  * @internal
7886
8057
  */