aws-sdk-datasync 1.119.0 → 1.120.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f4a1bd5f5ae141b2e9798206d32a5cee84ce5a37a988f0d03a6c264fd113cfc
4
- data.tar.gz: c870f7fda3d8611dfa4e5ec4fa0374f3e6ae05cb15cbc16eab7d7486c8721b41
3
+ metadata.gz: 21a12eb0eedbb23edd2910c795807fa24dc460f831e8617d201a29c0c6524735
4
+ data.tar.gz: 4f3538200f4fca287bb2fb956e8f0a351c8b51dc84686d9997a3a8500b65a5e6
5
5
  SHA512:
6
- metadata.gz: 339cd651272776e639ff61cfbf49d2da2ad4f9c5887de68f4b7781f90261bd9e6c94919daf6c60f89375a33b825fab5d5719b55fed28cd8abdf9afbe30d1c1bd
7
- data.tar.gz: a5a61b29df0217a849fca8ba3028ce6eec8469219521152f7552160d36e3fdd15635f9a49bbca1771c985b61771d01d6ed66bf1cf7b22207d454fe10a09e78be
6
+ metadata.gz: e95662f6cdb18065a173b9ed852e33fe4d0eb6a6a72e4038bb9b4f1f398c71095aa81e0514572aafa372e185234b5bf6ab5afc33bacad953c476bfa27b5f7414
7
+ data.tar.gz: c75c0bb403df17ce0f7634c2c3e54b7e88939d81e231236b2191e9d62c951aec81e90039416a120d10afb1a03eb106d7f7dd4f63c9de6ed554efc9cad1bc20ff
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.120.0 (2026-03-12)
5
+ ------------------
6
+
7
+ * Feature - DataSync's 3 location types, Hadoop Distributed File System (HDFS), FSx for Windows File Server (FSx Windows), and FSx for NetApp ONTAP (FSx ONTAP) now have credentials managed via Secrets Manager, which may be encrypted with service keys or be configured to use customer-managed keys or secret.
8
+
4
9
  1.119.0 (2026-01-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.119.0
1
+ 1.120.0
@@ -691,7 +691,8 @@ module Aws::DataSync
691
691
  # location access credentials.
692
692
  #
693
693
  # Make sure that DataSync has permission to access the KMS key that you
694
- # specify.
694
+ # specify. For more information, see [ Using a service-managed secret
695
+ # encrypted with a custom KMS key][1].
695
696
  #
696
697
  # <note markdown="1"> You can use either `CmkSecretConfig` (with `SasConfiguration`) or
697
698
  # `CustomSecretConfig` (without `SasConfiguration`) to provide
@@ -700,12 +701,17 @@ module Aws::DataSync
700
701
  #
701
702
  # </note>
702
703
  #
704
+ #
705
+ #
706
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/location-credentials.html#service-secret-custom-key
707
+ #
703
708
  # @option params [Types::CustomSecretConfig] :custom_secret_config
704
709
  # Specifies configuration information for a customer-managed Secrets
705
710
  # Manager secret where the authentication token for an AzureBlob storage
706
711
  # location is stored in plain text, in Secrets Manager. This
707
712
  # configuration includes the secret ARN, and the ARN for an IAM role
708
- # that provides access to the secret.
713
+ # that provides access to the secret. For more information, see [ Using
714
+ # a secret that you manage][1].
709
715
  #
710
716
  # <note markdown="1"> You can use either `CmkSecretConfig` (with `SasConfiguration`) or
711
717
  # `CustomSecretConfig` (without `SasConfiguration`) to provide
@@ -714,6 +720,10 @@ module Aws::DataSync
714
720
  #
715
721
  # </note>
716
722
  #
723
+ #
724
+ #
725
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/location-credentials.html#custom-secret-custom-key
726
+ #
717
727
  # @return [Types::CreateLocationAzureBlobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
718
728
  #
719
729
  # * {Types::CreateLocationAzureBlobResponse#location_arn #location_arn} => String
@@ -1015,8 +1025,19 @@ module Aws::DataSync
1015
1025
  # mount_options: {
1016
1026
  # version: "AUTOMATIC", # accepts AUTOMATIC, SMB2, SMB3, SMB1, SMB2_0
1017
1027
  # },
1018
- # password: "SmbPassword", # required
1028
+ # password: "SmbPassword",
1019
1029
  # user: "SmbUser", # required
1030
+ # managed_secret_config: {
1031
+ # secret_arn: "SecretArn",
1032
+ # },
1033
+ # cmk_secret_config: {
1034
+ # secret_arn: "SecretArn",
1035
+ # kms_key_arn: "KmsKeyArn",
1036
+ # },
1037
+ # custom_secret_config: {
1038
+ # secret_arn: "SecretArn",
1039
+ # secret_access_role_arn: "IamRoleArnOrEmptyString",
1040
+ # },
1020
1041
  # },
1021
1042
  # },
1022
1043
  # security_group_arns: ["Ec2SecurityGroupArn"], # required
@@ -1099,8 +1120,19 @@ module Aws::DataSync
1099
1120
  # mount_options: {
1100
1121
  # version: "AUTOMATIC", # accepts AUTOMATIC, SMB2, SMB3, SMB1, SMB2_0
1101
1122
  # },
1102
- # password: "SmbPassword", # required
1123
+ # password: "SmbPassword",
1103
1124
  # user: "SmbUser", # required
1125
+ # managed_secret_config: {
1126
+ # secret_arn: "SecretArn",
1127
+ # },
1128
+ # cmk_secret_config: {
1129
+ # secret_arn: "SecretArn",
1130
+ # kms_key_arn: "KmsKeyArn",
1131
+ # },
1132
+ # custom_secret_config: {
1133
+ # secret_arn: "SecretArn",
1134
+ # secret_access_role_arn: "IamRoleArnOrEmptyString",
1135
+ # },
1104
1136
  # },
1105
1137
  # },
1106
1138
  # security_group_arns: ["Ec2SecurityGroupArn"], # required
@@ -1196,11 +1228,56 @@ module Aws::DataSync
1196
1228
  # configuring this parameter makes sure that DataSync connects to the
1197
1229
  # right file system.
1198
1230
  #
1199
- # @option params [required, String] :password
1231
+ # @option params [String] :password
1200
1232
  # Specifies the password of the user with the permissions to mount and
1201
1233
  # access the files, folders, and file metadata in your FSx for Windows
1202
1234
  # File Server file system.
1203
1235
  #
1236
+ # @option params [Types::CmkSecretConfig] :cmk_secret_config
1237
+ # Specifies configuration information for a DataSync-managed secret,
1238
+ # which includes the password that DataSync uses to access a specific
1239
+ # FSx Windows storage location, with a customer-managed KMS key.
1240
+ #
1241
+ # When you include this parameter as part of a
1242
+ # `CreateLocationFsxWindows` request, you provide only the KMS key ARN.
1243
+ # DataSync uses this KMS key together with the `Password` you specify
1244
+ # for to create a DataSync-managed secret to store the location access
1245
+ # credentials.
1246
+ #
1247
+ # Make sure that DataSync has permission to access the KMS key that you
1248
+ # specify. For more information, see [ Using a service-managed secret
1249
+ # encrypted with a custom KMS key][1].
1250
+ #
1251
+ # <note markdown="1"> You can use either `CmkSecretConfig` (with `Password`) or
1252
+ # `CustomSecretConfig` (without `Password`) to provide credentials for a
1253
+ # `CreateLocationFsxWindows` request. Do not provide both parameters for
1254
+ # the same request.
1255
+ #
1256
+ # </note>
1257
+ #
1258
+ #
1259
+ #
1260
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/location-credentials.html#service-secret-custom-key
1261
+ #
1262
+ # @option params [Types::CustomSecretConfig] :custom_secret_config
1263
+ # Specifies configuration information for a customer-managed Secrets
1264
+ # Manager secret where the password for an FSx for Windows File Server
1265
+ # storage location is stored in plain text, in Secrets Manager. This
1266
+ # configuration includes the secret ARN, and the ARN for an IAM role
1267
+ # that provides access to the secret. For more information, see [ Using
1268
+ # a secret that you manage][1].
1269
+ #
1270
+ # <note markdown="1"> You can use either `CmkSecretConfig` (with `Password`) or
1271
+ # `CustomSecretConfig` (without `Password`) to provide credentials for a
1272
+ # `CreateLocationFsxWindows` request. Do not provide both parameters for
1273
+ # the same request.
1274
+ #
1275
+ # </note>
1276
+ #
1277
+ #
1278
+ #
1279
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/location-credentials.html#custom-secret-custom-key
1280
+ #
1204
1281
  # @return [Types::CreateLocationFsxWindowsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1205
1282
  #
1206
1283
  # * {Types::CreateLocationFsxWindowsResponse#location_arn #location_arn} => String
@@ -1219,7 +1296,15 @@ module Aws::DataSync
1219
1296
  # ],
1220
1297
  # user: "SmbUser", # required
1221
1298
  # domain: "SmbDomain",
1222
- # password: "SmbPassword", # required
1299
+ # password: "SmbPassword",
1300
+ # cmk_secret_config: {
1301
+ # secret_arn: "SecretArn",
1302
+ # kms_key_arn: "KmsKeyArn",
1303
+ # },
1304
+ # custom_secret_config: {
1305
+ # secret_arn: "SecretArn",
1306
+ # secret_access_role_arn: "IamRoleArnOrEmptyString",
1307
+ # },
1223
1308
  # })
1224
1309
  #
1225
1310
  # @example Response structure
@@ -1329,6 +1414,51 @@ module Aws::DataSync
1329
1414
  # location. The value can be an empty string. We recommend using tags to
1330
1415
  # name your resources.
1331
1416
  #
1417
+ # @option params [Types::CmkSecretConfig] :cmk_secret_config
1418
+ # Specifies configuration information for a DataSync-managed secret,
1419
+ # which includes the Kerberos keytab that DataSync uses to access a
1420
+ # specific Hadoop Distributed File System (HDFS) storage location, with
1421
+ # a customer-managed KMS key.
1422
+ #
1423
+ # When you include this parameter as part of a `CreateLocationHdfs`
1424
+ # request, you provide only the KMS key ARN. DataSync uses this KMS key
1425
+ # together with the `KerberosKeytab` you specify for to create a
1426
+ # DataSync-managed secret to store the location access credentials.
1427
+ #
1428
+ # Make sure that DataSync has permission to access the KMS key that you
1429
+ # specify. For more information, see [ Using a service-managed secret
1430
+ # encrypted with a custom KMS key][1].
1431
+ #
1432
+ # <note markdown="1"> You can use either `CmkSecretConfig` (with `KerberosKeytab`) or
1433
+ # `CustomSecretConfig` (without `KerberosKeytab`) to provide credentials
1434
+ # for a `CreateLocationHdfs` request. Do not provide both parameters for
1435
+ # the same request.
1436
+ #
1437
+ # </note>
1438
+ #
1439
+ #
1440
+ #
1441
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/location-credentials.html#service-secret-custom-key
1442
+ #
1443
+ # @option params [Types::CustomSecretConfig] :custom_secret_config
1444
+ # Specifies configuration information for a customer-managed Secrets
1445
+ # Manager secret where the Kerberos keytab for the HDFS storage location
1446
+ # is stored in binary, in Secrets Manager. This configuration includes
1447
+ # the secret ARN, and the ARN for an IAM role that provides access to
1448
+ # the secret. For more information, see [ Using a secret that you
1449
+ # manage][1].
1450
+ #
1451
+ # <note markdown="1"> You can use either `CmkSecretConfig` (with `KerberosKeytab`) or
1452
+ # `CustomSecretConfig` (without `KerberosKeytab`) to provide credentials
1453
+ # for a `CreateLocationHdfs` request. Do not provide both parameters for
1454
+ # the same request.
1455
+ #
1456
+ # </note>
1457
+ #
1458
+ #
1459
+ #
1460
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/location-credentials.html#custom-secret-custom-key
1461
+ #
1332
1462
  # @return [Types::CreateLocationHdfsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1333
1463
  #
1334
1464
  # * {Types::CreateLocationHdfsResponse#location_arn #location_arn} => String
@@ -1362,6 +1492,14 @@ module Aws::DataSync
1362
1492
  # value: "TagValue",
1363
1493
  # },
1364
1494
  # ],
1495
+ # cmk_secret_config: {
1496
+ # secret_arn: "SecretArn",
1497
+ # kms_key_arn: "KmsKeyArn",
1498
+ # },
1499
+ # custom_secret_config: {
1500
+ # secret_arn: "SecretArn",
1501
+ # secret_access_role_arn: "IamRoleArnOrEmptyString",
1502
+ # },
1365
1503
  # })
1366
1504
  #
1367
1505
  # @example Response structure
@@ -1563,7 +1701,8 @@ module Aws::DataSync
1563
1701
  # store the location access credentials.
1564
1702
  #
1565
1703
  # Make sure that DataSync has permission to access the KMS key that you
1566
- # specify.
1704
+ # specify. For more information, see [ Using a service-managed secret
1705
+ # encrypted with a custom KMS key][1].
1567
1706
  #
1568
1707
  # <note markdown="1"> You can use either `CmkSecretConfig` (with `SecretKey`) or
1569
1708
  # `CustomSecretConfig` (without `SecretKey`) to provide credentials for
@@ -1572,12 +1711,17 @@ module Aws::DataSync
1572
1711
  #
1573
1712
  # </note>
1574
1713
  #
1714
+ #
1715
+ #
1716
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/location-credentials.html#service-secret-custom-key
1717
+ #
1575
1718
  # @option params [Types::CustomSecretConfig] :custom_secret_config
1576
1719
  # Specifies configuration information for a customer-managed Secrets
1577
1720
  # Manager secret where the secret key for a specific object storage
1578
1721
  # location is stored in plain text, in Secrets Manager. This
1579
1722
  # configuration includes the secret ARN, and the ARN for an IAM role
1580
- # that provides access to the secret.
1723
+ # that provides access to the secret. For more information, see [ Using
1724
+ # a secret that you manage][1].
1581
1725
  #
1582
1726
  # <note markdown="1"> You can use either `CmkSecretConfig` (with `SecretKey`) or
1583
1727
  # `CustomSecretConfig` (without `SecretKey`) to provide credentials for
@@ -1586,6 +1730,10 @@ module Aws::DataSync
1586
1730
  #
1587
1731
  # </note>
1588
1732
  #
1733
+ #
1734
+ #
1735
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/location-credentials.html#custom-secret-custom-key
1736
+ #
1589
1737
  # @return [Types::CreateLocationObjectStorageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1590
1738
  #
1591
1739
  # * {Types::CreateLocationObjectStorageResponse#location_arn #location_arn} => String
@@ -1831,7 +1979,8 @@ module Aws::DataSync
1831
1979
  # store the location access credentials.
1832
1980
  #
1833
1981
  # Make sure that DataSync has permission to access the KMS key that you
1834
- # specify.
1982
+ # specify. For more information, see [ Using a service-managed secret
1983
+ # encrypted with a custom KMS key][1].
1835
1984
  #
1836
1985
  # <note markdown="1"> You can use either `CmkSecretConfig` (with either `Password` or
1837
1986
  # `KerberosKeytab`) or `CustomSecretConfig` (without any `Password` and
@@ -1842,12 +1991,17 @@ module Aws::DataSync
1842
1991
  #
1843
1992
  # </note>
1844
1993
  #
1994
+ #
1995
+ #
1996
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/location-credentials.html#service-secret-custom-key
1997
+ #
1845
1998
  # @option params [Types::CustomSecretConfig] :custom_secret_config
1846
1999
  # Specifies configuration information for a customer-managed Secrets
1847
2000
  # Manager secret where the SMB storage location credentials is stored in
1848
2001
  # Secrets Manager as plain text (for `Password`) or binary (for
1849
2002
  # `KerberosKeytab`). This configuration includes the secret ARN, and the
1850
- # ARN for an IAM role that provides access to the secret.
2003
+ # ARN for an IAM role that provides access to the secret. For more
2004
+ # information, see [ Using a secret that you manage][1].
1851
2005
  #
1852
2006
  # <note markdown="1"> You can use either `CmkSecretConfig` (with `SasConfiguration`) or
1853
2007
  # `CustomSecretConfig` (without `SasConfiguration`) to provide
@@ -1856,6 +2010,10 @@ module Aws::DataSync
1856
2010
  #
1857
2011
  # </note>
1858
2012
  #
2013
+ #
2014
+ #
2015
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/location-credentials.html#custom-secret-custom-key
2016
+ #
1859
2017
  # @option params [required, Array<String>] :agent_arns
1860
2018
  # Specifies the DataSync agent (or agents) that can connect to your SMB
1861
2019
  # file server. You specify an agent by using its Amazon Resource Name
@@ -2501,6 +2659,11 @@ module Aws::DataSync
2501
2659
  # resp.protocol.smb.mount_options.version #=> String, one of "AUTOMATIC", "SMB2", "SMB3", "SMB1", "SMB2_0"
2502
2660
  # resp.protocol.smb.password #=> String
2503
2661
  # resp.protocol.smb.user #=> String
2662
+ # resp.protocol.smb.managed_secret_config.secret_arn #=> String
2663
+ # resp.protocol.smb.cmk_secret_config.secret_arn #=> String
2664
+ # resp.protocol.smb.cmk_secret_config.kms_key_arn #=> String
2665
+ # resp.protocol.smb.custom_secret_config.secret_arn #=> String
2666
+ # resp.protocol.smb.custom_secret_config.secret_access_role_arn #=> String
2504
2667
  # resp.security_group_arns #=> Array
2505
2668
  # resp.security_group_arns[0] #=> String
2506
2669
  # resp.storage_virtual_machine_arn #=> String
@@ -2552,6 +2715,11 @@ module Aws::DataSync
2552
2715
  # resp.protocol.smb.mount_options.version #=> String, one of "AUTOMATIC", "SMB2", "SMB3", "SMB1", "SMB2_0"
2553
2716
  # resp.protocol.smb.password #=> String
2554
2717
  # resp.protocol.smb.user #=> String
2718
+ # resp.protocol.smb.managed_secret_config.secret_arn #=> String
2719
+ # resp.protocol.smb.cmk_secret_config.secret_arn #=> String
2720
+ # resp.protocol.smb.cmk_secret_config.kms_key_arn #=> String
2721
+ # resp.protocol.smb.custom_secret_config.secret_arn #=> String
2722
+ # resp.protocol.smb.custom_secret_config.secret_access_role_arn #=> String
2555
2723
  # resp.creation_time #=> Time
2556
2724
  #
2557
2725
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationFsxOpenZfs AWS API Documentation
@@ -2578,6 +2746,9 @@ module Aws::DataSync
2578
2746
  # * {Types::DescribeLocationFsxWindowsResponse#creation_time #creation_time} => Time
2579
2747
  # * {Types::DescribeLocationFsxWindowsResponse#user #user} => String
2580
2748
  # * {Types::DescribeLocationFsxWindowsResponse#domain #domain} => String
2749
+ # * {Types::DescribeLocationFsxWindowsResponse#managed_secret_config #managed_secret_config} => Types::ManagedSecretConfig
2750
+ # * {Types::DescribeLocationFsxWindowsResponse#cmk_secret_config #cmk_secret_config} => Types::CmkSecretConfig
2751
+ # * {Types::DescribeLocationFsxWindowsResponse#custom_secret_config #custom_secret_config} => Types::CustomSecretConfig
2581
2752
  #
2582
2753
  # @example Request syntax with placeholder values
2583
2754
  #
@@ -2594,6 +2765,11 @@ module Aws::DataSync
2594
2765
  # resp.creation_time #=> Time
2595
2766
  # resp.user #=> String
2596
2767
  # resp.domain #=> String
2768
+ # resp.managed_secret_config.secret_arn #=> String
2769
+ # resp.cmk_secret_config.secret_arn #=> String
2770
+ # resp.cmk_secret_config.kms_key_arn #=> String
2771
+ # resp.custom_secret_config.secret_arn #=> String
2772
+ # resp.custom_secret_config.secret_access_role_arn #=> String
2597
2773
  #
2598
2774
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationFsxWindows AWS API Documentation
2599
2775
  #
@@ -2624,6 +2800,9 @@ module Aws::DataSync
2624
2800
  # * {Types::DescribeLocationHdfsResponse#kerberos_principal #kerberos_principal} => String
2625
2801
  # * {Types::DescribeLocationHdfsResponse#agent_arns #agent_arns} => Array&lt;String&gt;
2626
2802
  # * {Types::DescribeLocationHdfsResponse#creation_time #creation_time} => Time
2803
+ # * {Types::DescribeLocationHdfsResponse#managed_secret_config #managed_secret_config} => Types::ManagedSecretConfig
2804
+ # * {Types::DescribeLocationHdfsResponse#cmk_secret_config #cmk_secret_config} => Types::CmkSecretConfig
2805
+ # * {Types::DescribeLocationHdfsResponse#custom_secret_config #custom_secret_config} => Types::CustomSecretConfig
2627
2806
  #
2628
2807
  # @example Request syntax with placeholder values
2629
2808
  #
@@ -2649,6 +2828,11 @@ module Aws::DataSync
2649
2828
  # resp.agent_arns #=> Array
2650
2829
  # resp.agent_arns[0] #=> String
2651
2830
  # resp.creation_time #=> Time
2831
+ # resp.managed_secret_config.secret_arn #=> String
2832
+ # resp.cmk_secret_config.secret_arn #=> String
2833
+ # resp.cmk_secret_config.kms_key_arn #=> String
2834
+ # resp.custom_secret_config.secret_arn #=> String
2835
+ # resp.custom_secret_config.secret_access_role_arn #=> String
2652
2836
  #
2653
2837
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationHdfs AWS API Documentation
2654
2838
  #
@@ -3731,7 +3915,8 @@ module Aws::DataSync
3731
3915
  # Specifies configuration information for a customer-managed secret,
3732
3916
  # such as an authentication token or set of credentials that DataSync
3733
3917
  # uses to access a specific transfer location, and a customer-managed
3734
- # KMS key.
3918
+ # Identity and Access Management (IAM) role that provides access to the
3919
+ # secret.
3735
3920
  #
3736
3921
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3737
3922
  #
@@ -3942,6 +4127,14 @@ module Aws::DataSync
3942
4127
  # },
3943
4128
  # password: "SmbPassword",
3944
4129
  # user: "SmbUser",
4130
+ # cmk_secret_config: {
4131
+ # secret_arn: "SecretArn",
4132
+ # kms_key_arn: "KmsKeyArn",
4133
+ # },
4134
+ # custom_secret_config: {
4135
+ # secret_arn: "SecretArn",
4136
+ # secret_access_role_arn: "IamRoleArnOrEmptyString",
4137
+ # },
3945
4138
  # },
3946
4139
  # },
3947
4140
  # subdirectory: "FsxOntapSubdirectory",
@@ -4002,8 +4195,19 @@ module Aws::DataSync
4002
4195
  # mount_options: {
4003
4196
  # version: "AUTOMATIC", # accepts AUTOMATIC, SMB2, SMB3, SMB1, SMB2_0
4004
4197
  # },
4005
- # password: "SmbPassword", # required
4198
+ # password: "SmbPassword",
4006
4199
  # user: "SmbUser", # required
4200
+ # managed_secret_config: {
4201
+ # secret_arn: "SecretArn",
4202
+ # },
4203
+ # cmk_secret_config: {
4204
+ # secret_arn: "SecretArn",
4205
+ # kms_key_arn: "KmsKeyArn",
4206
+ # },
4207
+ # custom_secret_config: {
4208
+ # secret_arn: "SecretArn",
4209
+ # secret_access_role_arn: "IamRoleArnOrEmptyString",
4210
+ # },
4007
4211
  # },
4008
4212
  # },
4009
4213
  # subdirectory: "SmbSubdirectory",
@@ -4064,6 +4268,17 @@ module Aws::DataSync
4064
4268
  # access the files, folders, and file metadata in your FSx for Windows
4065
4269
  # File Server file system.
4066
4270
  #
4271
+ # @option params [Types::CmkSecretConfig] :cmk_secret_config
4272
+ # Specifies configuration information for a DataSync-managed secret,
4273
+ # such as a `Password` or set of credentials that DataSync uses to
4274
+ # access a specific transfer location, and a customer-managed KMS key.
4275
+ #
4276
+ # @option params [Types::CustomSecretConfig] :custom_secret_config
4277
+ # Specifies configuration information for a customer-managed secret,
4278
+ # such as a `Password` or set of credentials that DataSync uses to
4279
+ # access a specific transfer location, and a customer-managed Identity
4280
+ # and Access Management (IAM) role that provides access to the secret.
4281
+ #
4067
4282
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4068
4283
  #
4069
4284
  # @example Request syntax with placeholder values
@@ -4074,6 +4289,14 @@ module Aws::DataSync
4074
4289
  # domain: "UpdateSmbDomain",
4075
4290
  # user: "SmbUser",
4076
4291
  # password: "SmbPassword",
4292
+ # cmk_secret_config: {
4293
+ # secret_arn: "SecretArn",
4294
+ # kms_key_arn: "KmsKeyArn",
4295
+ # },
4296
+ # custom_secret_config: {
4297
+ # secret_arn: "SecretArn",
4298
+ # secret_access_role_arn: "IamRoleArnOrEmptyString",
4299
+ # },
4077
4300
  # })
4078
4301
  #
4079
4302
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateLocationFsxWindows AWS API Documentation
@@ -4150,6 +4373,17 @@ module Aws::DataSync
4150
4373
  # The Amazon Resource Names (ARNs) of the DataSync agents that can
4151
4374
  # connect to your HDFS cluster.
4152
4375
  #
4376
+ # @option params [Types::CmkSecretConfig] :cmk_secret_config
4377
+ # Specifies configuration information for a DataSync-managed secret,
4378
+ # such as a `KerberosKeytab` or set of credentials that DataSync uses to
4379
+ # access a specific transfer location, and a customer-managed KMS key.
4380
+ #
4381
+ # @option params [Types::CustomSecretConfig] :custom_secret_config
4382
+ # Specifies configuration information for a customer-managed secret,
4383
+ # such as a `KerberosKeytab` or set of credentials that DataSync uses to
4384
+ # access a specific transfer location, and a customer-managed Identity
4385
+ # and Access Management (IAM) role that provides access to the secret.
4386
+ #
4153
4387
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4154
4388
  #
4155
4389
  # @example Request syntax with placeholder values
@@ -4176,6 +4410,14 @@ module Aws::DataSync
4176
4410
  # kerberos_keytab: "data",
4177
4411
  # kerberos_krb_5_conf: "data",
4178
4412
  # agent_arns: ["AgentArn"],
4413
+ # cmk_secret_config: {
4414
+ # secret_arn: "SecretArn",
4415
+ # kms_key_arn: "KmsKeyArn",
4416
+ # },
4417
+ # custom_secret_config: {
4418
+ # secret_arn: "SecretArn",
4419
+ # secret_access_role_arn: "IamRoleArnOrEmptyString",
4420
+ # },
4179
4421
  # })
4180
4422
  #
4181
4423
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateLocationHdfs AWS API Documentation
@@ -4345,7 +4587,8 @@ module Aws::DataSync
4345
4587
  # Specifies configuration information for a customer-managed secret,
4346
4588
  # such as an authentication token or set of credentials that DataSync
4347
4589
  # uses to access a specific transfer location, and a customer-managed
4348
- # KMS key.
4590
+ # Identity and Access Management (IAM) role that provides access to the
4591
+ # secret.
4349
4592
  #
4350
4593
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4351
4594
  #
@@ -4537,7 +4780,8 @@ module Aws::DataSync
4537
4780
  # Specifies configuration information for a customer-managed secret,
4538
4781
  # such as a `Password` or `KerberosKeytab` or set of credentials that
4539
4782
  # DataSync uses to access a specific transfer location, and a
4540
- # customer-managed KMS key.
4783
+ # customer-managed Identity and Access Management (IAM) role that
4784
+ # provides access to the secret.
4541
4785
  #
4542
4786
  # @option params [Array<String>] :agent_arns
4543
4787
  # Specifies the DataSync agent (or agents) that can connect to your SMB
@@ -4910,7 +5154,7 @@ module Aws::DataSync
4910
5154
  tracer: tracer
4911
5155
  )
