aws-cdk-lib 2.114.0__py3-none-any.whl → 2.115.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 (47) hide show
  1. aws_cdk/__init__.py +7 -1
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.114.0.jsii.tgz → aws-cdk-lib@2.115.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +6 -0
  5. aws_cdk/aws_apigatewayv2/__init__.py +223 -574
  6. aws_cdk/aws_autoscaling/__init__.py +99 -86
  7. aws_cdk/aws_bedrock/__init__.py +355 -0
  8. aws_cdk/aws_billingconductor/__init__.py +41 -0
  9. aws_cdk/aws_cleanrooms/__init__.py +46 -20
  10. aws_cdk/aws_cloudformation/__init__.py +5 -1
  11. aws_cdk/aws_cloudtrail/__init__.py +89 -0
  12. aws_cdk/aws_codedeploy/__init__.py +233 -1
  13. aws_cdk/aws_connect/__init__.py +49 -2
  14. aws_cdk/aws_dlm/__init__.py +8 -11
  15. aws_cdk/aws_dms/__init__.py +3861 -1643
  16. aws_cdk/aws_ec2/__init__.py +91 -47
  17. aws_cdk/aws_ecs/__init__.py +18 -0
  18. aws_cdk/aws_efs/__init__.py +1 -1
  19. aws_cdk/aws_eks/__init__.py +26 -13
  20. aws_cdk/aws_elasticloadbalancingv2/__init__.py +110 -54
  21. aws_cdk/aws_emr/__init__.py +287 -18
  22. aws_cdk/aws_eventschemas/__init__.py +1 -1
  23. aws_cdk/aws_fis/__init__.py +466 -34
  24. aws_cdk/aws_iam/__init__.py +47 -35
  25. aws_cdk/aws_internetmonitor/__init__.py +10 -12
  26. aws_cdk/aws_lightsail/__init__.py +4 -2
  27. aws_cdk/aws_logs/__init__.py +5 -4
  28. aws_cdk/aws_opensearchservice/__init__.py +47 -0
  29. aws_cdk/aws_osis/__init__.py +272 -32
  30. aws_cdk/aws_rds/__init__.py +205 -87
  31. aws_cdk/aws_resiliencehub/__init__.py +9 -14
  32. aws_cdk/aws_rolesanywhere/__init__.py +41 -53
  33. aws_cdk/aws_route53/__init__.py +3 -3
  34. aws_cdk/aws_route53_targets/__init__.py +2 -2
  35. aws_cdk/aws_s3/__init__.py +2 -6
  36. aws_cdk/aws_s3express/__init__.py +3 -3
  37. aws_cdk/aws_sagemaker/__init__.py +82 -11
  38. aws_cdk/aws_sns/__init__.py +181 -0
  39. aws_cdk/aws_stepfunctions/__init__.py +16 -8
  40. aws_cdk/aws_stepfunctions_tasks/__init__.py +975 -139
  41. aws_cdk/aws_workspacesthinclient/__init__.py +44 -35
  42. {aws_cdk_lib-2.114.0.dist-info → aws_cdk_lib-2.115.0.dist-info}/METADATA +2 -2
  43. {aws_cdk_lib-2.114.0.dist-info → aws_cdk_lib-2.115.0.dist-info}/RECORD +47 -46
  44. {aws_cdk_lib-2.114.0.dist-info → aws_cdk_lib-2.115.0.dist-info}/LICENSE +0 -0
  45. {aws_cdk_lib-2.114.0.dist-info → aws_cdk_lib-2.115.0.dist-info}/NOTICE +0 -0
  46. {aws_cdk_lib-2.114.0.dist-info → aws_cdk_lib-2.115.0.dist-info}/WHEEL +0 -0
  47. {aws_cdk_lib-2.114.0.dist-info → aws_cdk_lib-2.115.0.dist-info}/top_level.txt +0 -0
