aws-solutions-constructs.aws-lambda-stepfunctions 2.36.0__tar.gz → 2.38.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-lambda-stepfunctions-2.36.0/src/aws_solutions_constructs.aws_lambda_stepfunctions.egg-info → aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0}/PKG-INFO +3 -3
- {aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0 → aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0}/README.md +2 -2
- {aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0 → aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0}/pyproject.toml +1 -1
- {aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0 → aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0}/setup.py +5 -5
- {aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0 → aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0}/src/aws_solutions_constructs/aws_lambda_stepfunctions/__init__.py +2 -2
- {aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0 → aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0}/src/aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/__init__.py +2 -2
- aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0/src/aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/aws-lambda-stepfunctions@2.38.0.jsii.tgz +0 -0
- {aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0 → aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0/src/aws_solutions_constructs.aws_lambda_stepfunctions.egg-info}/PKG-INFO +3 -3
- {aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0 → aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0}/src/aws_solutions_constructs.aws_lambda_stepfunctions.egg-info/SOURCES.txt +1 -1
- aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0/src/aws_solutions_constructs.aws_lambda_stepfunctions.egg-info/requires.txt +6 -0
- aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0/src/aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/aws-lambda-stepfunctions@2.36.0.jsii.tgz +0 -0
- aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0/src/aws_solutions_constructs.aws_lambda_stepfunctions.egg-info/requires.txt +0 -6
- {aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0 → aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0}/LICENSE +0 -0
- {aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0 → aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0}/MANIFEST.in +0 -0
- {aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0 → aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0}/setup.cfg +0 -0
- {aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0 → aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0}/src/aws_solutions_constructs/aws_lambda_stepfunctions/py.typed +0 -0
- {aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0 → aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0}/src/aws_solutions_constructs.aws_lambda_stepfunctions.egg-info/dependency_links.txt +0 -0
- {aws-solutions-constructs.aws-lambda-stepfunctions-2.36.0 → aws-solutions-constructs.aws-lambda-stepfunctions-2.38.0}/src/aws_solutions_constructs.aws_lambda_stepfunctions.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-solutions-constructs.aws-lambda-stepfunctions
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.38.0
|
|
4
4
|
Summary: CDK constructs for defining an interaction between an AWS Lambda function and an AWS Step Function.
|
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -61,7 +61,7 @@ const startState = new stepfunctions.Pass(this, 'StartState');
|
|
|
61
61
|
|
|
62
62
|
new LambdaToStepfunctions(this, 'LambdaToStepfunctionsPattern', {
|
|
63
63
|
lambdaFunctionProps: {
|
|
64
|
-
runtime: lambda.Runtime.
|
|
64
|
+
runtime: lambda.Runtime.NODEJS_16_X,
|
|
65
65
|
handler: 'index.handler',
|
|
66
66
|
code: lambda.Code.fromAsset(`lambda`)
|
|
67
67
|
},
|
|
@@ -113,7 +113,7 @@ final Pass startState = new Pass(this, "StartState");
|
|
|
113
113
|
new LambdaToStepfunctions(this, "test-lambda-stepfunctions-stack",
|
|
114
114
|
new LambdaToStepfunctionsProps.Builder()
|
|
115
115
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
|
116
|
-
.runtime(Runtime.
|
|
116
|
+
.runtime(Runtime.NODEJS_16_X)
|
|
117
117
|
.code(Code.fromAsset("lambda"))
|
|
118
118
|
.handler("index.handler")
|
|
119
119
|
.build())
|
|
@@ -38,7 +38,7 @@ const startState = new stepfunctions.Pass(this, 'StartState');
|
|
|
38
38
|
|
|
39
39
|
new LambdaToStepfunctions(this, 'LambdaToStepfunctionsPattern', {
|
|
40
40
|
lambdaFunctionProps: {
|
|
41
|
-
runtime: lambda.Runtime.
|
|
41
|
+
runtime: lambda.Runtime.NODEJS_16_X,
|
|
42
42
|
handler: 'index.handler',
|
|
43
43
|
code: lambda.Code.fromAsset(`lambda`)
|
|
44
44
|
},
|
|
@@ -90,7 +90,7 @@ final Pass startState = new Pass(this, "StartState");
|
|
|
90
90
|
new LambdaToStepfunctions(this, "test-lambda-stepfunctions-stack",
|
|
91
91
|
new LambdaToStepfunctionsProps.Builder()
|
|
92
92
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
|
93
|
-
.runtime(Runtime.
|
|
93
|
+
.runtime(Runtime.NODEJS_16_X)
|
|
94
94
|
.code(Code.fromAsset("lambda"))
|
|
95
95
|
.handler("index.handler")
|
|
96
96
|
.build())
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "aws-solutions-constructs.aws-lambda-stepfunctions",
|
|
8
|
-
"version": "2.
|
|
8
|
+
"version": "2.38.0",
|
|
9
9
|
"description": "CDK constructs for defining an interaction between an AWS Lambda function and an AWS Step 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_lambda_stepfunctions._jsii": [
|
|
29
|
-
"aws-lambda-stepfunctions@2.
|
|
29
|
+
"aws-lambda-stepfunctions@2.38.0.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"aws_solutions_constructs.aws_lambda_stepfunctions": [
|
|
32
32
|
"py.typed"
|
|
@@ -34,10 +34,10 @@ kwargs = json.loads(
|
|
|
34
34
|
},
|
|
35
35
|
"python_requires": "~=3.7",
|
|
36
36
|
"install_requires": [
|
|
37
|
-
"aws-cdk-lib>=2.
|
|
38
|
-
"aws-solutions-constructs.core==2.
|
|
37
|
+
"aws-cdk-lib>=2.74.0, <3.0.0",
|
|
38
|
+
"aws-solutions-constructs.core==2.38.0",
|
|
39
39
|
"constructs>=10.0.0, <11.0.0",
|
|
40
|
-
"jsii>=1.
|
|
40
|
+
"jsii>=1.80.0, <2.0.0",
|
|
41
41
|
"publication>=0.0.3",
|
|
42
42
|
"typeguard~=2.13.3"
|
|
43
43
|
],
|
|
@@ -39,7 +39,7 @@ const startState = new stepfunctions.Pass(this, 'StartState');
|
|
|
39
39
|
|
|
40
40
|
new LambdaToStepfunctions(this, 'LambdaToStepfunctionsPattern', {
|
|
41
41
|
lambdaFunctionProps: {
|
|
42
|
-
runtime: lambda.Runtime.
|
|
42
|
+
runtime: lambda.Runtime.NODEJS_16_X,
|
|
43
43
|
handler: 'index.handler',
|
|
44
44
|
code: lambda.Code.fromAsset(`lambda`)
|
|
45
45
|
},
|
|
@@ -91,7 +91,7 @@ final Pass startState = new Pass(this, "StartState");
|
|
|
91
91
|
new LambdaToStepfunctions(this, "test-lambda-stepfunctions-stack",
|
|
92
92
|
new LambdaToStepfunctionsProps.Builder()
|
|
93
93
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
|
94
|
-
.runtime(Runtime.
|
|
94
|
+
.runtime(Runtime.NODEJS_16_X)
|
|
95
95
|
.code(Code.fromAsset("lambda"))
|
|
96
96
|
.handler("index.handler")
|
|
97
97
|
.build())
|
|
@@ -16,9 +16,9 @@ import constructs._jsii
|
|
|
16
16
|
|
|
17
17
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
18
18
|
"@aws-solutions-constructs/aws-lambda-stepfunctions",
|
|
19
|
-
"2.
|
|
19
|
+
"2.38.0",
|
|
20
20
|
__name__[0:-6],
|
|
21
|
-
"aws-lambda-stepfunctions@2.
|
|
21
|
+
"aws-lambda-stepfunctions@2.38.0.jsii.tgz",
|
|
22
22
|
)
|
|
23
23
|
|
|
24
24
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-solutions-constructs.aws-lambda-stepfunctions
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.38.0
|
|
4
4
|
Summary: CDK constructs for defining an interaction between an AWS Lambda function and an AWS Step Function.
|
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -61,7 +61,7 @@ const startState = new stepfunctions.Pass(this, 'StartState');
|
|
|
61
61
|
|
|
62
62
|
new LambdaToStepfunctions(this, 'LambdaToStepfunctionsPattern', {
|
|
63
63
|
lambdaFunctionProps: {
|
|
64
|
-
runtime: lambda.Runtime.
|
|
64
|
+
runtime: lambda.Runtime.NODEJS_16_X,
|
|
65
65
|
handler: 'index.handler',
|
|
66
66
|
code: lambda.Code.fromAsset(`lambda`)
|
|
67
67
|
},
|
|
@@ -113,7 +113,7 @@ final Pass startState = new Pass(this, "StartState");
|
|
|
113
113
|
new LambdaToStepfunctions(this, "test-lambda-stepfunctions-stack",
|
|
114
114
|
new LambdaToStepfunctionsProps.Builder()
|
|
115
115
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
|
116
|
-
.runtime(Runtime.
|
|
116
|
+
.runtime(Runtime.NODEJS_16_X)
|
|
117
117
|
.code(Code.fromAsset("lambda"))
|
|
118
118
|
.handler("index.handler")
|
|
119
119
|
.build())
|
|
@@ -11,4 +11,4 @@ src/aws_solutions_constructs.aws_lambda_stepfunctions.egg-info/top_level.txt
|
|
|
11
11
|
src/aws_solutions_constructs/aws_lambda_stepfunctions/__init__.py
|
|
12
12
|
src/aws_solutions_constructs/aws_lambda_stepfunctions/py.typed
|
|
13
13
|
src/aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/__init__.py
|
|
14
|
-
src/aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/aws-lambda-stepfunctions@2.
|
|
14
|
+
src/aws_solutions_constructs/aws_lambda_stepfunctions/_jsii/aws-lambda-stepfunctions@2.38.0.jsii.tgz
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|