4912
5156
  context[:gem_name] = 'aws-sdk-datasync'
4913
- context[:gem_version] = '1.119.0'
5157
+ context[:gem_version] = '1.120.0'
4914
5158
  Seahorse::Client::Request.new(handlers, context)
4915
5159
  end
4916
5160
 
@@ -395,7 +395,9 @@ module Aws::DataSync
395
395
  CreateLocationFsxWindowsRequest.add_member(:tags, Shapes::ShapeRef.new(shape: InputTagList, location_name: "Tags"))
396
396
  CreateLocationFsxWindowsRequest.add_member(:user, Shapes::ShapeRef.new(shape: SmbUser, required: true, location_name: "User"))
397
397
  CreateLocationFsxWindowsRequest.add_member(:domain, Shapes::ShapeRef.new(shape: SmbDomain, location_name: "Domain"))
398
- CreateLocationFsxWindowsRequest.add_member(:password, Shapes::ShapeRef.new(shape: SmbPassword, required: true, location_name: "Password"))
398
+ CreateLocationFsxWindowsRequest.add_member(:password, Shapes::ShapeRef.new(shape: SmbPassword, location_name: "Password"))
399
+ CreateLocationFsxWindowsRequest.add_member(:cmk_secret_config, Shapes::ShapeRef.new(shape: CmkSecretConfig, location_name: "CmkSecretConfig"))
400
+ CreateLocationFsxWindowsRequest.add_member(:custom_secret_config, Shapes::ShapeRef.new(shape: CustomSecretConfig, location_name: "CustomSecretConfig"))
399
401
  CreateLocationFsxWindowsRequest.struct_class = Types::CreateLocationFsxWindowsRequest
