aws-cdk-lib 2.173.3__py3-none-any.whl → 2.174.0__py3-none-any.whl

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.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (88) hide show
  1. aws_cdk/__init__.py +210 -181
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.173.3.jsii.tgz → aws-cdk-lib@2.174.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +127 -168
  5. aws_cdk/aws_appconfig/__init__.py +498 -1
  6. aws_cdk/aws_applicationautoscaling/__init__.py +4 -1
  7. aws_cdk/aws_appsync/__init__.py +4 -0
  8. aws_cdk/aws_autoscaling/__init__.py +96 -0
  9. aws_cdk/aws_batch/__init__.py +1084 -233
  10. aws_cdk/aws_bedrock/__init__.py +2119 -181
  11. aws_cdk/aws_cassandra/__init__.py +476 -4
  12. aws_cdk/aws_cleanrooms/__init__.py +543 -17
  13. aws_cdk/aws_cloudformation/__init__.py +172 -169
  14. aws_cdk/aws_cloudfront/__init__.py +773 -26
  15. aws_cdk/aws_cloudtrail/__init__.py +8 -2
  16. aws_cdk/aws_codebuild/__init__.py +83 -0
  17. aws_cdk/aws_codepipeline/__init__.py +2 -1
  18. aws_cdk/aws_cognito/__init__.py +232 -200
  19. aws_cdk/aws_connect/__init__.py +187 -36
  20. aws_cdk/aws_connectcampaignsv2/__init__.py +106 -12
  21. aws_cdk/aws_databrew/__init__.py +69 -1
  22. aws_cdk/aws_datasync/__init__.py +33 -28
  23. aws_cdk/aws_datazone/__init__.py +141 -41
  24. aws_cdk/aws_dlm/__init__.py +20 -10
  25. aws_cdk/aws_dms/__init__.py +722 -30
  26. aws_cdk/aws_dynamodb/__init__.py +76 -4
  27. aws_cdk/aws_ec2/__init__.py +1233 -65
  28. aws_cdk/aws_ecr/__init__.py +31 -0
  29. aws_cdk/aws_ecr_assets/__init__.py +5 -0
  30. aws_cdk/aws_ecs/__init__.py +88 -11
  31. aws_cdk/aws_efs/__init__.py +15 -8
  32. aws_cdk/aws_eks/__init__.py +114 -45
  33. aws_cdk/aws_elasticloadbalancingv2/__init__.py +2 -2
  34. aws_cdk/aws_emrserverless/__init__.py +143 -0
  35. aws_cdk/aws_events/__init__.py +50 -30
  36. aws_cdk/aws_fis/__init__.py +33 -33
  37. aws_cdk/aws_fsx/__init__.py +20 -10
  38. aws_cdk/aws_glue/__init__.py +34 -11
  39. aws_cdk/aws_greengrass/__init__.py +8 -8
  40. aws_cdk/aws_guardduty/__init__.py +1 -1
  41. aws_cdk/aws_imagebuilder/__init__.py +45 -47
  42. aws_cdk/aws_internetmonitor/__init__.py +3 -3
  43. aws_cdk/aws_invoicing/__init__.py +55 -30
  44. aws_cdk/aws_iot/__init__.py +1117 -4
  45. aws_cdk/aws_iot1click/__init__.py +17 -7
  46. aws_cdk/aws_kendra/__init__.py +4 -6
  47. aws_cdk/aws_lambda/__init__.py +15 -1
  48. aws_cdk/aws_logs/__init__.py +4011 -86
  49. aws_cdk/aws_m2/__init__.py +41 -0
  50. aws_cdk/aws_mediaconnect/__init__.py +202 -7
  51. aws_cdk/aws_memorydb/__init__.py +22 -22
  52. aws_cdk/aws_networkmanager/__init__.py +758 -0
  53. aws_cdk/aws_opensearchservice/__init__.py +222 -0
  54. aws_cdk/aws_organizations/__init__.py +5 -3
  55. aws_cdk/aws_pcs/__init__.py +3038 -0
  56. aws_cdk/aws_pipes/__init__.py +10 -10
  57. aws_cdk/aws_qbusiness/__init__.py +415 -140
  58. aws_cdk/aws_quicksight/__init__.py +15932 -6448
  59. aws_cdk/aws_ram/__init__.py +5 -11
  60. aws_cdk/aws_rbin/__init__.py +28 -16
  61. aws_cdk/aws_rds/__init__.py +184 -24
  62. aws_cdk/aws_redshiftserverless/__init__.py +156 -0
  63. aws_cdk/aws_resiliencehub/__init__.py +2 -1
  64. aws_cdk/aws_route53_targets/__init__.py +5 -5
  65. aws_cdk/aws_s3/__init__.py +25 -15
  66. aws_cdk/aws_s3express/__init__.py +7 -7
  67. aws_cdk/aws_s3tables/__init__.py +683 -0
  68. aws_cdk/aws_sagemaker/__init__.py +574 -189
  69. aws_cdk/aws_secretsmanager/__init__.py +2 -0
  70. aws_cdk/aws_securityhub/__init__.py +41 -165
  71. aws_cdk/aws_servicediscovery/__init__.py +10 -3
  72. aws_cdk/aws_ses/__init__.py +190 -5
  73. aws_cdk/aws_sns/__init__.py +7 -3
  74. aws_cdk/aws_synthetics/__init__.py +29 -4
  75. aws_cdk/aws_transfer/__init__.py +8 -0
  76. aws_cdk/aws_vpclattice/__init__.py +147 -77
  77. aws_cdk/aws_wafv2/__init__.py +20 -8
  78. aws_cdk/aws_wisdom/__init__.py +162 -111
  79. aws_cdk/aws_workspaces/__init__.py +10 -4
  80. aws_cdk/cloud_assembly_schema/__init__.py +22 -0
  81. aws_cdk/custom_resources/__init__.py +31 -0
  82. aws_cdk/cx_api/__init__.py +19 -0
  83. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/LICENSE +1 -1
  84. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/METADATA +2 -2
  85. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/NOTICE +1 -1
  86. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/RECORD +88 -86
  87. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/WHEEL +0 -0
  88. {aws_cdk_lib-2.173.3.dist-info → aws_cdk_lib-2.174.0.dist-info}/top_level.txt +0 -0
