aws-solutions-constructs.aws-s3-lambda 2.74.0__py3-none-any.whl → 2.76.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-solutions-constructs.aws-s3-lambda might be problematic. Click here for more details.
- aws_solutions_constructs/aws_s3_lambda/__init__.py +3 -3
- aws_solutions_constructs/aws_s3_lambda/_jsii/__init__.py +2 -3
- aws_solutions_constructs/aws_s3_lambda/_jsii/aws-s3-lambda@2.76.0.jsii.tgz +0 -0
- {aws_solutions_constructs.aws_s3_lambda-2.74.0.dist-info → aws_solutions_constructs.aws_s3_lambda-2.76.0.dist-info}/METADATA +7 -8
- aws_solutions_constructs.aws_s3_lambda-2.76.0.dist-info/RECORD +9 -0
- {aws_solutions_constructs.aws_s3_lambda-2.74.0.dist-info → aws_solutions_constructs.aws_s3_lambda-2.76.0.dist-info}/WHEEL +1 -1
- aws_solutions_constructs/aws_s3_lambda/_jsii/aws-s3-lambda@2.74.0.jsii.tgz +0 -0
- aws_solutions_constructs.aws_s3_lambda-2.74.0.dist-info/RECORD +0 -9
- {aws_solutions_constructs.aws_s3_lambda-2.74.0.dist-info → aws_solutions_constructs.aws_s3_lambda-2.76.0.dist-info}/LICENSE +0 -0
- {aws_solutions_constructs.aws_s3_lambda-2.74.0.dist-info → aws_solutions_constructs.aws_s3_lambda-2.76.0.dist-info}/top_level.txt +0 -0
|
@@ -37,7 +37,7 @@ import { S3ToLambdaProps, S3ToLambda } from '@aws-solutions-constructs/aws-s3-la
|
|
|
37
37
|
new S3ToLambda(this, 'test-s3-lambda', {
|
|
38
38
|
lambdaFunctionProps: {
|
|
39
39
|
code: lambda.Code.fromAsset(`lambda`),
|
|
40
|
-
runtime: lambda.Runtime.
|
|
40
|
+
runtime: lambda.Runtime.NODEJS_20_X,
|
|
41
41
|
handler: 'index.handler'
|
|
42
42
|
},
|
|
43
43
|
});
|
|
@@ -56,7 +56,7 @@ from constructs import Construct
|
|
|
56
56
|
S3ToLambda(self, 'test_s3_lambda',
|
|
57
57
|
lambda_function_props=_lambda.FunctionProps(
|
|
58
58
|
code=_lambda.Code.from_asset('lambda'),
|
|
59
|
-
runtime=_lambda.Runtime.
|
|
59
|
+
runtime=_lambda.Runtime.Python_3_11,
|
|
60
60
|
handler='index.handler'
|
|
61
61
|
)
|
|
62
62
|
)
|
|
@@ -75,7 +75,7 @@ import software.amazon.awsconstructs.services.s3lambda.*;
|
|
|
75
75
|
|
|
76
76
|
new S3ToLambda(this, "test-s3-lambda'", new S3ToLambdaProps.Builder()
|
|
77
77
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
|
78
|
-
.runtime(Runtime.
|
|
78
|
+
.runtime(Runtime.NODEJS_20_X)
|
|
79
79
|
.code(Code.fromAsset("lambda"))
|
|
80
80
|
.handler("index.handler")
|
|
81
81
|
.build())
|
|
@@ -29,15 +29,14 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
|
|
|
29
29
|
typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
|
|
30
30
|
|
|
31
31
|
import aws_cdk._jsii
|
|
32
|
-
import aws_cdk.integ_tests_alpha._jsii
|
|
33
32
|
import aws_solutions_constructs.core._jsii
|
|
34
33
|
import constructs._jsii
|
|
35
34
|
|
|
36
35
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
37
36
|
"@aws-solutions-constructs/aws-s3-lambda",
|
|
38
|
-
"2.
|
|
37
|
+
"2.76.0",
|
|
39
38
|
__name__[0:-6],
|
|
40
|
-
"aws-s3-lambda@2.
|
|
39
|
+
"aws-s3-lambda@2.76.0.jsii.tgz",
|
|
41
40
|
)
|
|
42
41
|
|
|
43
42
|
__all__ = [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-solutions-constructs.aws-s3-lambda
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.76.0
|
|
4
4
|
Summary: CDK Constructs for AWS S3 to AWS Lambda integration
|
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -19,11 +19,10 @@ 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<3.0.0,>=2.
|
|
23
|
-
Requires-Dist: aws-
|
|
24
|
-
Requires-Dist: aws-solutions-constructs.core==2.74.0
|
|
22
|
+
Requires-Dist: aws-cdk-lib<3.0.0,>=2.173.2
|
|
23
|
+
Requires-Dist: aws-solutions-constructs.core==2.76.0
|
|
25
24
|
Requires-Dist: constructs<11.0.0,>=10.0.0
|
|
26
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
25
|
+
Requires-Dist: jsii<2.0.0,>=1.106.0
|
|
27
26
|
Requires-Dist: publication>=0.0.3
|
|
28
27
|
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
|
29
28
|
|
|
@@ -65,7 +64,7 @@ import { S3ToLambdaProps, S3ToLambda } from '@aws-solutions-constructs/aws-s3-la
|
|
|
65
64
|
new S3ToLambda(this, 'test-s3-lambda', {
|
|
66
65
|
lambdaFunctionProps: {
|
|
67
66
|
code: lambda.Code.fromAsset(`lambda`),
|
|
68
|
-
runtime: lambda.Runtime.
|
|
67
|
+
runtime: lambda.Runtime.NODEJS_20_X,
|
|
69
68
|
handler: 'index.handler'
|
|
70
69
|
},
|
|
71
70
|
});
|
|
@@ -84,7 +83,7 @@ from constructs import Construct
|
|
|
84
83
|
S3ToLambda(self, 'test_s3_lambda',
|
|
85
84
|
lambda_function_props=_lambda.FunctionProps(
|
|
86
85
|
code=_lambda.Code.from_asset('lambda'),
|
|
87
|
-
runtime=_lambda.Runtime.
|
|
86
|
+
runtime=_lambda.Runtime.Python_3_11,
|
|
88
87
|
handler='index.handler'
|
|
89
88
|
)
|
|
90
89
|
)
|
|
@@ -103,7 +102,7 @@ import software.amazon.awsconstructs.services.s3lambda.*;
|
|
|
103
102
|
|
|
104
103
|
new S3ToLambda(this, "test-s3-lambda'", new S3ToLambdaProps.Builder()
|
|
105
104
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
|
106
|
-
.runtime(Runtime.
|
|
105
|
+
.runtime(Runtime.NODEJS_20_X)
|
|
107
106
|
.code(Code.fromAsset("lambda"))
|
|
108
107
|
.handler("index.handler")
|
|
109
108
|
.build())
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
aws_solutions_constructs/aws_s3_lambda/__init__.py,sha256=XTDZvPY3nsKvQraS-960dn_9fHm6vNuef2PWaC8pZtQ,22363
|
|
2
|
+
aws_solutions_constructs/aws_s3_lambda/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
aws_solutions_constructs/aws_s3_lambda/_jsii/__init__.py,sha256=RidJFaQn1xJnOvpW64ISsw8TfJoG8qanPzUItmVrFpk,1521
|
|
4
|
+
aws_solutions_constructs/aws_s3_lambda/_jsii/aws-s3-lambda@2.76.0.jsii.tgz,sha256=Errxh0tfL_W00kLYE2v4v3OL1T1OfJfLHdDb3sGI49k,103287
|
|
5
|
+
aws_solutions_constructs.aws_s3_lambda-2.76.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
|
|
6
|
+
aws_solutions_constructs.aws_s3_lambda-2.76.0.dist-info/METADATA,sha256=n53dGgWWlHvJML7RKNfmKh_ILQK4ZtqOAnk1bai8ilM,7124
|
|
7
|
+
aws_solutions_constructs.aws_s3_lambda-2.76.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
8
|
+
aws_solutions_constructs.aws_s3_lambda-2.76.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
|
|
9
|
+
aws_solutions_constructs.aws_s3_lambda-2.76.0.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
aws_solutions_constructs/aws_s3_lambda/__init__.py,sha256=YdqxLGYZYrbdE6bLHk4hAP5XWAW7h-n4f9An_PLYYfc,22362
|
|
2
|
-
aws_solutions_constructs/aws_s3_lambda/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_solutions_constructs/aws_s3_lambda/_jsii/__init__.py,sha256=twbW1GUNo9g5_t98D_sznA8ISFoJewaKcpmBuZTNZxE,1560
|
|
4
|
-
aws_solutions_constructs/aws_s3_lambda/_jsii/aws-s3-lambda@2.74.0.jsii.tgz,sha256=ZGz7quek2adh8JgPoJclY3WHaN93tlKJRKYc2QIakTc,103251
|
|
5
|
-
aws_solutions_constructs.aws_s3_lambda-2.74.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
|
|
6
|
-
aws_solutions_constructs.aws_s3_lambda-2.74.0.dist-info/METADATA,sha256=mapUmII4STZOJuQ_G9oWguu-T7Jni2klBSXEZgy71Lw,7176
|
|
7
|
-
aws_solutions_constructs.aws_s3_lambda-2.74.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
8
|
-
aws_solutions_constructs.aws_s3_lambda-2.74.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
|
|
9
|
-
aws_solutions_constructs.aws_s3_lambda-2.74.0.dist-info/RECORD,,
|
|
File without changes
|