400
402
 
401
403
  CreateLocationFsxWindowsResponse.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, location_name: "LocationArn"))
@@ -414,6 +416,8 @@ module Aws::DataSync
414
416
  CreateLocationHdfsRequest.add_member(:kerberos_krb_5_conf, Shapes::ShapeRef.new(shape: KerberosKrb5ConfFile, location_name: "KerberosKrb5Conf"))
415
417
  CreateLocationHdfsRequest.add_member(:agent_arns, Shapes::ShapeRef.new(shape: AgentArnList, required: true, location_name: "AgentArns"))
416
418
  CreateLocationHdfsRequest.add_member(:tags, Shapes::ShapeRef.new(shape: InputTagList, location_name: "Tags"))
419
+ CreateLocationHdfsRequest.add_member(:cmk_secret_config, Shapes::ShapeRef.new(shape: CmkSecretConfig, location_name: "CmkSecretConfig"))
420
+ CreateLocationHdfsRequest.add_member(:custom_secret_config, Shapes::ShapeRef.new(shape: CustomSecretConfig, location_name: "CustomSecretConfig"))
417
421
  CreateLocationHdfsRequest.struct_class = Types::CreateLocationHdfsRequest
418
422
 
419
423
  CreateLocationHdfsResponse.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, location_name: "LocationArn"))
