aws-cdk-lib 2.203.1__py3-none-any.whl → 2.204.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 (33) hide show
  1. aws_cdk/__init__.py +38 -0
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.203.1.jsii.tgz → aws-cdk-lib@2.204.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +164 -0
  5. aws_cdk/aws_apigatewayv2/__init__.py +412 -0
  6. aws_cdk/aws_certificatemanager/__init__.py +28 -0
  7. aws_cdk/aws_chatbot/__init__.py +28 -0
  8. aws_cdk/aws_cloudfront/__init__.py +92 -0
  9. aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
  10. aws_cdk/aws_cloudwatch/__init__.py +217 -23
  11. aws_cdk/aws_codebuild/__init__.py +84 -0
  12. aws_cdk/aws_dynamodb/__init__.py +316 -2
  13. aws_cdk/aws_ec2/__init__.py +94 -0
  14. aws_cdk/aws_ecs/__init__.py +52 -0
  15. aws_cdk/aws_elasticloadbalancingv2/__init__.py +724 -0
  16. aws_cdk/aws_elasticsearch/__init__.py +260 -0
  17. aws_cdk/aws_kinesis/__init__.py +324 -0
  18. aws_cdk/aws_kinesisfirehose/__init__.py +100 -0
  19. aws_cdk/aws_lambda/__init__.py +144 -0
  20. aws_cdk/aws_logs/__init__.py +58 -0
  21. aws_cdk/aws_opensearchservice/__init__.py +260 -0
  22. aws_cdk/aws_rds/__init__.py +384 -0
  23. aws_cdk/aws_scheduler/__init__.py +210 -0
  24. aws_cdk/aws_sns/__init__.py +164 -0
  25. aws_cdk/aws_sqs/__init__.py +164 -0
  26. aws_cdk/aws_stepfunctions/__init__.py +288 -0
  27. aws_cdk/aws_synthetics/__init__.py +18 -0
  28. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.204.0.dist-info}/METADATA +2 -2
  29. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.204.0.dist-info}/RECORD +33 -33
  30. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.204.0.dist-info}/LICENSE +0 -0
  31. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.204.0.dist-info}/NOTICE +0 -0
  32. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.204.0.dist-info}/WHEEL +0 -0
  33. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.204.0.dist-info}/top_level.txt +0 -0
aws_cdk/__init__.py CHANGED
@@ -17902,6 +17902,19 @@ class IgnoreStrategy(
17902
17902
  '''
17903
17903
  ...
17904
17904
 
17905
+ @jsii.member(jsii_name="completelyIgnores")
17906
+ def completely_ignores(self, absolute_file_path: builtins.str) -> builtins.bool:
17907
+ '''Determines whether a given file path should be ignored and have all of its children ignored if its a directory.
17908
+
17909
+ :param absolute_file_path: absolute file path to be assessed against the pattern.
17910
+
17911
+ :return: ``true`` if the file should be ignored
17912
+ '''
17913
+ if __debug__:
17914
+ type_hints = typing.get_type_hints(_typecheckingstub__3a80a66d2944a2c289e3c51a3686487dddf7c755eb54d7726f3fd91652eddcde)
17915
+ check_type(argname="argument absolute_file_path", value=absolute_file_path, expected_type=type_hints["absolute_file_path"])
17916
+ return typing.cast(builtins.bool, jsii.invoke(self, "completelyIgnores", [absolute_file_path]))
17917
+
17905
17918
  @jsii.member(jsii_name="ignores")
17906
17919
  @abc.abstractmethod
17907
17920
  def ignores(self, absolute_file_path: builtins.str) -> builtins.bool:
@@ -35748,6 +35761,19 @@ class DockerIgnoreStrategy(
35748
35761
  check_type(argname="argument pattern", value=pattern, expected_type=type_hints["pattern"])
35749
35762
  return typing.cast(None, jsii.invoke(self, "add", [pattern]))
35750
35763
 
35764
+ @jsii.member(jsii_name="completelyIgnores")
35765
+ def completely_ignores(self, absolute_file_path: builtins.str) -> builtins.bool:
35766
+ '''Determines whether a given file path should be ignored and have all of its children ignored if its a directory.
35767
+
35768
+ :param absolute_file_path: absolute file path to be assessed against the pattern.
35769
+
35770
+ :return: ``true`` if the file should be ignored
35771
+ '''
35772
+ if __debug__:
35773
+ type_hints = typing.get_type_hints(_typecheckingstub__4eeec3aad8660d3f77c7f5fd848b52abf32a847311801373080bbfe35642315a)
35774
+ check_type(argname="argument absolute_file_path", value=absolute_file_path, expected_type=type_hints["absolute_file_path"])
35775
+ return typing.cast(builtins.bool, jsii.invoke(self, "completelyIgnores", [absolute_file_path]))
35776
+
35751
35777
  @jsii.member(jsii_name="ignores")
35752
35778
  def ignores(self, absolute_file_path: builtins.str) -> builtins.bool:
35753
35779
  '''Determines whether a given file path should be ignored or not.
@@ -40282,6 +40308,12 @@ def _typecheckingstub__eece2ad7e2f3cbe035a92302343ee656a4e8438489e1b15a43554b124
40282
40308
  """Type checking stubs"""
40283
40309
  pass
40284
40310
 
40311
+ def _typecheckingstub__3a80a66d2944a2c289e3c51a3686487dddf7c755eb54d7726f3fd91652eddcde(
40312
+ absolute_file_path: builtins.str,
40313
+ ) -> None:
40314
+ """Type checking stubs"""
40315
+ pass
40316
+
40285
40317
  def _typecheckingstub__30e8e458c385d1db329cfc0c45f966d2d15c1b0166b3e7cfe8a57c7809196bf5(
40286
40318
  pattern: builtins.str,
40287
40319
  ) -> None:
@@ -42877,6 +42909,12 @@ def _typecheckingstub__dce0fd20685d4b7457e08a1567eb5aa8c53335612222538272b7d69db
42877
42909
  """Type checking stubs"""
42878
42910
  pass
42879
42911
 
42912
+ def _typecheckingstub__4eeec3aad8660d3f77c7f5fd848b52abf32a847311801373080bbfe35642315a(
42913
+ absolute_file_path: builtins.str,
42914
+ ) -> None:
42915
+ """Type checking stubs"""
42916
+ pass
42917
+
42880
42918
  def _typecheckingstub__a94afdff9185f6eef56446b1ee12df7551a9ea60e1fd57e80213dc039cb3980c(
42881
42919
  absolute_file_path: builtins.str,
42882
42920
  ) -> None:
aws_cdk/_jsii/__init__.py CHANGED
@@ -34,7 +34,7 @@ import aws_cdk.cloud_assembly_schema._jsii
34
34
  import constructs._jsii
35
35
 
36
36
  __jsii_assembly__ = jsii.JSIIAssembly.load(
37
- "aws-cdk-lib", "2.203.1", __name__[0:-6], "aws-cdk-lib@2.203.1.jsii.tgz"
37
+ "aws-cdk-lib", "2.204.0", __name__[0:-6], "aws-cdk-lib@2.204.0.jsii.tgz"
38
38
  )
39
39
 
40
40
  __all__ = [