aws-cdk-lib 2.173.4__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.4.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.4.dist-info → aws_cdk_lib-2.174.0.dist-info}/LICENSE +1 -1
  84. {aws_cdk_lib-2.173.4.dist-info → aws_cdk_lib-2.174.0.dist-info}/METADATA +2 -2
  85. {aws_cdk_lib-2.173.4.dist-info → aws_cdk_lib-2.174.0.dist-info}/NOTICE +1 -1
  86. {aws_cdk_lib-2.173.4.dist-info → aws_cdk_lib-2.174.0.dist-info}/RECORD +88 -86
  87. {aws_cdk_lib-2.173.4.dist-info → aws_cdk_lib-2.174.0.dist-info}/WHEEL +0 -0
  88. {aws_cdk_lib-2.173.4.dist-info → aws_cdk_lib-2.174.0.dist-info}/top_level.txt +0 -0
@@ -424,7 +424,7 @@ class CfnCluster(
424
424
  :param data_tiering: Enables data tiering. Data tiering is only supported for clusters using the r6gd node type. This parameter must be set when using r6gd nodes. For more information, see `Data tiering <https://docs.aws.amazon.com/memorydb/latest/devguide/data-tiering.html>`_ .
425
425
  :param description: A description of the cluster .
426
426
  :param engine: The name of the engine used by the cluster.
427
- :param engine_version: The Valkey or Redis OSS engine version used by the cluster .
427
+ :param engine_version: The Redis engine version used by the cluster .
428
428
  :param final_snapshot_name: The user-supplied name of a final cluster snapshot. This is the unique name that identifies the snapshot. MemoryDB creates the snapshot, and then deletes the cluster immediately afterward.
429
429
  :param kms_key_id: The ID of the KMS key used to encrypt the cluster .
430
430
  :param maintenance_window: Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ``ddd:hh24:mi-ddd:hh24:mi`` (24H Clock UTC). The minimum maintenance window is a 60 minute period. *Pattern* : ``ddd:hh24:mi-ddd:hh24:mi``
@@ -685,7 +685,7 @@ class CfnCluster(
685
685
  @builtins.property
686
686
  @jsii.member(jsii_name="engineVersion")
687
687
  def engine_version(self) -> typing.Optional[builtins.str]:
688
- '''The Valkey or Redis OSS engine version used by the cluster .'''
688
+ '''The Redis engine version used by the cluster .'''
689
689
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "engineVersion"))
690
690
 
691
691
  @engine_version.setter
@@ -1083,7 +1083,7 @@ class CfnClusterProps:
1083
1083
  :param data_tiering: Enables data tiering. Data tiering is only supported for clusters using the r6gd node type. This parameter must be set when using r6gd nodes. For more information, see `Data tiering <https://docs.aws.amazon.com/memorydb/latest/devguide/data-tiering.html>`_ .
1084
1084
  :param description: A description of the cluster .
1085
1085
  :param engine: The name of the engine used by the cluster.
1086
- :param engine_version: The Valkey or Redis OSS engine version used by the cluster .
1086
+ :param engine_version: The Redis engine version used by the cluster .
1087
1087
  :param final_snapshot_name: The user-supplied name of a final cluster snapshot. This is the unique name that identifies the snapshot. MemoryDB creates the snapshot, and then deletes the cluster immediately afterward.
1088
1088
  :param kms_key_id: The ID of the KMS key used to encrypt the cluster .
1089
1089
  :param maintenance_window: Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ``ddd:hh24:mi-ddd:hh24:mi`` (24H Clock UTC). The minimum maintenance window is a 60 minute period. *Pattern* : ``ddd:hh24:mi-ddd:hh24:mi``
@@ -1316,7 +1316,7 @@ class CfnClusterProps:
1316
1316
 
1317
1317
  @builtins.property
1318
1318
  def engine_version(self) -> typing.Optional[builtins.str]:
1319
- '''The Valkey or Redis OSS engine version used by the cluster .
1319
+ '''The Redis engine version used by the cluster .
1320
1320
 