@@ -593,6 +597,9 @@ module Aws::DataSync
593
597
  DescribeLocationFsxWindowsResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Time, location_name: "CreationTime"))
594
598
  DescribeLocationFsxWindowsResponse.add_member(:user, Shapes::ShapeRef.new(shape: SmbUser, location_name: "User"))
595
599
  DescribeLocationFsxWindowsResponse.add_member(:domain, Shapes::ShapeRef.new(shape: SmbDomain, location_name: "Domain"))
600
+ DescribeLocationFsxWindowsResponse.add_member(:managed_secret_config, Shapes::ShapeRef.new(shape: ManagedSecretConfig, location_name: "ManagedSecretConfig"))
601
+ DescribeLocationFsxWindowsResponse.add_member(:cmk_secret_config, Shapes::ShapeRef.new(shape: CmkSecretConfig, location_name: "CmkSecretConfig"))
602
+ DescribeLocationFsxWindowsResponse.add_member(:custom_secret_config, Shapes::ShapeRef.new(shape: CustomSecretConfig, location_name: "CustomSecretConfig"))
596
603
  DescribeLocationFsxWindowsResponse.struct_class = Types::DescribeLocationFsxWindowsResponse
597
604
 
598
605
  DescribeLocationHdfsRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
@@ -610,6 +617,9 @@ module Aws::DataSync
610
617
  DescribeLocationHdfsResponse.add_member(:kerberos_principal, Shapes::ShapeRef.new(shape: KerberosPrincipal, location_name: "KerberosPrincipal"))