aws_cdk/__init__.py CHANGED
@@ -30103,7 +30103,7 @@ class CfnStackSet(
30103
30103
  :param max_concurrent_count: The maximum number of accounts in which to perform this operation at one time. This is dependent on the value of ``FailureToleranceCount`` . ``MaxConcurrentCount`` is at most one more than the ``FailureToleranceCount`` . Note that this setting lets you specify the *maximum* for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. Conditional: You must specify either ``MaxConcurrentCount`` or ``MaxConcurrentPercentage`` , but not both.
30104
30104
  :param max_concurrent_percentage: The maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage, AWS CloudFormation rounds down to the next whole number. This is true except in cases where rounding down would result is zero. In this case, CloudFormation sets the number as one instead. Note that this setting lets you specify the *maximum* for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. Conditional: You must specify either ``MaxConcurrentCount`` or ``MaxConcurrentPercentage`` , but not both.
30105
30105
  :param region_concurrency_type: The concurrency type of deploying StackSets operations in Regions, could be in parallel or one Region at a time.
30106
- :param region_order: The order of the Regions where you want to perform the stack operation.
30106
+ :param region_order: The order of the Regions where you want to perform the stack operation. .. epigraph:: ``RegionOrder`` isn't followed if ``AutoDeployment`` is enabled.
30107
30107
 
30108
30108
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-operationpreferences.html
30109
30109
  :exampleMetadata: fixture=_generated
@@ -30216,6 +30216,10 @@ class CfnStackSet(
30216
30216
  def region_order(self) -> typing.Optional[typing.List[builtins.str]]:
30217
30217
  '''The order of the Regions where you want to perform the stack operation.
30218
30218
 
30219
+ .. epigraph::
30220
+
30221
+ ``RegionOrder`` isn't followed if ``AutoDeployment`` is enabled.
30222
+
30219
30223
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-operationpreferences.html#cfn-cloudformation-stackset-operationpreferences-regionorder
30220
30224
  '''
30221
30225
  result = self._values.get("region_order")
@@ -33223,6 +33227,7 @@ __all__ = [
33223
33227
  "aws_backup",
33224
33228
  "aws_backupgateway",
33225
33229
  "aws_batch",
33230
+ "aws_bedrock",
33226
33231
  "aws_billingconductor",
33227
33232
  "aws_budgets",
33228
33233
  "aws_cassandra",
@@ -33494,6 +33499,7 @@ from . import aws_autoscalingplans
33494
33499
  from . import aws_backup
33495
33500
  from . import aws_backupgateway
33496
33501
  from . import aws_batch
33502
+ from . import aws_bedrock
33497
33503
  from . import aws_billingconductor
33498
33504
  from . import aws_budgets
33499
33505
  from . import aws_cassandra
aws_cdk/_jsii/__init__.py CHANGED
@@ -16,7 +16,7 @@ import aws_cdk.asset_node_proxy_agent_v6._jsii
16
16
  import constructs._jsii
17
17
 
18
18
  __jsii_assembly__ = jsii.JSIIAssembly.load(
19
- "aws-cdk-lib", "2.114.0", __name__[0:-6], "aws-cdk-lib@2.114.0.jsii.tgz"
19
+ "aws-cdk-lib", "2.115.0", __name__[0:-6], "aws-cdk-lib@2.115.0.jsii.tgz"
20
20
  )
21
21
 
22
22
  __all__ = [
@@ -1638,6 +1638,7 @@ link = apigateway.VpcLink(self, "link",
1638
1638
 
1639
1639
  integration = apigateway.Integration(
1640
1640
  type=apigateway.IntegrationType.HTTP_PROXY,
1641
+ integration_http_method="ANY",
1641
1642
  options=apigateway.IntegrationOptions(
1642
1643
  connection_type=apigateway.ConnectionType.VPC_LINK,
1643
1644
  vpc_link=link
@@ -13660,6 +13661,7 @@ class ConnectionType(enum.Enum):
13660
13661
 
13661
13662
  integration = apigateway.Integration(
13662
13663
  type=apigateway.IntegrationType.HTTP_PROXY,
13664
+ integration_http_method="ANY",
13663
13665
  options=apigateway.IntegrationOptions(
13664
13666
  connection_type=apigateway.ConnectionType.VPC_LINK,
13665
13667
  vpc_link=link
@@ -16782,6 +16784,7 @@ class IntegrationProps:
16782
16784
 
16783
16785
  integration = apigateway.Integration(
16784
16786
  type=apigateway.IntegrationType.HTTP_PROXY,
16787
+ integration_http_method="ANY",
16785
16788
  options=apigateway.IntegrationOptions(
16786
16789
  connection_type=apigateway.ConnectionType.VPC_LINK,
16787
16790
  vpc_link=link
@@ -17025,6 +17028,7 @@ class IntegrationType(enum.Enum):
17025
17028
 
17026
17029
  integration = apigateway.Integration(
17027
17030
  type=apigateway.IntegrationType.HTTP_PROXY,
17031
+ integration_http_method="ANY",
17028
17032
  options=apigateway.IntegrationOptions(
17029
17033
  connection_type=apigateway.ConnectionType.VPC_LINK,
17030
17034
  vpc_link=link
@@ -27846,6 +27850,7 @@ class VpcLink(
27846
27850
 
27847
27851
  integration = apigateway.Integration(
27848
27852
  type=apigateway.IntegrationType.HTTP_PROXY,
27853
+ integration_http_method="ANY",
27849
27854
  options=apigateway.IntegrationOptions(
27850
27855
  connection_type=apigateway.ConnectionType.VPC_LINK,
27851
27856
  vpc_link=link
@@ -27960,6 +27965,7 @@ class VpcLinkProps:
27960
27965
 
27961
27966
  integration = apigateway.Integration(
27962
27967
  type=apigateway.IntegrationType.HTTP_PROXY,
27968
+ integration_http_method="ANY",
27963
27969
  options=apigateway.IntegrationOptions(
27964
27970
  connection_type=apigateway.ConnectionType.VPC_LINK,
27965
27971
  vpc_link=link