aws-solutions-constructs.aws-apigateway-lambda 2.74.0__tar.gz → 2.75.0__tar.gz
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_apigateway_lambda-2.74.0/src/aws_solutions_constructs.aws_apigateway_lambda.egg-info → aws_solutions_constructs_aws_apigateway_lambda-2.75.0}/PKG-INFO +7 -8
- {aws_solutions_constructs_aws_apigateway_lambda-2.74.0 → aws_solutions_constructs_aws_apigateway_lambda-2.75.0}/README.md +3 -3
- {aws_solutions_constructs_aws_apigateway_lambda-2.74.0 → aws_solutions_constructs_aws_apigateway_lambda-2.75.0}/setup.py +5 -6
- {aws_solutions_constructs_aws_apigateway_lambda-2.74.0 → aws_solutions_constructs_aws_apigateway_lambda-2.75.0}/src/aws_solutions_constructs/aws_apigateway_lambda/__init__.py +3 -3
- {aws_solutions_constructs_aws_apigateway_lambda-2.74.0 → aws_solutions_constructs_aws_apigateway_lambda-2.75.0}/src/aws_solutions_constructs/aws_apigateway_lambda/_jsii/__init__.py +2 -3
- aws_solutions_constructs_aws_apigateway_lambda-2.75.0/src/aws_solutions_constructs/aws_apigateway_lambda/_jsii/aws-apigateway-lambda@2.75.0.jsii.tgz +0 -0
- {aws_solutions_constructs_aws_apigateway_lambda-2.74.0 → aws_solutions_constructs_aws_apigateway_lambda-2.75.0/src/aws_solutions_constructs.aws_apigateway_lambda.egg-info}/PKG-INFO +7 -8
- {aws_solutions_constructs_aws_apigateway_lambda-2.74.0 → aws_solutions_constructs_aws_apigateway_lambda-2.75.0}/src/aws_solutions_constructs.aws_apigateway_lambda.egg-info/SOURCES.txt +1 -1
- aws_solutions_constructs_aws_apigateway_lambda-2.75.0/src/aws_solutions_constructs.aws_apigateway_lambda.egg-info/requires.txt +6 -0
- aws_solutions_constructs_aws_apigateway_lambda-2.74.0/src/aws_solutions_constructs/aws_apigateway_lambda/_jsii/aws-apigateway-lambda@2.74.0.jsii.tgz +0 -0
- aws_solutions_constructs_aws_apigateway_lambda-2.74.0/src/aws_solutions_constructs.aws_apigateway_lambda.egg-info/requires.txt +0 -7
- {aws_solutions_constructs_aws_apigateway_lambda-2.74.0 → aws_solutions_constructs_aws_apigateway_lambda-2.75.0}/LICENSE +0 -0
- {aws_solutions_constructs_aws_apigateway_lambda-2.74.0 → aws_solutions_constructs_aws_apigateway_lambda-2.75.0}/MANIFEST.in +0 -0
- {aws_solutions_constructs_aws_apigateway_lambda-2.74.0 → aws_solutions_constructs_aws_apigateway_lambda-2.75.0}/pyproject.toml +0 -0
- {aws_solutions_constructs_aws_apigateway_lambda-2.74.0 → aws_solutions_constructs_aws_apigateway_lambda-2.75.0}/setup.cfg +0 -0
- {aws_solutions_constructs_aws_apigateway_lambda-2.74.0 → aws_solutions_constructs_aws_apigateway_lambda-2.75.0}/src/aws_solutions_constructs/aws_apigateway_lambda/py.typed +0 -0
- {aws_solutions_constructs_aws_apigateway_lambda-2.74.0 → aws_solutions_constructs_aws_apigateway_lambda-2.75.0}/src/aws_solutions_constructs.aws_apigateway_lambda.egg-info/dependency_links.txt +0 -0
- {aws_solutions_constructs_aws_apigateway_lambda-2.74.0 → aws_solutions_constructs_aws_apigateway_lambda-2.75.0}/src/aws_solutions_constructs.aws_apigateway_lambda.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-solutions-constructs.aws-apigateway-lambda
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.75.0
|
|
4
4
|
Summary: CDK constructs for defining an interaction between an API Gateway and a Lambda function.
|
|
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.163.1
|
|
23
|
+
Requires-Dist: aws-solutions-constructs.core==2.75.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
|
|
|
@@ -64,7 +63,7 @@ import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
|
64
63
|
|
|
65
64
|
new ApiGatewayToLambda(this, 'ApiGatewayToLambdaPattern', {
|
|
66
65
|
lambdaFunctionProps: {
|
|
67
|
-
runtime: lambda.Runtime.
|
|
66
|
+
runtime: lambda.Runtime.NODEJS_20_X,
|
|
68
67
|
handler: 'index.handler',
|
|
69
68
|
code: lambda.Code.fromAsset(`lambda`)
|
|
70
69
|
}
|
|
@@ -83,7 +82,7 @@ from constructs import Construct
|
|
|
83
82
|
|
|
84
83
|
ApiGatewayToLambda(self, 'ApiGatewayToLambdaPattern',
|
|
85
84
|
lambda_function_props=_lambda.FunctionProps(
|
|
86
|
-
runtime=_lambda.Runtime.
|
|
85
|
+
runtime=_lambda.Runtime.Python_3_11,
|
|
87
86
|
handler='index.handler',
|
|
88
87
|
code=_lambda.Code.from_asset('lambda')
|
|
89
88
|
)
|
|
@@ -104,7 +103,7 @@ import software.amazon.awsconstructs.services.apigatewaylambda.*;
|
|
|
104
103
|
|
|
105
104
|
new ApiGatewayToLambda(this, "ApiGatewayToLambdaPattern", new ApiGatewayToLambdaProps.Builder()
|
|
106
105
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
|
107
|
-
.runtime(Runtime.
|
|
106
|
+
.runtime(Runtime.NODEJS_20_X)
|
|
108
107
|
.code(Code.fromAsset("lambda"))
|
|
109
108
|
.handler("index.handler")
|
|
110
109
|
.build())
|
|
@@ -35,7 +35,7 @@ import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
|
35
35
|
|
|
36
36
|
new ApiGatewayToLambda(this, 'ApiGatewayToLambdaPattern', {
|
|
37
37
|
lambdaFunctionProps: {
|
|
38
|
-
runtime: lambda.Runtime.
|
|
38
|
+
runtime: lambda.Runtime.NODEJS_20_X,
|
|
39
39
|
handler: 'index.handler',
|
|
40
40
|
code: lambda.Code.fromAsset(`lambda`)
|
|
41
41
|
}
|
|
@@ -54,7 +54,7 @@ from constructs import Construct
|
|
|
54
54
|
|
|
55
55
|
ApiGatewayToLambda(self, 'ApiGatewayToLambdaPattern',
|
|
56
56
|
lambda_function_props=_lambda.FunctionProps(
|
|
57
|
-
runtime=_lambda.Runtime.
|
|
57
|
+
runtime=_lambda.Runtime.Python_3_11,
|
|
58
58
|
handler='index.handler',
|
|
59
59
|
code=_lambda.Code.from_asset('lambda')
|
|
60
60
|
)
|
|
@@ -75,7 +75,7 @@ import software.amazon.awsconstructs.services.apigatewaylambda.*;
|
|
|
75
75
|
|
|
76
76
|
new ApiGatewayToLambda(this, "ApiGatewayToLambdaPattern", new ApiGatewayToLambdaProps.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())
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "aws-solutions-constructs.aws-apigateway-lambda",
|
|
8
|
-
"version": "2.
|
|
8
|
+
"version": "2.75.0",
|
|
9
9
|
"description": "CDK constructs for defining an interaction between an API Gateway and a Lambda function.",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/awslabs/aws-solutions-constructs.git",
|
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"aws_solutions_constructs.aws_apigateway_lambda._jsii": [
|
|
29
|
-
"aws-apigateway-lambda@2.
|
|
29
|
+
"aws-apigateway-lambda@2.75.0.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"aws_solutions_constructs.aws_apigateway_lambda": [
|
|
32
32
|
"py.typed"
|
|
@@ -34,11 +34,10 @@ kwargs = json.loads(
|
|
|
34
34
|
},
|
|
35
35
|
"python_requires": "~=3.8",
|
|
36
36
|
"install_requires": [
|
|
37
|
-
"aws-cdk-lib>=2.
|
|
38
|
-
"aws-
|
|
39
|
-
"aws-solutions-constructs.core==2.74.0",
|
|
37
|
+
"aws-cdk-lib>=2.163.1, <3.0.0",
|
|
38
|
+
"aws-solutions-constructs.core==2.75.0",
|
|
40
39
|
"constructs>=10.0.0, <11.0.0",
|
|
41
|
-
"jsii>=1.
|
|
40
|
+
"jsii>=1.106.0, <2.0.0",
|
|
42
41
|
"publication>=0.0.3",
|
|
43
42
|
"typeguard>=2.13.3,<4.3.0"
|
|
44
43
|
],
|
|
@@ -36,7 +36,7 @@ import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
|
36
36
|
|
|
37
37
|
new ApiGatewayToLambda(this, 'ApiGatewayToLambdaPattern', {
|
|
38
38
|
lambdaFunctionProps: {
|
|
39
|
-
runtime: lambda.Runtime.
|
|
39
|
+
runtime: lambda.Runtime.NODEJS_20_X,
|
|
40
40
|
handler: 'index.handler',
|
|
41
41
|
code: lambda.Code.fromAsset(`lambda`)
|
|
42
42
|
}
|
|
@@ -55,7 +55,7 @@ from constructs import Construct
|
|
|
55
55
|
|
|
56
56
|
ApiGatewayToLambda(self, 'ApiGatewayToLambdaPattern',
|
|
57
57
|
lambda_function_props=_lambda.FunctionProps(
|
|
58
|
-
runtime=_lambda.Runtime.
|
|
58
|
+
runtime=_lambda.Runtime.Python_3_11,
|
|
59
59
|
handler='index.handler',
|
|
60
60
|
code=_lambda.Code.from_asset('lambda')
|
|
61
61
|
)
|
|
@@ -76,7 +76,7 @@ import software.amazon.awsconstructs.services.apigatewaylambda.*;
|
|
|
76
76
|
|
|
77
77
|
new ApiGatewayToLambda(this, "ApiGatewayToLambdaPattern", new ApiGatewayToLambdaProps.Builder()
|
|
78
78
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
|
79
|
-
.runtime(Runtime.
|
|
79
|
+
.runtime(Runtime.NODEJS_20_X)
|
|
80
80
|
.code(Code.fromAsset("lambda"))
|
|
81
81
|
.handler("index.handler")
|
|
82
82
|
.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-apigateway-lambda",
|
|
38
|
-
"2.
|
|
37
|
+
"2.75.0",
|
|
39
38
|
__name__[0:-6],
|
|
40
|
-
"aws-apigateway-lambda@2.
|
|
39
|
+
"aws-apigateway-lambda@2.75.0.jsii.tgz",
|
|
41
40
|
)
|
|
42
41
|
|
|
43
42
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-solutions-constructs.aws-apigateway-lambda
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.75.0
|
|
4
4
|
Summary: CDK constructs for defining an interaction between an API Gateway and a Lambda function.
|
|
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.163.1
|
|
23
|
+
Requires-Dist: aws-solutions-constructs.core==2.75.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
|
|
|
@@ -64,7 +63,7 @@ import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
|
64
63
|
|
|
65
64
|
new ApiGatewayToLambda(this, 'ApiGatewayToLambdaPattern', {
|
|
66
65
|
lambdaFunctionProps: {
|
|
67
|
-
runtime: lambda.Runtime.
|
|
66
|
+
runtime: lambda.Runtime.NODEJS_20_X,
|
|
68
67
|
handler: 'index.handler',
|
|
69
68
|
code: lambda.Code.fromAsset(`lambda`)
|
|
70
69
|
}
|
|
@@ -83,7 +82,7 @@ from constructs import Construct
|
|
|
83
82
|
|
|
84
83
|
ApiGatewayToLambda(self, 'ApiGatewayToLambdaPattern',
|
|
85
84
|
lambda_function_props=_lambda.FunctionProps(
|
|
86
|
-
runtime=_lambda.Runtime.
|
|
85
|
+
runtime=_lambda.Runtime.Python_3_11,
|
|
87
86
|
handler='index.handler',
|
|
88
87
|
code=_lambda.Code.from_asset('lambda')
|
|
89
88
|
)
|
|
@@ -104,7 +103,7 @@ import software.amazon.awsconstructs.services.apigatewaylambda.*;
|
|
|
104
103
|
|
|
105
104
|
new ApiGatewayToLambda(this, "ApiGatewayToLambdaPattern", new ApiGatewayToLambdaProps.Builder()
|
|
106
105
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
|
107
|
-
.runtime(Runtime.
|
|
106
|
+
.runtime(Runtime.NODEJS_20_X)
|
|
108
107
|
.code(Code.fromAsset("lambda"))
|
|
109
108
|
.handler("index.handler")
|
|
110
109
|
.build())
|
|
@@ -11,4 +11,4 @@ src/aws_solutions_constructs.aws_apigateway_lambda.egg-info/top_level.txt
|
|
|
11
11
|
src/aws_solutions_constructs/aws_apigateway_lambda/__init__.py
|
|
12
12
|
src/aws_solutions_constructs/aws_apigateway_lambda/py.typed
|
|
13
13
|
src/aws_solutions_constructs/aws_apigateway_lambda/_jsii/__init__.py
|
|
14
|
-
src/aws_solutions_constructs/aws_apigateway_lambda/_jsii/aws-apigateway-lambda@2.
|
|
14
|
+
src/aws_solutions_constructs/aws_apigateway_lambda/_jsii/aws-apigateway-lambda@2.75.0.jsii.tgz
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|