611
618
  DescribeLocationHdfsResponse.add_member(:agent_arns, Shapes::ShapeRef.new(shape: AgentArnList, location_name: "AgentArns"))
612
619
  DescribeLocationHdfsResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Time, location_name: "CreationTime"))
620
+ DescribeLocationHdfsResponse.add_member(:managed_secret_config, Shapes::ShapeRef.new(shape: ManagedSecretConfig, location_name: "ManagedSecretConfig"))
621
+ DescribeLocationHdfsResponse.add_member(:cmk_secret_config, Shapes::ShapeRef.new(shape: CmkSecretConfig, location_name: "CmkSecretConfig"))
622
+ DescribeLocationHdfsResponse.add_member(:custom_secret_config, Shapes::ShapeRef.new(shape: CustomSecretConfig, location_name: "CustomSecretConfig"))
613
623
  DescribeLocationHdfsResponse.struct_class = Types::DescribeLocationHdfsResponse
614
624
 
615
625
  DescribeLocationNfsRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
@@ -759,8 +769,11 @@ module Aws::DataSync
759
769
 
760
770
  FsxProtocolSmb.add_member(:domain, Shapes::ShapeRef.new(shape: SmbDomain, location_name: "Domain"))
761
771
  FsxProtocolSmb.add_member(:mount_options, Shapes::ShapeRef.new(shape: SmbMountOptions, location_name: "MountOptions"))