@@ -1017,7 +1017,7 @@ class CfnLocationEFS(
1017
1017
  :param efs_filesystem_arn: Specifies the ARN for your Amazon EFS file system.
1018
1018
  :param file_system_access_role_arn: Specifies an AWS Identity and Access Management (IAM) role that allows DataSync to access your Amazon EFS file system. For information on creating this role, see `Creating a DataSync IAM role for file system access <https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam-role>`_ .
1019
1019
  :param in_transit_encryption: Specifies whether you want DataSync to use Transport Layer Security (TLS) 1.2 encryption when it transfers data to or from your Amazon EFS file system. If you specify an access point using ``AccessPointArn`` or an IAM role using ``FileSystemAccessRoleArn`` , you must set this parameter to ``TLS1_2`` .
1020
- :param subdirectory: 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) on your file system. By default, DataSync uses the root directory (or `access point <https://docs.aws.amazon.com/efs/latest/ug/efs-access-points.html>`_ if you provide one by using ``AccessPointArn`` ). You can also include subdirectories using forward slashes (for example, ``/path/to/folder`` ).
1020
+ :param subdirectory: 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). By default, DataSync uses the root directory (or `access point <https://docs.aws.amazon.com/efs/latest/ug/efs-access-points.html>`_ if you provide one by using ``AccessPointArn`` ). You can also include subdirectories using forward slashes (for example, ``/path/to/folder`` ).
1021
1021
  :param tags: Specifies the key-value pair that represents a tag that you want to add to the resource. The value can be an empty string. This value helps you manage, filter, and search for your resources. We recommend that you create a name tag for your location.
