@aws-sdk/client-datasync 3.714.0 → 3.716.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 (41) hide show
  1. package/README.md +48 -0
  2. package/dist-cjs/index.js +246 -0
  3. package/dist-es/DataSync.js +12 -0
  4. package/dist-es/commands/UpdateLocationEfsCommand.js +22 -0
  5. package/dist-es/commands/UpdateLocationFsxLustreCommand.js +22 -0
  6. package/dist-es/commands/UpdateLocationFsxOntapCommand.js +23 -0
  7. package/dist-es/commands/UpdateLocationFsxOpenZfsCommand.js +23 -0
  8. package/dist-es/commands/UpdateLocationFsxWindowsCommand.js +23 -0
  9. package/dist-es/commands/UpdateLocationS3Command.js +22 -0
  10. package/dist-es/commands/index.js +6 -0
  11. package/dist-es/models/models_0.js +20 -0
  12. package/dist-es/protocols/Aws_json1_1.js +114 -0
  13. package/dist-types/DataSync.d.ts +42 -0
  14. package/dist-types/DataSyncClient.d.ts +8 -2
  15. package/dist-types/commands/CreateLocationNfsCommand.d.ts +0 -5
  16. package/dist-types/commands/UpdateLocationAzureBlobCommand.d.ts +2 -1
  17. package/dist-types/commands/UpdateLocationEfsCommand.d.ts +81 -0
  18. package/dist-types/commands/UpdateLocationFsxLustreCommand.d.ts +78 -0
  19. package/dist-types/commands/UpdateLocationFsxOntapCommand.d.ts +93 -0
  20. package/dist-types/commands/UpdateLocationFsxOpenZfsCommand.d.ts +97 -0
  21. package/dist-types/commands/UpdateLocationFsxWindowsCommand.d.ts +81 -0
  22. package/dist-types/commands/UpdateLocationHdfsCommand.d.ts +3 -2
  23. package/dist-types/commands/UpdateLocationNfsCommand.d.ts +2 -3
  24. package/dist-types/commands/UpdateLocationObjectStorageCommand.d.ts +2 -2
  25. package/dist-types/commands/UpdateLocationS3Command.d.ts +97 -0
  26. package/dist-types/commands/UpdateLocationSmbCommand.d.ts +3 -2
  27. package/dist-types/commands/index.d.ts +6 -0
  28. package/dist-types/models/models_0.d.ts +326 -26
  29. package/dist-types/protocols/Aws_json1_1.d.ts +54 -0
  30. package/dist-types/ts3.4/DataSync.d.ts +102 -0
  31. package/dist-types/ts3.4/DataSyncClient.d.ts +36 -0
  32. package/dist-types/ts3.4/commands/UpdateLocationEfsCommand.d.ts +51 -0
  33. package/dist-types/ts3.4/commands/UpdateLocationFsxLustreCommand.d.ts +51 -0
  34. package/dist-types/ts3.4/commands/UpdateLocationFsxOntapCommand.d.ts +51 -0
  35. package/dist-types/ts3.4/commands/UpdateLocationFsxOpenZfsCommand.d.ts +51 -0
  36. package/dist-types/ts3.4/commands/UpdateLocationFsxWindowsCommand.d.ts +51 -0
  37. package/dist-types/ts3.4/commands/UpdateLocationS3Command.d.ts +50 -0
  38. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  39. package/dist-types/ts3.4/models/models_0.d.ts +65 -0
  40. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
  41. package/package.json +12 -12
