aws-solutions-constructs.aws-iot-s3 2.67.1__py3-none-any.whl → 2.69.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.
- aws_solutions_constructs/aws_iot_s3/__init__.py +16 -1
- aws_solutions_constructs/aws_iot_s3/_jsii/__init__.py +18 -3
- aws_solutions_constructs/aws_iot_s3/_jsii/aws-iot-s3@2.69.0.jsii.tgz +0 -0
- {aws_solutions_constructs.aws_iot_s3-2.67.1.dist-info → aws_solutions_constructs.aws_iot_s3-2.69.0.dist-info}/METADATA +6 -6
- aws_solutions_constructs.aws_iot_s3-2.69.0.dist-info/RECORD +9 -0
- aws_solutions_constructs/aws_iot_s3/_jsii/aws-iot-s3@2.67.1.jsii.tgz +0 -0
- aws_solutions_constructs.aws_iot_s3-2.67.1.dist-info/RECORD +0 -9
- {aws_solutions_constructs.aws_iot_s3-2.67.1.dist-info → aws_solutions_constructs.aws_iot_s3-2.69.0.dist-info}/LICENSE +0 -0
- {aws_solutions_constructs.aws_iot_s3-2.67.1.dist-info → aws_solutions_constructs.aws_iot_s3-2.69.0.dist-info}/WHEEL +0 -0
- {aws_solutions_constructs.aws_iot_s3-2.67.1.dist-info → aws_solutions_constructs.aws_iot_s3-2.69.0.dist-info}/top_level.txt +0 -0
@@ -160,7 +160,22 @@ import jsii
|
|
160
160
|
import publication
|
161
161
|
import typing_extensions
|
162
162
|
|
163
|
-
|
163
|
+
import typeguard
|
164
|
+
from importlib.metadata import version as _metadata_package_version
|
165
|
+
TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
|
166
|
+
|
167
|
+
def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
|
168
|
+
if TYPEGUARD_MAJOR_VERSION <= 2:
|
169
|
+
return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
|
170
|
+
else:
|
171
|
+
if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
|
172
|
+
pass
|
173
|
+
else:
|
174
|
+
if TYPEGUARD_MAJOR_VERSION == 3:
|
175
|
+
typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
|
176
|
+
typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
|
177
|
+
else:
|
178
|
+
typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
|
164
179
|
|
165
180
|
from ._jsii import *
|
166
181
|
|
@@ -11,7 +11,22 @@ import jsii
|
|
11
11
|
import publication
|
12
12
|
import typing_extensions
|
13
13
|
|
14
|
-
|
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
|
@@ -20,9 +35,9 @@ import constructs._jsii
|
|
20
35
|
|
21
36
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
22
37
|
"@aws-solutions-constructs/aws-iot-s3",
|
23
|
-
"2.
|
38
|
+
"2.69.0",
|
24
39
|
__name__[0:-6],
|
25
|
-
"aws-iot-s3@2.
|
40
|
+
"aws-iot-s3@2.69.0.jsii.tgz",
|
26
41
|
)
|
27
42
|
|
28
43
|
__all__ = [
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: aws-solutions-constructs.aws-iot-s3
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.69.0
|
4
4
|
Summary: CDK Constructs for AWS IoT to AWS S3 integration
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
6
6
|
Author: Amazon Web Services
|
@@ -19,13 +19,13 @@ 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
|
23
|
-
Requires-Dist: aws-cdk.integ-tests-alpha==2.
|
24
|
-
Requires-Dist: aws-solutions-constructs.core==2.
|
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.core==2.69.0
|
25
25
|
Requires-Dist: constructs<11.0.0,>=10.0.0
|
26
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
26
|
+
Requires-Dist: jsii<2.0.0,>=1.103.1
|
27
27
|
Requires-Dist: publication>=0.0.3
|
28
|
-
Requires-Dist: typeguard
|
28
|
+
Requires-Dist: typeguard<5.0.0,>=2.13.3
|
29
29
|
|
30
30
|
# aws-iot-s3 module
|
31
31
|
|
@@ -0,0 +1,9 @@
|
|
1
|
+
aws_solutions_constructs/aws_iot_s3/__init__.py,sha256=4qU4Qn1B0uAjs2atltGLi_N6I4QlaR-dZ1OJ6MkVuag,21126
|
2
|
+
aws_solutions_constructs/aws_iot_s3/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
+
aws_solutions_constructs/aws_iot_s3/_jsii/__init__.py,sha256=fvwXMHNwM2IOMwK4zu4rAljb2QpjBEVJiFJ1dJqy2vg,1554
|
4
|
+
aws_solutions_constructs/aws_iot_s3/_jsii/aws-iot-s3@2.69.0.jsii.tgz,sha256=giNtgkw5EkeVAhvmfZFXOOq9v__wgPdNgRtwgkC6CfU,66188
|
5
|
+
aws_solutions_constructs.aws_iot_s3-2.69.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
|
6
|
+
aws_solutions_constructs.aws_iot_s3-2.69.0.dist-info/METADATA,sha256=DMUmkdyAviamZrtQnoWvP3njVfC-nnhJe7hF02or49o,8036
|
7
|
+
aws_solutions_constructs.aws_iot_s3-2.69.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
8
|
+
aws_solutions_constructs.aws_iot_s3-2.69.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
|
9
|
+
aws_solutions_constructs.aws_iot_s3-2.69.0.dist-info/RECORD,,
|
Binary file
|
@@ -1,9 +0,0 @@
|
|
1
|
-
aws_solutions_constructs/aws_iot_s3/__init__.py,sha256=fQTmIbYulfnc_Jyt5k4-BMKsUrmFd7qxw72KMnKh9H0,20158
|
2
|
-
aws_solutions_constructs/aws_iot_s3/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
-
aws_solutions_constructs/aws_iot_s3/_jsii/__init__.py,sha256=T6STd1XDlEQFF4mc8kleyR1p081tTWof7q5ZJx5633c,586
|
4
|
-
aws_solutions_constructs/aws_iot_s3/_jsii/aws-iot-s3@2.67.1.jsii.tgz,sha256=iOt3GIq0gg9KHmkEtkgROI01q9znOpDglbonGcmucvY,66113
|
5
|
-
aws_solutions_constructs.aws_iot_s3-2.67.1.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
|
6
|
-
aws_solutions_constructs.aws_iot_s3-2.67.1.dist-info/METADATA,sha256=jgxlKvnCZnb1VugF-dG5-nDNTlr9zkhZsuMbBvdysgY,8022
|
7
|
-
aws_solutions_constructs.aws_iot_s3-2.67.1.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
8
|
-
aws_solutions_constructs.aws_iot_s3-2.67.1.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
|
9
|
-
aws_solutions_constructs.aws_iot_s3-2.67.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|