1022
1022
  '''
1023
1023
  if __debug__:
@@ -1307,7 +1307,7 @@ class CfnLocationEFSProps:
1307
1307
  :param efs_filesystem_arn: Specifies the ARN for your Amazon EFS file system.
1308
1308
  :param file_system_access_role_arn: Specifies an AWS Identity and Access Management (IAM) role that allows DataSync to access your Amazon EFS file system. For information on creating this role, see `Creating a DataSync IAM role for file system access <https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html#create-efs-location-iam-role>`_ .
1309
1309
  :param in_transit_encryption: Specifies whether you want DataSync to use Transport Layer Security (TLS) 1.2 encryption when it transfers data to or from your Amazon EFS file system. If you specify an access point using ``AccessPointArn`` or an IAM role using ``FileSystemAccessRoleArn`` , you must set this parameter to ``TLS1_2`` .
1310
- :param subdirectory: 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) on your file system. By default, DataSync uses the root directory (or `access point <https://docs.aws.amazon.com/efs/latest/ug/efs-access-points.html>`_ if you provide one by using ``AccessPointArn`` ). You can also include subdirectories using forward slashes (for example, ``/path/to/folder`` ).
1310
+ :param subdirectory: 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). By default, DataSync uses the root directory (or `access point <https://docs.aws.amazon.com/efs/latest/ug/efs-access-points.html>`_ if you provide one by using ``AccessPointArn`` ). You can also include subdirectories using forward slashes (for example, ``/path/to/folder`` ).
1311
1311
  :param tags: Specifies the key-value pair that represents a tag that you want to add to the resource. The value can be an empty string. This value helps you manage, filter, and search for your resources. We recommend that you create a name tag for your location.
1312
1312
 
1313
1313
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationefs.html
@@ -1420,7 +1420,7 @@ class CfnLocationEFSProps:
1420
1420
  def subdirectory(self) -> typing.Optional[builtins.str]:
1421
1421
  '''Specifies a mount path for your Amazon EFS file system.
1422
1422
 
1423
- This is where DataSync reads or writes data (depending on if this is a source or destination location) on your file system.
1423
+ This is where DataSync reads or writes data on your file system (depending on if this is a source or destination location).
1424
1424
 
1425
1425
  By default, DataSync uses the root directory (or `access point <https://docs.aws.amazon.com/efs/latest/ug/efs-access-points.html>`_ if you provide one by using ``AccessPointArn`` ). You can also include subdirectories using forward slashes (for example, ``/path/to/folder`` ).
1426
1426
 
@@ -1497,9 +1497,9 @@ class CfnLocationFSxLustre(
1497
1497
  :param scope: Scope in which this resource is defined.
1498
1498
  :param id: Construct identifier for this resource (unique in its scope).
1499
1499
  :param security_group_arns: The ARNs of the security groups that are used to configure the FSx for Lustre file system. *Pattern* : ``^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):ec2:[a-z\\-0-9]*:[0-9]{12}:security-group/.*$`` *Length constraints* : Maximum length of 128.
1500
- :param fsx_filesystem_arn: The Amazon Resource Name (ARN) for the FSx for Lustre file system.
1501
- :param subdirectory: A subdirectory in the location's path. This subdirectory in the FSx for Lustre file system is used to read data from the FSx for Lustre source location or write data to the FSx for Lustre destination.
1502
- :param tags: The key-value pair that represents a tag that you want to add to the resource. The value can be an empty string. This value helps you manage, filter, and search for your resources. We recommend that you create a name tag for your location.
1500
+ :param fsx_filesystem_arn: Specifies the Amazon Resource Name (ARN) of the FSx for Lustre file system.
1501
+ :param subdirectory: Specifies a mount path for your FSx for Lustre file system. The path can include subdirectories. 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 ( ``/`` ).
1502
+ :param tags: Specifies labels that help you categorize, filter, and search for your AWS resources. We recommend creating at least a name tag for your location.
1503
1503
  '''
1504
1504
  if __debug__:
1505
1505
  type_hints = typing.get_type_hints(_typecheckingstub__f6a366fbae202f0039019565ac7d26837d23db858eddf6c8193ddf4bd207f597)
@@ -1589,7 +1589,7 @@ class CfnLocationFSxLustre(
1589
1589
  @builtins.property
1590
1590
  @jsii.member(jsii_name="fsxFilesystemArn")
1591
1591
  def fsx_filesystem_arn(self) -> typing.Optional[builtins.str]:
1592
- '''The Amazon Resource Name (ARN) for the FSx for Lustre file system.'''
1592
+ '''Specifies the Amazon Resource Name (ARN) of the FSx for Lustre file system.'''
1593
1593
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "fsxFilesystemArn"))
1594
1594
 
1595
1595
  @fsx_filesystem_arn.setter
@@ -1602,7 +1602,10 @@ class CfnLocationFSxLustre(
1602
1602
  @builtins.property
1603
1603
  @jsii.member(jsii_name="subdirectory")
1604
1604
  def subdirectory(self) -> typing.Optional[builtins.str]:
1605
- '''A subdirectory in the location's path.'''
1605
+ '''Specifies a mount path for your FSx for Lustre file system.
1606
+
1607
+ The path can include subdirectories.
1608
+ '''
1606
1609
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "subdirectory"))
1607
1610
 
