aws-solutions-constructs.aws-lambda-kinesisfirehose 2.67.1__py3-none-any.whl → 2.68.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.
@@ -157,7 +157,22 @@ import jsii
157
157
  import publication
158
158
  import typing_extensions
159
159
 
160
- from typeguard import check_type
160
+ import typeguard
161
+ from importlib.metadata import version as _metadata_package_version
162
+ TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
163
+
164
+ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
165
+ if TYPEGUARD_MAJOR_VERSION <= 2:
166
+ return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
167
+ else:
168
+ if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
169
+ pass
170
+ else:
171
+ if TYPEGUARD_MAJOR_VERSION == 3:
172
+ typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
173
+ typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
174
+ else:
175
+ typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
161
176
 
162
177
  from ._jsii import *
163
178
 
@@ -11,7 +11,22 @@ import jsii
11
11
  import publication
12
12
  import typing_extensions
13
13
 
14
- from typeguard import check_type
14
+ import typeguard
15
+ from importlib.metadata import version as _metadata_package_version
16
+ TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
17
+
18
+ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
19
+ if TYPEGUARD_MAJOR_VERSION <= 2:
20
+ return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
21
+ else:
22
+ if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
23
+ pass
24
+ else:
25
+ if TYPEGUARD_MAJOR_VERSION == 3:
26
+ typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
27
+ typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
28
+ else:
29
+ typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
15
30
 
16
31
  import aws_cdk._jsii
17
32
  import aws_cdk.integ_tests_alpha._jsii
@@ -21,9 +36,9 @@ import constructs._jsii
21
36
 
22
37
  __jsii_assembly__ = jsii.JSIIAssembly.load(
23
38
  "@aws-solutions-constructs/aws-lambda-kinesisfirehose",
24
- "2.67.1",
39
+ "2.68.0",
25
40
  __name__[0:-6],
26
- "aws-lambda-kinesisfirehose@2.67.1.jsii.tgz",
41
+ "aws-lambda-kinesisfirehose@2.68.0.jsii.tgz",
27
42
  )
28
43
 
29
44
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-solutions-constructs.aws-lambda-kinesisfirehose
3
- Version: 2.67.1
3
+ Version: 2.68.0
4
4
  Summary: CDK constructs for defining an interaction between an AWS Lambda function and an existing Amazon Kinesis Firehose Delivery Stream.
5
5
  Home-page: https://github.com/awslabs/aws-solutions-constructs.git
6
6
  Author: Amazon Web Services
@@ -19,14 +19,14 @@ Classifier: License :: OSI Approved
19
19
  Requires-Python: ~=3.8
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: aws-cdk-lib==2.151.0
23
- Requires-Dist: aws-cdk.integ-tests-alpha==2.151.0.a0
24
- Requires-Dist: aws-solutions-constructs.aws-kinesis-firehose-s3==2.67.1
25
- Requires-Dist: aws-solutions-constructs.core==2.67.1
22
+ Requires-Dist: aws-cdk-lib<3.0.0,>=2.154.1
23
+ Requires-Dist: aws-cdk.integ-tests-alpha==2.154.1.a0
24
+ Requires-Dist: aws-solutions-constructs.aws-kinesis-firehose-s3==2.68.0
25
+ Requires-Dist: aws-solutions-constructs.core==2.68.0
26
26
  Requires-Dist: constructs<11.0.0,>=10.0.0
27
- Requires-Dist: jsii<2.0.0,>=1.102.0
27
+ Requires-Dist: jsii<2.0.0,>=1.103.0
28
28
  Requires-Dist: publication>=0.0.3
29
- Requires-Dist: typeguard~=2.13.3
29
+ Requires-Dist: typeguard<5.0.0,>=2.13.3
30
30
 
31
31
  # aws-lambda-kinesisfirehose module
32
32
 
@@ -0,0 +1,9 @@
1
+ aws_solutions_constructs/aws_lambda_kinesisfirehose/__init__.py,sha256=396PpdG80Bo9Z21LHHua6vrMU90BxgUAv7Pp4vW6P88,23277
2
+ aws_solutions_constructs/aws_lambda_kinesisfirehose/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
+ aws_solutions_constructs/aws_lambda_kinesisfirehose/_jsii/__init__.py,sha256=3dlDNW0TdsUexrfQoXLyA-gbeR0GozmhgIRjqcD1Kd4,1648
4
+ aws_solutions_constructs/aws_lambda_kinesisfirehose/_jsii/aws-lambda-kinesisfirehose@2.68.0.jsii.tgz,sha256=ME0ugFuMiwq_Xkn3UpEVB0LpMDFWSp3NWV3N0U0fiq8,104568
5
+ aws_solutions_constructs.aws_lambda_kinesisfirehose-2.68.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
6
+ aws_solutions_constructs.aws_lambda_kinesisfirehose-2.68.0.dist-info/METADATA,sha256=qoaJV66kAIQSJ29FXLmH1vvZi3I8t6ERLutvPAZbEXM,9324
7
+ aws_solutions_constructs.aws_lambda_kinesisfirehose-2.68.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
8
+ aws_solutions_constructs.aws_lambda_kinesisfirehose-2.68.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
9
+ aws_solutions_constructs.aws_lambda_kinesisfirehose-2.68.0.dist-info/RECORD,,
@@ -1,9 +0,0 @@
1
- aws_solutions_constructs/aws_lambda_kinesisfirehose/__init__.py,sha256=MT4IFc52LbV_r4nBK7PJX2Oi_KxkTiwUp_Oc6HGiDXI,22309
2
- aws_solutions_constructs/aws_lambda_kinesisfirehose/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- aws_solutions_constructs/aws_lambda_kinesisfirehose/_jsii/__init__.py,sha256=aTrZ8IoK574fXfo6843V5LSw9L-ywkWFzUBPOX2U2-8,680
4
- aws_solutions_constructs/aws_lambda_kinesisfirehose/_jsii/aws-lambda-kinesisfirehose@2.67.1.jsii.tgz,sha256=-gUfDtQi6gd94a--gi25qDzOFRltX5Ui-mdnycBvzHw,104516
5
- aws_solutions_constructs.aws_lambda_kinesisfirehose-2.67.1.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
6
- aws_solutions_constructs.aws_lambda_kinesisfirehose-2.67.1.dist-info/METADATA,sha256=eJ_FsEw7Y-B4LD58V5YRAYyVW60ZMlPcoKufNMiDfnY,9310
7
- aws_solutions_constructs.aws_lambda_kinesisfirehose-2.67.1.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
8
- aws_solutions_constructs.aws_lambda_kinesisfirehose-2.67.1.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
9
- aws_solutions_constructs.aws_lambda_kinesisfirehose-2.67.1.dist-info/RECORD,,