1321
1321
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-cluster.html#cfn-memorydb-cluster-engineversion
1322
1322
  '''
@@ -1579,12 +1579,12 @@ class CfnMultiRegionCluster(
1579
1579
  :param description: The description of the multi-Region cluster.
1580
1580
  :param engine: The name of the engine used by the multi-Region cluster.
1581
1581
  :param engine_version: The version of the engine used by the multi-Region cluster.
1582
- :param multi_region_cluster_name_suffix: The name of the Multi Region cluster. This value must be unique as it also serves as the multi region cluster identifier.
1582
+ :param multi_region_cluster_name_suffix: A suffix to be added to the Multi-Region cluster name. Amazon MemoryDB automatically applies a prefix to the Multi-Region cluster Name when it is created. Each Amazon Region has its own prefix. For instance, a Multi-Region cluster Name created in the US-West-1 region will begin with "virxk", along with the suffix name you provide. The suffix guarantees uniqueness of the Multi-Region cluster name across multiple regions.
1583
1583
  :param multi_region_parameter_group_name: The name of the multi-Region parameter group associated with the cluster.
1584
- :param num_shards: The number of shards the multi region cluster will contain.
1585
- :param tags: An array of key-value pairs to apply to this multi region cluster.
1584
+ :param num_shards: TBD.
1585
+ :param tags: A list of tags to be applied to the multi-Region cluster.
1586
1586
  :param tls_enabled: Indiciates if the multi-Region cluster is TLS enabled.
1587
- :param update_strategy: An enum string value that determines the update strategy for scaling. Possible values are 'COORDINATED' and 'UNCOORDINATED'. Default is 'COORDINATED'.
1587
+ :param update_strategy: The strategy to use for the update operation. Supported values are "coordinated" or "uncoordinated".
1588
1588
  '''
1589
1589
  if __debug__:
1590
1590
  type_hints = typing.get_type_hints(_typecheckingstub__f43e157f397efc77624c63e994d6c9b59f23c7e38e04f8e2e778cd657215b125)
@@ -1728,7 +1728,7 @@ class CfnMultiRegionCluster(
1728
1728
  @builtins.property
1729
1729
  @jsii.member(jsii_name="multiRegionClusterNameSuffix")
1730
1730
  def multi_region_cluster_name_suffix(self) -> typing.Optional[builtins.str]:
1731
- '''The name of the Multi Region cluster.'''
1731
+ '''A suffix to be added to the Multi-Region cluster name.'''
1732
1732
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "multiRegionClusterNameSuffix"))
1733
1733
 
1734
1734
  @multi_region_cluster_name_suffix.setter
@@ -1760,7 +1760,7 @@ class CfnMultiRegionCluster(
1760
1760
  @builtins.property
1761
1761
  @jsii.member(jsii_name="numShards")
1762
1762
  def num_shards(self) -> typing.Optional[jsii.Number]:
1763
- '''The number of shards the multi region cluster will contain.'''
1763
+ '''TBD.'''
1764
1764
  return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "numShards"))
1765
1765
 
1766
1766
  @num_shards.setter
@@ -1773,7 +1773,7 @@ class CfnMultiRegionCluster(
1773
1773
  @builtins.property
1774
1774
  @jsii.member(jsii_name="tags")
1775
1775
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
1776
- '''An array of key-value pairs to apply to this multi region cluster.'''
1776
+ '''A list of tags to be applied to the multi-Region cluster.'''
1777
1777
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
1778
1778
 
1779
1779
  @tags.setter
@@ -1804,7 +1804,7 @@ class CfnMultiRegionCluster(
1804
1804
  @builtins.property
1805
1805
  @jsii.member(jsii_name="updateStrategy")
1806
1806
  def update_strategy(self) -> typing.Optional[builtins.str]:
1807
- '''An enum string value that determines the update strategy for scaling.'''
1807
+ '''The strategy to use for the update operation.'''
1808
1808
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "updateStrategy"))
1809
1809
 
1810
1810
  @update_strategy.setter
@@ -1852,12 +1852,12 @@ class CfnMultiRegionClusterProps:
1852
1852
  :param description: The description of the multi-Region cluster.
1853
1853
  :param engine: The name of the engine used by the multi-Region cluster.