762
- FsxProtocolSmb.add_member(:password, Shapes::ShapeRef.new(shape: SmbPassword, required: true, location_name: "Password"))
772
+ FsxProtocolSmb.add_member(:password, Shapes::ShapeRef.new(shape: SmbPassword, location_name: "Password"))
763
773
  FsxProtocolSmb.add_member(:user, Shapes::ShapeRef.new(shape: SmbUser, required: true, location_name: "User"))
774
+ FsxProtocolSmb.add_member(:managed_secret_config, Shapes::ShapeRef.new(shape: ManagedSecretConfig, location_name: "ManagedSecretConfig"))
775
+ FsxProtocolSmb.add_member(:cmk_secret_config, Shapes::ShapeRef.new(shape: CmkSecretConfig, location_name: "CmkSecretConfig"))
776
+ FsxProtocolSmb.add_member(:custom_secret_config, Shapes::ShapeRef.new(shape: CustomSecretConfig, location_name: "CustomSecretConfig"))
764
777
  FsxProtocolSmb.struct_class = Types::FsxProtocolSmb
765
778
 
766
779
  FsxUpdateProtocol.add_member(:nfs, Shapes::ShapeRef.new(shape: FsxProtocolNfs, location_name: "NFS"))
@@ -771,6 +784,8 @@ module Aws::DataSync
771
784
  FsxUpdateProtocolSmb.add_member(:mount_options, Shapes::ShapeRef.new(shape: SmbMountOptions, location_name: "MountOptions"))