1608
1611
  @subdirectory.setter
@@ -1615,7 +1618,7 @@ class CfnLocationFSxLustre(
1615
1618
  @builtins.property
1616
1619
  @jsii.member(jsii_name="tagsRaw")
1617
1620
  def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
1618
- '''The key-value pair that represents a tag that you want to add to the resource.'''
1621
+ '''Specifies labels that help you categorize, filter, and search for your AWS resources.'''
1619
1622
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tagsRaw"))
1620
1623
 
1621
1624
  @tags_raw.setter
@@ -1648,9 +1651,9 @@ class CfnLocationFSxLustreProps:
1648
1651
  '''Properties for defining a ``CfnLocationFSxLustre``.
1649
1652
 
1650
1653
  :param security_group_arns: The ARNs of the security groups that are used to configure the FSx for Lustre file system. *Pattern* : ``^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):ec2:[a-z\\-0-9]*:[0-9]{12}:security-group/.*$`` *Length constraints* : Maximum length of 128.
1651
- :param fsx_filesystem_arn: The Amazon Resource Name (ARN) for the FSx for Lustre file system.
1652
- :param subdirectory: A subdirectory in the location's path. This subdirectory in the FSx for Lustre file system is used to read data from the FSx for Lustre source location or write data to the FSx for Lustre destination.
1653
- :param tags: The key-value pair that represents a tag that you want to add to the resource. The value can be an empty string. This value helps you manage, filter, and search for your resources. We recommend that you create a name tag for your location.
1654
+ :param fsx_filesystem_arn: Specifies the Amazon Resource Name (ARN) of the FSx for Lustre file system.
1655
+ :param subdirectory: Specifies a mount path for your FSx for Lustre file system. The path can include subdirectories. 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 ( ``/`` ).
1656
+ :param tags: Specifies labels that help you categorize, filter, and search for your AWS resources. We recommend creating at least a name tag for your location.
1654
1657
 
1655
1658
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html
1656
1659
  :exampleMetadata: fixture=_generated
@@ -1705,7 +1708,7 @@ class CfnLocationFSxLustreProps:
1705
1708
 
1706
1709
  @builtins.property
1707
1710
  def fsx_filesystem_arn(self) -> typing.Optional[builtins.str]:
1708
- '''The Amazon Resource Name (ARN) for the FSx for Lustre file system.
1711
+ '''Specifies the Amazon Resource Name (ARN) of the FSx for Lustre file system.
1709
1712
 
1710
1713
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-fsxfilesystemarn
1711
1714
  '''
@@ -1714,9 +1717,9 @@ class CfnLocationFSxLustreProps:
1714
1717
 
1715
1718
  @builtins.property
1716
1719
  def subdirectory(self) -> typing.Optional[builtins.str]:
1717
- '''A subdirectory in the location's path.
1720
+ '''Specifies a mount path for your FSx for Lustre file system. The path can include subdirectories.
1718
1721
 
1719
- This subdirectory in the FSx for Lustre file system is used to read data from the FSx for Lustre source location or write data to the FSx for Lustre destination.
1722
+ 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 ( ``/`` ).
1720
1723
 
1721
1724
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-subdirectory
1722
1725
  '''
@@ -1725,9 +1728,9 @@ class CfnLocationFSxLustreProps:
1725
1728
 
1726
1729
  @builtins.property
1727
1730
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
1728
- '''The key-value pair that represents a tag that you want to add to the resource.
1731
+ '''Specifies labels that help you categorize, filter, and search for your AWS resources.
1729
1732
 
1730
- The value can be an empty string. This value helps you manage, filter, and search for your resources. We recommend that you create a name tag for your location.
1733
+ We recommend creating at least a name tag for your location.
1731
1734
 
1732
1735
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-tags
1733
1736
  '''
@@ -1813,7 +1816,7 @@ class CfnLocationFSxONTAP(
1813
1816
  :param security_group_arns: Specifies the Amazon Resource Names (ARNs) of the security groups that DataSync can use to access your FSx for ONTAP file system. You must configure the security groups to allow outbound traffic on the following ports (depending on the protocol that you're using): - *Network File System (NFS)* : TCP ports 111, 635, and 2049 - *Server Message Block (SMB)* : TCP port 445 Your file system's security groups must also allow inbound traffic on the same port.
1814
1817
  :param storage_virtual_machine_arn: Specifies the ARN of the storage virtual machine (SVM) in your file system where you want to copy data to or from.
1815
1818
  :param protocol: Specifies the data transfer protocol that DataSync uses to access your Amazon FSx file system.
1816
- :param subdirectory: Specifies a path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares). For example, your mount path might be ``/vol1`` , ``/vol1/tree1`` , or ``/share1`` . .. epigraph:: Don't specify a junction path in the SVM's root volume. For more information, see `Managing FSx for ONTAP storage virtual machines <https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/managing-svms.html>`_ in the *Amazon FSx for NetApp ONTAP User Guide* .
1819
+ :param subdirectory: Specifies a path to the file share in the SVM where you want to transfer data to or from. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares). For example, your mount path might be ``/vol1`` , ``/vol1/tree1`` , or ``/share1`` . .. epigraph:: Don't specify a junction path in the SVM's root volume. For more information, see `Managing FSx for ONTAP storage virtual machines <https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/managing-svms.html>`_ in the *Amazon FSx for NetApp ONTAP User Guide* .
1817
1820
  :param tags: Specifies labels that help you categorize, filter, and search for your AWS resources. We recommend creating at least a name tag for your location.
1818
1821
  '''
1819
1822
  if __debug__:
@@ -1945,7 +1948,7 @@ class CfnLocationFSxONTAP(
1945
1948
  @builtins.property
1946
1949
  @jsii.member(jsii_name="subdirectory")
1947
1950
  def subdirectory(self) -> typing.Optional[builtins.str]:
1948
- '''Specifies a path to the file share in the SVM where you'll copy your data.'''
1951
+ '''Specifies a path to the file share in the SVM where you want to transfer data to or from.'''
1949
1952
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "subdirectory"))
1950
1953
 