1854
1854
  :param engine_version: The version of the engine used by the multi-Region cluster.
1855
- :param multi_region_cluster_name_suffix: The name of the Multi Region cluster. This value must be unique as it also serves as the multi region cluster identifier.
1855
+ :param multi_region_cluster_name_suffix: A suffix to be added to the Multi-Region cluster name. Amazon MemoryDB automatically applies a prefix to the Multi-Region cluster Name when it is created. Each Amazon Region has its own prefix. For instance, a Multi-Region cluster Name created in the US-West-1 region will begin with "virxk", along with the suffix name you provide. The suffix guarantees uniqueness of the Multi-Region cluster name across multiple regions.
1856
1856
  :param multi_region_parameter_group_name: The name of the multi-Region parameter group associated with the cluster.
1857
- :param num_shards: The number of shards the multi region cluster will contain.
1858
- :param tags: An array of key-value pairs to apply to this multi region cluster.
1857
+ :param num_shards: TBD.
1858
+ :param tags: A list of tags to be applied to the multi-Region cluster.
1859
1859
  :param tls_enabled: Indiciates if the multi-Region cluster is TLS enabled.
1860
- :param update_strategy: An enum string value that determines the update strategy for scaling. Possible values are 'COORDINATED' and 'UNCOORDINATED'. Default is 'COORDINATED'.
1860
+ :param update_strategy: The strategy to use for the update operation. Supported values are "coordinated" or "uncoordinated".
1861
1861
 
1862
1862
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-multiregioncluster.html
1863
1863
  :exampleMetadata: fixture=_generated
@@ -1959,9 +1959,9 @@ class CfnMultiRegionClusterProps:
1959
1959
 
1960
1960
  @builtins.property
1961
1961
  def multi_region_cluster_name_suffix(self) -> typing.Optional[builtins.str]:
1962
- '''The name of the Multi Region cluster.
1962
+ '''A suffix to be added to the Multi-Region cluster name.
1963
1963
 
1964
- This value must be unique as it also serves as the multi region cluster identifier.
1964
+ Amazon MemoryDB automatically applies a prefix to the Multi-Region cluster Name when it is created. Each Amazon Region has its own prefix. For instance, a Multi-Region cluster Name created in the US-West-1 region will begin with "virxk", along with the suffix name you provide. The suffix guarantees uniqueness of the Multi-Region cluster name across multiple regions.
1965
1965
 
1966
1966
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-multiregioncluster.html#cfn-memorydb-multiregioncluster-multiregionclusternamesuffix
1967
1967
  '''
@@ -1979,7 +1979,7 @@ class CfnMultiRegionClusterProps:
1979
1979
 
1980
1980
  @builtins.property
1981
1981
  def num_shards(self) -> typing.Optional[jsii.Number]:
1982
- '''The number of shards the multi region cluster will contain.
1982
+ '''TBD.
1983
1983
 
1984
1984
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-multiregioncluster.html#cfn-memorydb-multiregioncluster-numshards
1985
1985
  '''
@@ -1988,7 +1988,7 @@ class CfnMultiRegionClusterProps:
1988
1988
 
1989
1989
  @builtins.property
1990
1990
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
1991
- '''An array of key-value pairs to apply to this multi region cluster.
1991
+ '''A list of tags to be applied to the multi-Region cluster.
1992
1992
 
1993
1993
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-multiregioncluster.html#cfn-memorydb-multiregioncluster-tags
1994
1994
  '''
@@ -2008,9 +2008,9 @@ class CfnMultiRegionClusterProps:
2008
2008
 
2009
2009
  @builtins.property
2010
2010
  def update_strategy(self) -> typing.Optional[builtins.str]:
2011
- '''An enum string value that determines the update strategy for scaling.
2011
+ '''The strategy to use for the update operation.
2012
2012
 
2013
- Possible values are 'COORDINATED' and 'UNCOORDINATED'. Default is 'COORDINATED'.
2013
+ Supported values are "coordinated" or "uncoordinated".
2014
2014
 
2015
2015
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-multiregioncluster.html#cfn-memorydb-multiregioncluster-updatestrategy
2016
2016
  '''