772
785
  FsxUpdateProtocolSmb.add_member(:password, Shapes::ShapeRef.new(shape: SmbPassword, location_name: "Password"))
773
786
  FsxUpdateProtocolSmb.add_member(:user, Shapes::ShapeRef.new(shape: SmbUser, location_name: "User"))
787
+ FsxUpdateProtocolSmb.add_member(:cmk_secret_config, Shapes::ShapeRef.new(shape: CmkSecretConfig, location_name: "CmkSecretConfig"))
788
+ FsxUpdateProtocolSmb.add_member(:custom_secret_config, Shapes::ShapeRef.new(shape: CustomSecretConfig, location_name: "CustomSecretConfig"))
774
789
  FsxUpdateProtocolSmb.struct_class = Types::FsxUpdateProtocolSmb
775
790
 
776
791
  HdfsNameNode.add_member(:hostname, Shapes::ShapeRef.new(shape: HdfsServerHostname, required: true, location_name: "Hostname"))
@@ -1089,6 +1104,8 @@ module Aws::DataSync
1089
1104
  UpdateLocationFsxWindowsRequest.add_member(:domain, Shapes::ShapeRef.new(shape: UpdateSmbDomain, location_name: "Domain"))
1090
1105
  UpdateLocationFsxWindowsRequest.add_member(:user, Shapes::ShapeRef.new(shape: SmbUser, location_name: "User"))