@@ -502,8 +502,7 @@ export type EfsInTransitEncryption = (typeof EfsInTransitEncryption)[keyof typeo
502
502
  */
503
503
  export interface CreateLocationEfsRequest {
504
504
  /**
505
- * <p>Specifies a mount path for your Amazon EFS file system. This is where DataSync reads or writes data (depending on if this is a source or destination location)
506
- * on your file system.</p>
505
+ * <p>Specifies a mount path for your Amazon EFS file system. This is where DataSync reads or writes data on your file system (depending on if this is a source or destination location).</p>
507
506
  * <p>By default, DataSync uses the root directory (or <a href="https://docs.aws.amazon.com/efs/latest/ug/efs-access-points.html">access point</a> if you provide one by using
508
507
  * <code>AccessPointArn</code>). You can also include subdirectories using forward slashes (for
509
508
  * example, <code>/path/to/folder</code>).</p>
@@ -568,27 +567,29 @@ export interface CreateLocationEfsResponse {
568
567
  */
569
568
  export interface CreateLocationFsxLustreRequest {
570
569
  /**
571
- * <p>The Amazon Resource Name (ARN) for the FSx for Lustre file system.</p>
570
+ * <p>Specifies the Amazon Resource Name (ARN) of the FSx for Lustre file system.</p>
572
571
  * @public
573
572
  */
574
573
  FsxFilesystemArn: string | undefined;
575
574
  /**
576
- * <p>The Amazon Resource Names (ARNs) of the security groups that are used to configure the
575
+ * <p>Specifies the Amazon Resource Names (ARNs) of up to five security groups that provide access to your
577
576
  * FSx for Lustre file system.</p>
577
+ * <p>The security groups must be able to access the file system's ports. The file system must
578
+ * also allow access from the security groups. For information about file system access, see the
579
+ * <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/limit-access-security-groups.html">
580
+ * <i>Amazon FSx for Lustre User Guide</i>
581
+ * </a>.</p>
578
582
  * @public
579
583
  */
580
584
  SecurityGroupArns: string[] | undefined;
581
585
  /**
582
- * <p>A subdirectory in the location's path. This subdirectory in the FSx for Lustre
583
- * file system is used to read data from the FSx for Lustre source location or write
584
- * data to the FSx for Lustre destination.</p>
586
+ * <p>Specifies a mount path for your FSx for Lustre file system. The path can include subdirectories.</p>
587
+ * <p>When the location is used as a source, DataSync reads data from the mount path. When the location is used as a destination, DataSync writes data to the mount path. If you don't include this parameter, DataSync uses the file system's root directory (<code>/</code>).</p>
585
588
  * @public
586
589
  */
587
590
  Subdirectory?: string | undefined;
588
591
  /**
589
- * <p>The key-value pair that represents a tag that you want to add to the resource. The value
590
- * can be an empty string. This value helps you manage, filter, and search for your resources. We
591
- * recommend that you create a name tag for your location.</p>
592
+ * <p>Specifies labels that help you categorize, filter, and search for your Amazon Web Services resources. We recommend creating at least a name tag for your location.</p>
592
593
  * @public
593
594
  */
594
595
  Tags?: TagListEntry[] | undefined;
@@ -598,8 +599,8 @@ export interface CreateLocationFsxLustreRequest {
598
599
  */
599
600
  export interface CreateLocationFsxLustreResponse {
600
601
  /**
601
- * <p>The Amazon Resource Name (ARN) of the FSx for Lustre file system location that's
602
- * created. </p>
602
+ * <p>The Amazon Resource Name (ARN) of the FSx for Lustre file system location that
603
+ * you created. </p>
603
604
  * @public
604
605
  */
605
606
  LocationArn?: string | undefined;
@@ -658,8 +659,8 @@ export interface NfsMountOptions {
658
659
  }
659
660
  /**
660
661
  * <p>Specifies the Network File System (NFS) protocol configuration that DataSync
661
- * uses to access your Amazon FSx for OpenZFS or Amazon FSx for NetApp ONTAP file
662
- * system.</p>
662
+ * uses to access your FSx for OpenZFS file system or FSx for ONTAP file
663
+ * system's storage virtual machine (SVM).</p>
663
664
  * @public
664
665
  */
665
666
  export interface FsxProtocolNfs {
@@ -731,16 +732,16 @@ export interface SmbMountOptions {
731
732
  Version?: SmbVersion | undefined;
732
733
  }
733
734
  /**
734
- * <p>Specifies the Server Message Block (SMB) protocol configuration that DataSync uses to access your Amazon FSx for NetApp ONTAP file system. For more information, see
735
- * <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-ontap-location.html#create-ontap-location-access">Accessing FSx for ONTAP file systems</a>.</p>
735
+ * <p>Specifies the Server Message Block (SMB) protocol configuration that DataSync uses to access your Amazon FSx for NetApp ONTAP file system's storage virtual machine (SVM). For more information, see
736
+ * <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-ontap-location.html#create-ontap-location-access">Providing DataSync access to FSx for ONTAP file systems</a>.</p>
736
737
  * @public
737
738
  */
738
739
  export interface FsxProtocolSmb {
739
740
  /**
740
- * <p>Specifies the fully qualified domain name (FQDN) of the Microsoft Active Directory that
741
- * your storage virtual machine (SVM) belongs to.</p>
741
+ * <p>Specifies the name of the Windows domain that your storage virtual machine (SVM) belongs to.</p>
742
742
  * <p>If you have multiple domains in your environment, configuring this setting makes sure that
743
743
  * DataSync connects to the right SVM.</p>
744
+ * <p>If you have multiple Active Directory domains in your environment, configuring this parameter makes sure that DataSync connects to the right SVM.</p>
744
745
  * @public
745
746
  */
746
747
  Domain?: string | undefined;
@@ -820,7 +821,7 @@ export interface CreateLocationFsxOntapRequest {
820
821
  */
821
822
  StorageVirtualMachineArn: string | undefined;
822
823
  /**
823
- * <p>Specifies a path to the file share in the SVM where you'll copy your data.</p>
824
+ * <p>Specifies a path to the file share in the SVM where you want to transfer data to or from.</p>
824
825
  * <p>You can specify a junction path (also known as a mount point), qtree path (for NFS file
825
826
  * shares), or share name (for SMB file shares). For example, your mount path might be
826
827
  * <code>/vol1</code>, <code>/vol1/tree1</code>, or <code>/share1</code>.</p>
@@ -945,7 +946,7 @@ export interface CreateLocationFsxWindowsRequest {
945
946
  */
946
947
  User: string | undefined;
947
948
  /**
948
- * <p>Specifies the name of the Microsoft Active Directory domain that the FSx for Windows File Server file system belongs to.</p>
949
+ * <p>Specifies the name of the Windows domain that the FSx for Windows File Server file system belongs to.</p>
949
950
  * <p>If you have multiple Active Directory domains in your environment, configuring this
950
951
  * parameter makes sure that DataSync connects to the right file system.</p>
951
952
  * @public
@@ -1343,8 +1344,7 @@ export interface CreateLocationObjectStorageResponse {
1343
1344
  }
1344
1345
  /**
1345
1346
  * <p>Specifies the Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that DataSync uses to access your S3 bucket.</p>
1346
- * <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access">Accessing
1347
- * S3 buckets</a>.</p>
1347
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access">Providing DataSync access to S3 buckets</a>.</p>
1348
1348
  * @public
1349
1349
  */
1350
1350
  export interface S3Config {
@@ -1434,8 +1434,7 @@ export interface CreateLocationS3Request {
1434
1434
  S3StorageClass?: S3StorageClass | undefined;
1435
1435
  /**
1436
1436
  * <p>Specifies the Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that DataSync uses to access your S3 bucket.</p>
1437
- * <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access">Accessing
1438
- * S3 buckets</a>.</p>
1437
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access">Providing DataSync access to S3 buckets</a>.</p>
1439
1438
  * @public
1440
1439
  */
1441
1440
  S3Config: S3Config | undefined;
@@ -3272,8 +3271,7 @@ export interface DescribeLocationS3Response {
3272
3271
  S3StorageClass?: S3StorageClass | undefined;
3273
3272
  /**
3274
3273
  * <p>Specifies the Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that DataSync uses to access your S3 bucket.</p>
3275
- * <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access">Accessing
3276
- * S3 buckets</a>.</p>
3274
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access">Providing DataSync access to S3 buckets</a>.</p>
3277
3275
  * @public
3278
3276
  */
3279
3277
  S3Config?: S3Config | undefined;
@@ -5513,6 +5511,223 @@ export interface UpdateLocationAzureBlobRequest {
5513
5511
  */
5514
5512
  export interface UpdateLocationAzureBlobResponse {
5515
5513
  }
5514
+ /**
5515
+ * @public
5516
+ */
5517
+ export interface UpdateLocationEfsRequest {
5518
+ /**
5519
+ * <p>Specifies the Amazon Resource Name (ARN) of the Amazon EFS transfer location that you're updating.</p>
5520
+ * @public
5521
+ */
5522
+ LocationArn: string | undefined;
5523
+ /**
5524
+ * <p>Specifies a mount path for your Amazon EFS file system. This is where DataSync reads or writes data on your file system (depending on if this is a source or destination location).</p>
5525
+ * <p>By default, DataSync uses the root directory (or <a href="https://docs.aws.amazon.com/efs/latest/ug/efs-access-points.html">access point</a> if you provide one by using
5526
+ * <code>AccessPointArn</code>). You can also include subdirectories using forward slashes (for
5527
+ * example, <code>/path/to/folder</code>).</p>
5528
+ * @public
5529
+ */
5530
+ Subdirectory?: string | undefined;
5531
+ /**
5532
+ * <p>Specifies the Amazon Resource Name (ARN) of the access point that DataSync uses
5533
+ * to mount your Amazon EFS file system.</p>
5534
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam">Accessing restricted Amazon EFS file systems</a>.</p>
5535
+ * @public
5536
+ */
5537
+ AccessPointArn?: string | undefined;
5538
+ /**
5539
+ * <p>Specifies an Identity and Access Management (IAM) role that allows DataSync to access your Amazon EFS file system.</p>
5540
+ * <p>For information on creating this role, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam-role">Creating a DataSync IAM role for Amazon EFS file system access</a>.</p>
5541
+ * @public
5542
+ */
5543
+ FileSystemAccessRoleArn?: string | undefined;
5544
+ /**
5545
+ * <p>Specifies whether you want DataSync to use Transport Layer Security (TLS) 1.2
5546
+ * encryption when it transfers data to or from your Amazon EFS file system.</p>
5547
+ * <p>If you specify an access point using <code>AccessPointArn</code> or an IAM
5548
+ * role using <code>FileSystemAccessRoleArn</code>, you must set this parameter to
5549
+ * <code>TLS1_2</code>.</p>
5550
+ * @public
5551
+ */
5552
+ InTransitEncryption?: EfsInTransitEncryption | undefined;
5553
+ }
5554
+ /**
5555
+ * @public
5556
+ */
5557
+ export interface UpdateLocationEfsResponse {
5558
+ }
5559
+ /**
5560
+ * @public
5561
+ */
5562
+ export interface UpdateLocationFsxLustreRequest {
5563
+ /**
5564
+ * <p>Specifies the Amazon Resource Name (ARN) of the FSx for Lustre transfer location that you're updating.</p>
5565
+ * @public
5566
+ */
5567
+ LocationArn: string | undefined;
5568
+ /**
5569
+ * <p>Specifies a mount path for your FSx for Lustre file system. The path can include subdirectories.</p>
5570
+ * <p>When the location is used as a source, DataSync reads data from the mount path. When the location is used as a destination, DataSync writes data to the mount path. If you don't include this parameter, DataSync uses the file system's root directory (<code>/</code>).</p>
5571
+ * @public
5572
+ */
5573
+ Subdirectory?: string | undefined;
5574
+ }
5575
+ /**
5576
+ * @public
5577
+ */
5578
+ export interface UpdateLocationFsxLustreResponse {
5579
+ }
5580
+ /**
5581
+ * <p>Specifies the Server Message Block (SMB) protocol configuration that DataSync uses to access your Amazon FSx for NetApp ONTAP file system's storage virtual machine (SVM). For more information, see
5582
+ * <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-ontap-location.html#create-ontap-location-access">Providing DataSync access to FSx for ONTAP file systems</a>.</p>
5583
+ * @public
5584
+ */
5585
+ export interface FsxUpdateProtocolSmb {
5586
+ /**
5587
+ * <p>Specifies the name of the Windows domain that your storage virtual machine (SVM) belongs to.</p>
5588
+ * <p>If you have multiple Active Directory domains in your environment, configuring this parameter makes sure that DataSync connects to the right SVM.</p>
5589
+ * @public
5590
+ */
5591
+ Domain?: string | undefined;
5592
+ /**
5593
+ * <p>Specifies the version of the Server Message Block (SMB) protocol that DataSync uses to access an SMB file server.</p>
5594
+ * @public
5595
+ */
5596
+ MountOptions?: SmbMountOptions | undefined;
5597
+ /**
5598
+ * <p>Specifies the password of a user who has permission to access your SVM.</p>
5599
+ * @public
5600
+ */
5601
+ Password?: string | undefined;
5602
+ /**
5603
+ * <p>Specifies a user that can mount and access the files, folders, and metadata in your SVM.</p>
5604
+ * <p>For information about choosing a user with the right level of access for your transfer, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-ontap-location.html#create-ontap-location-smb">Using
5605
+ * the SMB protocol</a>.</p>
5606
+ * @public
5607
+ */
5608
+ User?: string | undefined;
5609
+ }
5610
+ /**
5611
+ * <p>Specifies the data transfer protocol that DataSync uses to access your
5612
+ * Amazon FSx file system.</p>
5613
+ * <note>
5614
+ * <p>You can't update the Network File System (NFS) protocol configuration for FSx for ONTAP locations. DataSync currently only supports NFS version 3 with this location type.</p>
5615
+ * </note>
5616
+ * @public
5617
+ */
5618
+ export interface FsxUpdateProtocol {
5619
+ /**
5620
+ * <p>Specifies the Network File System (NFS) protocol configuration that DataSync
5621
+ * uses to access your FSx for OpenZFS file system or FSx for ONTAP file
5622
+ * system's storage virtual machine (SVM).</p>
5623
+ * @public
5624
+ */
5625
+ NFS?: FsxProtocolNfs | undefined;
5626
+ /**
5627
+ * <p>Specifies the Server Message Block (SMB) protocol configuration that DataSync
5628
+ * uses to access your FSx for ONTAP file system's storage virtual machine (SVM).</p>
5629
+ * @public
5630
+ */
5631
+ SMB?: FsxUpdateProtocolSmb | undefined;
5632
+ }
5633
+ /**
5634
+ * @public
5635
+ */
5636
+ export interface UpdateLocationFsxOntapRequest {
5637
+ /**
5638
+ * <p>Specifies the Amazon Resource Name (ARN) of the FSx for ONTAP transfer location that you're updating.</p>
5639
+ * @public
5640
+ */
5641
+ LocationArn: string | undefined;
5642
+ /**
5643
+ * <p>Specifies the data transfer protocol that DataSync uses to access your Amazon FSx file system.</p>
5644
+ * @public
5645
+ */
5646
+ Protocol?: FsxUpdateProtocol | undefined;
5647
+ /**
5648
+ * <p>Specifies a path to the file share in the storage virtual machine (SVM) where you want to transfer data to or from.</p>
5649
+ * <p>You can specify a junction path (also known as a mount point), qtree path (for NFS file
5650
+ * shares), or share name (for SMB file shares). For example, your mount path might be
5651
+ * <code>/vol1</code>, <code>/vol1/tree1</code>, or <code>/share1</code>.</p>
5652
+ * <note>
5653
+ * <p>Don't specify a junction path in the SVM's root volume. For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/managing-svms.html">Managing FSx for ONTAP storage virtual machines</a> in the <i>Amazon FSx for NetApp ONTAP User Guide</i>.</p>
5654
+ * </note>
5655
+ * @public
5656
+ */
5657
+ Subdirectory?: string | undefined;
5658
+ }
5659
+ /**
5660
+ * @public
5661
+ */
5662
+ export interface UpdateLocationFsxOntapResponse {
5663
+ }
5664
+ /**
5665
+ * @public
5666
+ */
5667
+ export interface UpdateLocationFsxOpenZfsRequest {
5668
+ /**
5669
+ * <p>Specifies the Amazon Resource Name (ARN) of the FSx for OpenZFS transfer location that you're updating.</p>
5670
+ * @public
5671
+ */
5672
+ LocationArn: string | undefined;
5673
+ /**
5674
+ * <p>Specifies the data transfer protocol that DataSync uses to access your
5675
+ * Amazon FSx file system.</p>
5676
+ * @public
5677
+ */
5678
+ Protocol?: FsxProtocol | undefined;
5679
+ /**
5680
+ * <p>Specifies a subdirectory in the location's path that must begin with <code>/fsx</code>. DataSync uses this subdirectory to read or write data (depending on whether the file
5681
+ * system is a source or destination location).</p>
5682
+ * @public
5683
+ */
5684
+ Subdirectory?: string | undefined;
5685
+ }
5686
+ /**
5687
+ * @public
5688
+ */
5689
+ export interface UpdateLocationFsxOpenZfsResponse {
5690
+ }
5691
+ /**
5692
+ * @public
5693
+ */
5694
+ export interface UpdateLocationFsxWindowsRequest {
5695
+ /**
5696
+ * <p>Specifies the ARN of the FSx for Windows File Server transfer location that you're updating.</p>
5697
+ * @public
5698
+ */
5699
+ LocationArn: string | undefined;
5700
+ /**
5701
+ * <p>Specifies a mount path for your file system using forward slashes. DataSync uses this subdirectory to read or write data (depending on whether the file
5702
+ * system is a source or destination location).</p>
5703
+ * @public
5704
+ */
5705
+ Subdirectory?: string | undefined;
5706
+ /**
5707
+ * <p>Specifies the name of the Windows domain that your FSx for Windows File Server file system belongs to.</p>
5708
+ * <p>If you have multiple Active Directory domains in your environment, configuring this parameter makes sure that DataSync connects to the right file system.</p>
5709
+ * @public
5710
+ */
5711
+ Domain?: string | undefined;
5712
+ /**
5713
+ * <p>Specifies the user with the permissions to mount and access the files, folders, and file
5714
+ * metadata in your FSx for Windows File Server file system.</p>
5715
+ * <p>For information about choosing a user with the right level of access for your transfer, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-fsx-location.html#create-fsx-windows-location-permissions">required permissions</a> for FSx for Windows File Server locations.</p>
5716
+ * @public
5717
+ */
5718
+ User?: string | undefined;
5719
+ /**
5720
+ * <p>Specifies the password of the user with the permissions to mount and access the files,
5721
+ * folders, and file metadata in your FSx for Windows File Server file system.</p>
5722
+ * @public
5723
+ */
5724
+ Password?: string | undefined;
5725
+ }
5726
+ /**
5727
+ * @public
5728
+ */
5729
+ export interface UpdateLocationFsxWindowsResponse {
5730
+ }
5516
5731
  /**
5517
5732
  * @public
5518
5733
  */
@@ -5714,6 +5929,71 @@ export interface UpdateLocationObjectStorageRequest {
5714
5929
  */
5715
5930
  export interface UpdateLocationObjectStorageResponse {
5716
5931
  }
5932
+ /**
5933
+ * @public
5934
+ */
5935
+ export interface UpdateLocationS3Request {
5936
+ /**
5937
+ * <p>Specifies the Amazon Resource Name (ARN) of the Amazon S3 transfer location that you're updating.</p>
5938
+ * @public
5939
+ */
5940
+ LocationArn: string | undefined;
5941
+ /**
5942
+ * <p>Specifies a prefix in the S3 bucket that DataSync reads from or writes to
5943
+ * (depending on whether the bucket is a source or destination location).</p>
5944
+ * <note>
5945
+ * <p>DataSync can't transfer objects with a prefix that begins with a slash
5946
+ * (<code>/</code>) or includes <code>//</code>, <code>/./</code>, or
5947
+ * <code>/../</code> patterns. For example:</p>
5948
+ * <ul>
5949
+ * <li>
5950
+ * <p>
5951
+ * <code>/photos</code>
5952
+ * </p>
5953
+ * </li>
5954
+ * <li>
5955
+ * <p>
5956
+ * <code>photos//2006/January</code>
5957
+ * </p>
5958
+ * </li>
5959
+ * <li>
5960
+ * <p>
5961
+ * <code>photos/./2006/February</code>
5962
+ * </p>
5963
+ * </li>
5964
+ * <li>
5965
+ * <p>
5966
+ * <code>photos/../2006/March</code>
5967
+ * </p>
5968
+ * </li>
5969
+ * </ul>
5970
+ * </note>
5971
+ * @public
5972
+ */
5973
+ Subdirectory?: string | undefined;
5974
+ /**
5975
+ * <p>Specifies the storage class that you want your objects to use when Amazon S3 is a
5976
+ * transfer destination.</p>
5977
+ * <p>For buckets in Amazon Web Services Regions, the storage class defaults to
5978
+ * <code>STANDARD</code>. For buckets on Outposts, the storage class defaults to
5979
+ * <code>OUTPOSTS</code>.</p>
5980
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#using-storage-classes">Storage class
5981
+ * considerations with Amazon S3 transfers</a>.</p>
5982
+ * @public
5983
+ */
5984
+ S3StorageClass?: S3StorageClass | undefined;
5985
+ /**
5986
+ * <p>Specifies the Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that DataSync uses to access your S3 bucket.</p>
5987
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access">Providing DataSync access to S3 buckets</a>.</p>
5988
+ * @public
5989
+ */
5990
+ S3Config?: S3Config | undefined;
5991
+ }
5992
+ /**
5993
+ * @public
5994
+ */
5995
+ export interface UpdateLocationS3Response {
5996
+ }
5717
5997
  /**
5718
5998
  * @public
5719
5999
  */
@@ -5974,6 +6254,26 @@ export declare const DescribeLocationFsxOpenZfsResponseFilterSensitiveLog: (obj:
5974
6254
  * @internal
5975
6255
  */
5976
6256
  export declare const UpdateLocationAzureBlobRequestFilterSensitiveLog: (obj: UpdateLocationAzureBlobRequest) => any;
6257
+ /**
6258
+ * @internal
6259
+ */
6260
+ export declare const FsxUpdateProtocolSmbFilterSensitiveLog: (obj: FsxUpdateProtocolSmb) => any;
6261
+ /**
6262
+ * @internal
6263
+ */
6264
+ export declare const FsxUpdateProtocolFilterSensitiveLog: (obj: FsxUpdateProtocol) => any;
6265
+ /**
6266
+ * @internal
6267
+ */
6268
+ export declare const UpdateLocationFsxOntapRequestFilterSensitiveLog: (obj: UpdateLocationFsxOntapRequest) => any;
6269
+ /**
6270
+ * @internal
6271
+ */
6272
+ export declare const UpdateLocationFsxOpenZfsRequestFilterSensitiveLog: (obj: UpdateLocationFsxOpenZfsRequest) => any;
6273
+ /**
6274
+ * @internal
6275
+ */
6276
+ export declare const UpdateLocationFsxWindowsRequestFilterSensitiveLog: (obj: UpdateLocationFsxWindowsRequest) => any;
5977
6277
  /**
5978
6278
  * @internal
5979
6279
  */
@@ -53,9 +53,15 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../comman
53
53
  import { UpdateAgentCommandInput, UpdateAgentCommandOutput } from "../commands/UpdateAgentCommand";
54
54
  import { UpdateDiscoveryJobCommandInput, UpdateDiscoveryJobCommandOutput } from "../commands/UpdateDiscoveryJobCommand";
55
55
  import { UpdateLocationAzureBlobCommandInput, UpdateLocationAzureBlobCommandOutput } from "../commands/UpdateLocationAzureBlobCommand";
56
+ import { UpdateLocationEfsCommandInput, UpdateLocationEfsCommandOutput } from "../commands/UpdateLocationEfsCommand";
57
+ import { UpdateLocationFsxLustreCommandInput, UpdateLocationFsxLustreCommandOutput } from "../commands/UpdateLocationFsxLustreCommand";
58
+ import { UpdateLocationFsxOntapCommandInput, UpdateLocationFsxOntapCommandOutput } from "../commands/UpdateLocationFsxOntapCommand";
59
+ import { UpdateLocationFsxOpenZfsCommandInput, UpdateLocationFsxOpenZfsCommandOutput } from "../commands/UpdateLocationFsxOpenZfsCommand";
60
+ import { UpdateLocationFsxWindowsCommandInput, UpdateLocationFsxWindowsCommandOutput } from "../commands/UpdateLocationFsxWindowsCommand";
56
61
  import { UpdateLocationHdfsCommandInput, UpdateLocationHdfsCommandOutput } from "../commands/UpdateLocationHdfsCommand";
57
62
  import { UpdateLocationNfsCommandInput, UpdateLocationNfsCommandOutput } from "../commands/UpdateLocationNfsCommand";
58
63
  import { UpdateLocationObjectStorageCommandInput, UpdateLocationObjectStorageCommandOutput } from "../commands/UpdateLocationObjectStorageCommand";
64
+ import { UpdateLocationS3CommandInput, UpdateLocationS3CommandOutput } from "../commands/UpdateLocationS3Command";
59
65
  import { UpdateLocationSmbCommandInput, UpdateLocationSmbCommandOutput } from "../commands/UpdateLocationSmbCommand";
60
66
  import { UpdateStorageSystemCommandInput, UpdateStorageSystemCommandOutput } from "../commands/UpdateStorageSystemCommand";
61
67
  import { UpdateTaskCommandInput, UpdateTaskCommandOutput } from "../commands/UpdateTaskCommand";
@@ -272,6 +278,26 @@ export declare const se_UpdateDiscoveryJobCommand: (input: UpdateDiscoveryJobCom
272
278
  * serializeAws_json1_1UpdateLocationAzureBlobCommand
273
279
  */
274
280
  export declare const se_UpdateLocationAzureBlobCommand: (input: UpdateLocationAzureBlobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
281
+ /**
282
+ * serializeAws_json1_1UpdateLocationEfsCommand
283
+ */
284
+ export declare const se_UpdateLocationEfsCommand: (input: UpdateLocationEfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
285
+ /**
286
+ * serializeAws_json1_1UpdateLocationFsxLustreCommand
287
+ */
288
+ export declare const se_UpdateLocationFsxLustreCommand: (input: UpdateLocationFsxLustreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
289
+ /**
290
+ * serializeAws_json1_1UpdateLocationFsxOntapCommand
291
+ */
292
+ export declare const se_UpdateLocationFsxOntapCommand: (input: UpdateLocationFsxOntapCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
293
+ /**
294
+ * serializeAws_json1_1UpdateLocationFsxOpenZfsCommand
295
+ */
296
+ export declare const se_UpdateLocationFsxOpenZfsCommand: (input: UpdateLocationFsxOpenZfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
297
+ /**
298
+ * serializeAws_json1_1UpdateLocationFsxWindowsCommand
299
+ */
300
+ export declare const se_UpdateLocationFsxWindowsCommand: (input: UpdateLocationFsxWindowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
275
301
  /**
276
302
  * serializeAws_json1_1UpdateLocationHdfsCommand
277
303
  */
@@ -284,6 +310,10 @@ export declare const se_UpdateLocationNfsCommand: (input: UpdateLocationNfsComma
284
310
  * serializeAws_json1_1UpdateLocationObjectStorageCommand
285
311
  */
286
312
  export declare const se_UpdateLocationObjectStorageCommand: (input: UpdateLocationObjectStorageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
313
+ /**
314
+ * serializeAws_json1_1UpdateLocationS3Command
315
+ */
316
+ export declare const se_UpdateLocationS3Command: (input: UpdateLocationS3CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
287
317
  /**
288
318
  * serializeAws_json1_1UpdateLocationSmbCommand
289
319
  */
@@ -512,6 +542,26 @@ export declare const de_UpdateDiscoveryJobCommand: (output: __HttpResponse, cont
512
542
  * deserializeAws_json1_1UpdateLocationAzureBlobCommand
513
543
  */
514
544
  export declare const de_UpdateLocationAzureBlobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLocationAzureBlobCommandOutput>;
545
+ /**
546
+ * deserializeAws_json1_1UpdateLocationEfsCommand
547
+ */
548
+ export declare const de_UpdateLocationEfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLocationEfsCommandOutput>;
549
+ /**
550
+ * deserializeAws_json1_1UpdateLocationFsxLustreCommand
551
+ */
552
+ export declare const de_UpdateLocationFsxLustreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLocationFsxLustreCommandOutput>;
553
+ /**
554
+ * deserializeAws_json1_1UpdateLocationFsxOntapCommand
555
+ */
556
+ export declare const de_UpdateLocationFsxOntapCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLocationFsxOntapCommandOutput>;
557
+ /**
558
+ * deserializeAws_json1_1UpdateLocationFsxOpenZfsCommand
559
+ */
560
+ export declare const de_UpdateLocationFsxOpenZfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLocationFsxOpenZfsCommandOutput>;
561
+ /**
562
+ * deserializeAws_json1_1UpdateLocationFsxWindowsCommand
563
+ */
564
+ export declare const de_UpdateLocationFsxWindowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLocationFsxWindowsCommandOutput>;
515
565
  /**
516
566
  * deserializeAws_json1_1UpdateLocationHdfsCommand
517
567
  */
@@ -524,6 +574,10 @@ export declare const de_UpdateLocationNfsCommand: (output: __HttpResponse, conte
524
574
  * deserializeAws_json1_1UpdateLocationObjectStorageCommand
525
575
  */
526
576
  export declare const de_UpdateLocationObjectStorageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLocationObjectStorageCommandOutput>;
577
+ /**
578
+ * deserializeAws_json1_1UpdateLocationS3Command
579
+ */
580
+ export declare const de_UpdateLocationS3Command: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLocationS3CommandOutput>;
527
581
  /**
528
582
  * deserializeAws_json1_1UpdateLocationSmbCommand
529
583
  */