1951
1954
  @subdirectory.setter
@@ -2207,7 +2210,7 @@ class CfnLocationFSxONTAP(
2207
2210
  :param mount_options: Specifies how DataSync can access a location using the SMB protocol.
2208
2211
  :param password: Specifies the password of a user who has permission to access your SVM.
2209
2212
  :param user: Specifies a user name that can mount the location and access the files, folders, and metadata that you need in the SVM. If you provide a user in your Active Directory, note the following: - If you're using AWS Directory Service for Microsoft Active Directory , the user must be a member of the AWS Delegated FSx Administrators group. - If you're using a self-managed Active Directory, the user must be a member of either the Domain Admins group or a custom group that you specified for file system administration when you created your file system. Make sure that the user has the permissions it needs to copy the data you want: - ``SE_TCB_NAME`` : Required to set object ownership and file metadata. With this privilege, you also can copy NTFS discretionary access lists (DACLs). - ``SE_SECURITY_NAME`` : May be needed to copy NTFS system access control lists (SACLs). This operation specifically requires the Windows privilege, which is granted to members of the Domain Admins group. If you configure your task to copy SACLs, make sure that the user has the required privileges. For information about copying SACLs, see `Ownership and permissions-related options <https://docs.aws.amazon.com/datasync/latest/userguide/create-task.html#configure-ownership-and-permissions>`_ .
2210
- :param domain: Specifies the fully qualified domain name (FQDN) of the Microsoft Active Directory that your storage virtual machine (SVM) belongs to. If you have multiple domains in your environment, configuring this setting makes sure that DataSync connects to the right SVM.
2213
+ :param domain: Specifies the name of the Windows domain that your storage virtual machine (SVM) belongs to. If you have multiple domains in your environment, configuring this setting makes sure that DataSync connects to the right SVM. If you have multiple Active Directory domains in your environment, configuring this parameter makes sure that DataSync connects to the right SVM.
2211
2214
 
2212
2215
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationfsxontap-smb.html
2213
2216
  :exampleMetadata: fixture=_generated
@@ -2287,10 +2290,12 @@ class CfnLocationFSxONTAP(
2287
2290
 
2288
2291
  @builtins.property
2289
2292
  def domain(self) -> typing.Optional[builtins.str]:
2290
- '''Specifies the fully qualified domain name (FQDN) of the Microsoft Active Directory that your storage virtual machine (SVM) belongs to.
2293
+ '''Specifies the name of the Windows domain that your storage virtual machine (SVM) belongs to.
2291
2294
 
2292
2295
  If you have multiple domains in your environment, configuring this setting makes sure that DataSync connects to the right SVM.
2293
2296
 
2297
+ If you have multiple Active Directory domains in your environment, configuring this parameter makes sure that DataSync connects to the right SVM.
2298
+
2294
2299
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationfsxontap-smb.html#cfn-datasync-locationfsxontap-smb-domain
2295
2300
  '''
2296
2301
  result = self._values.get("domain")
@@ -2402,7 +2407,7 @@ class CfnLocationFSxONTAPProps:
2402
2407
  :param security_group_arns: Specifies the Amazon Resource Names (ARNs) of the security groups that DataSync can use to access your FSx for ONTAP file system. You must configure the security groups to allow outbound traffic on the following ports (depending on the protocol that you're using): - *Network File System (NFS)* : TCP ports 111, 635, and 2049 - *Server Message Block (SMB)* : TCP port 445 Your file system's security groups must also allow inbound traffic on the same port.
2403
2408
  :param storage_virtual_machine_arn: Specifies the ARN of the storage virtual machine (SVM) in your file system where you want to copy data to or from.
2404
2409
  :param protocol: Specifies the data transfer protocol that DataSync uses to access your Amazon FSx file system.
2405
- :param subdirectory: Specifies a path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares). For example, your mount path might be ``/vol1`` , ``/vol1/tree1`` , or ``/share1`` . .. epigraph:: Don't specify a junction path in the SVM's root volume. For more information, see `Managing FSx for ONTAP storage virtual machines <https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/managing-svms.html>`_ in the *Amazon FSx for NetApp ONTAP User Guide* .
2410
+ :param subdirectory: Specifies a path to the file share in the SVM where you want to transfer data to or from. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares). For example, your mount path might be ``/vol1`` , ``/vol1/tree1`` , or ``/share1`` . .. epigraph:: Don't specify a junction path in the SVM's root volume. For more information, see `Managing FSx for ONTAP storage virtual machines <https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/managing-svms.html>`_ in the *Amazon FSx for NetApp ONTAP User Guide* .
2406
2411
  :param tags: Specifies labels that help you categorize, filter, and search for your AWS resources. We recommend creating at least a name tag for your location.
2407
2412
 
2408
2413
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxontap.html
@@ -2501,7 +2506,7 @@ class CfnLocationFSxONTAPProps:
2501
2506
 
2502
2507
  @builtins.property
2503
2508
  def subdirectory(self) -> typing.Optional[builtins.str]:
2504
- '''Specifies a path to the file share in the SVM where you'll copy your data.
2509
+ '''Specifies a path to the file share in the SVM where you want to transfer data to or from.
2505
2510
 
2506
2511
  You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares). For example, your mount path might be ``/vol1`` , ``/vol1/tree1`` , or ``/share1`` .
2507
2512
  .. epigraph::
@@ -3114,7 +3119,7 @@ class CfnLocationFSxWindows(
3114
3119
  :param id: Construct identifier for this resource (unique in its scope).
3115
3120
  :param security_group_arns: The Amazon Resource Names (ARNs) of the security groups that are used to configure the FSx for Windows File Server file system. *Pattern* : ``^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):ec2:[a-z\\-0-9]*:[0-9]{12}:security-group/.*$`` *Length constraints* : Maximum length of 128.
3116
3121
  :param user: The user who has the permissions to access files and folders in the FSx for Windows File Server file system. For information about choosing a user name that ensures sufficient permissions to files, folders, and metadata, see `user <https://docs.aws.amazon.com/datasync/latest/userguide/create-fsx-location.html#FSxWuser>`_ .
3117
- :param domain: Specifies the name of the Microsoft Active Directory domain that the FSx for Windows File Server file system belongs to. If you have multiple Active Directory domains in your environment, configuring this parameter makes sure that DataSync connects to the right file system.
3122
+ :param domain: Specifies the name of the Windows domain that the FSx for Windows File Server file system belongs to. If you have multiple Active Directory domains in your environment, configuring this parameter makes sure that DataSync connects to the right file system.
3118
3123
  :param fsx_filesystem_arn: Specifies the Amazon Resource Name (ARN) for the FSx for Windows File Server file system.
3119
3124
  :param password: Specifies the password of the user with the permissions to mount and access the files, folders, and file metadata in your FSx for Windows File Server file system.
3120
3125
  :param subdirectory: Specifies a mount path for your file system using forward slashes. This is where DataSync reads or writes data (depending on if this is a source or destination location).
@@ -3224,7 +3229,7 @@ class CfnLocationFSxWindows(
3224
3229
  @builtins.property
3225
3230
  @jsii.member(jsii_name="domain")
3226
3231
  def domain(self) -> typing.Optional[builtins.str]:
3227
- '''Specifies the name of the Microsoft Active Directory domain that the FSx for Windows File Server file system belongs to.'''
3232
+ '''Specifies the name of the Windows domain that the FSx for Windows File Server file system belongs to.'''
3228
3233
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "domain"))
3229
3234
 
3230
3235
  @domain.setter
@@ -3316,7 +3321,7 @@ class CfnLocationFSxWindowsProps:
3316
3321
 
3317
3322
  :param security_group_arns: The Amazon Resource Names (ARNs) of the security groups that are used to configure the FSx for Windows File Server file system. *Pattern* : ``^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):ec2:[a-z\\-0-9]*:[0-9]{12}:security-group/.*$`` *Length constraints* : Maximum length of 128.
3318
3323
  :param user: The user who has the permissions to access files and folders in the FSx for Windows File Server file system. For information about choosing a user name that ensures sufficient permissions to files, folders, and metadata, see `user <https://docs.aws.amazon.com/datasync/latest/userguide/create-fsx-location.html#FSxWuser>`_ .
3319
- :param domain: Specifies the name of the Microsoft Active Directory domain that the FSx for Windows File Server file system belongs to. If you have multiple Active Directory domains in your environment, configuring this parameter makes sure that DataSync connects to the right file system.
3324
+ :param domain: Specifies the name of the Windows domain that the FSx for Windows File Server file system belongs to. If you have multiple Active Directory domains in your environment, configuring this parameter makes sure that DataSync connects to the right file system.
3320
3325
  :param fsx_filesystem_arn: Specifies the Amazon Resource Name (ARN) for the FSx for Windows File Server file system.
3321
3326
  :param password: Specifies the password of the user with the permissions to mount and access the files, folders, and file metadata in your FSx for Windows File Server file system.
3322
3327
  :param subdirectory: Specifies a mount path for your file system using forward slashes. This is where DataSync reads or writes data (depending on if this is a source or destination location).
@@ -3398,7 +3403,7 @@ class CfnLocationFSxWindowsProps:
3398
3403
 
3399
3404
  @builtins.property
3400
3405
  def domain(self) -> typing.Optional[builtins.str]:
3401
- '''Specifies the name of the Microsoft Active Directory domain that the FSx for Windows File Server file system belongs to.
3406
+ '''Specifies the name of the Windows domain that the FSx for Windows File Server file system belongs to.
3402
3407
 
3403
3408
  If you have multiple Active Directory domains in your environment, configuring this parameter makes sure that DataSync connects to the right file system.
3404
3409
 
@@ -5422,7 +5427,7 @@ class CfnLocationS3(
5422
5427
  def __init__(self, *, bucket_access_role_arn: builtins.str) -> None:
5423
5428
  '''Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that DataSync uses to access your S3 bucket.
5424
5429
 
5425
- For more information, see `Accessing S3 buckets <https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access>`_ .
5430
+ For more information, see `Providing DataSync access to S3 buckets <https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-access>`_ .
5426
5431
 
5427
5432
  :param bucket_access_role_arn: Specifies the ARN of the IAM role that DataSync uses to access your S3 bucket.
5428
5433