1091
1106
  UpdateLocationFsxWindowsRequest.add_member(:password, Shapes::ShapeRef.new(shape: SmbPassword, location_name: "Password"))
1107
+ UpdateLocationFsxWindowsRequest.add_member(:cmk_secret_config, Shapes::ShapeRef.new(shape: CmkSecretConfig, location_name: "CmkSecretConfig"))
1108
+ UpdateLocationFsxWindowsRequest.add_member(:custom_secret_config, Shapes::ShapeRef.new(shape: CustomSecretConfig, location_name: "CustomSecretConfig"))
1092
1109
  UpdateLocationFsxWindowsRequest.struct_class = Types::UpdateLocationFsxWindowsRequest
1093
1110
 
1094
1111
  UpdateLocationFsxWindowsResponse.struct_class = Types::UpdateLocationFsxWindowsResponse
@@ -1106,6 +1123,8 @@ module Aws::DataSync
1106
1123
  UpdateLocationHdfsRequest.add_member(:kerberos_keytab, Shapes::ShapeRef.new(shape: KerberosKeytabFile, location_name: "KerberosKeytab"))
1107
1124
  UpdateLocationHdfsRequest.add_member(:kerberos_krb_5_conf, Shapes::ShapeRef.new(shape: KerberosKrb5ConfFile, location_name: "KerberosKrb5Conf"))
1108
1125
  UpdateLocationHdfsRequest.add_member(:agent_arns, Shapes::ShapeRef.new(shape: AgentArnList, location_name: "AgentArns"))
1126
+ UpdateLocationHdfsRequest.add_member(:cmk_secret_config, Shapes::ShapeRef.new(shape: CmkSecretConfig, location_name: "CmkSecretConfig"))
1127
+ UpdateLocationHdfsRequest.add_member(:custom_secret_config, Shapes::ShapeRef.new(shape: CustomSecretConfig, location_name: "CustomSecretConfig"))
1109
1128
  UpdateLocationHdfsRequest.struct_class = Types::UpdateLocationHdfsRequest
1110
1129
 
1111
1130
  UpdateLocationHdfsResponse.struct_class = Types::UpdateLocationHdfsResponse