aws-solutions-constructs.aws-iot-lambda-dynamodb 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-iot-lambda-dynamodb-2.36.0/src/aws_solutions_constructs.aws_iot_lambda_dynamodb.egg-info → aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0}/PKG-INFO +3 -3
- {aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0 → aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0}/README.md +2 -2
- {aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0 → aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0}/pyproject.toml +1 -1
- {aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0 → aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0}/setup.py +7 -7
- {aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0 → aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0}/src/aws_solutions_constructs/aws_iot_lambda_dynamodb/__init__.py +2 -2
- {aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0 → aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0}/src/aws_solutions_constructs/aws_iot_lambda_dynamodb/_jsii/__init__.py +2 -2
- aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0/src/aws_solutions_constructs/aws_iot_lambda_dynamodb/_jsii/aws-iot-lambda-dynamodb@2.38.0.jsii.tgz +0 -0
- {aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0 → aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0/src/aws_solutions_constructs.aws_iot_lambda_dynamodb.egg-info}/PKG-INFO +3 -3
- {aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0 → aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0}/src/aws_solutions_constructs.aws_iot_lambda_dynamodb.egg-info/SOURCES.txt +1 -1
- aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0/src/aws_solutions_constructs.aws_iot_lambda_dynamodb.egg-info/requires.txt +8 -0
- aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0/src/aws_solutions_constructs/aws_iot_lambda_dynamodb/_jsii/aws-iot-lambda-dynamodb@2.36.0.jsii.tgz +0 -0
- aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0/src/aws_solutions_constructs.aws_iot_lambda_dynamodb.egg-info/requires.txt +0 -8
- {aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0 → aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0}/LICENSE +0 -0
- {aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0 → aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0}/MANIFEST.in +0 -0
- {aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0 → aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0}/setup.cfg +0 -0
- {aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0 → aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0}/src/aws_solutions_constructs/aws_iot_lambda_dynamodb/py.typed +0 -0
- {aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0 → aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0}/src/aws_solutions_constructs.aws_iot_lambda_dynamodb.egg-info/dependency_links.txt +0 -0
- {aws-solutions-constructs.aws-iot-lambda-dynamodb-2.36.0 → aws-solutions-constructs.aws-iot-lambda-dynamodb-2.38.0}/src/aws_solutions_constructs.aws_iot_lambda_dynamodb.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-solutions-constructs.aws-iot-lambda-dynamodb
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.38.0
|
|
4
4
|
Summary: CDK Constructs for AWS IoT to AWS Lambda to AWS DyanmoDB integration.
|
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -63,7 +63,7 @@ import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
|
63
63
|
const constructProps: IotToLambdaToDynamoDBProps = {
|
|
64
64
|
lambdaFunctionProps: {
|
|
65
65
|
code: lambda.Code.fromAsset(`lambda`),
|
|
66
|
-
runtime: lambda.Runtime.
|
|
66
|
+
runtime: lambda.Runtime.NODEJS_16_X,
|
|
67
67
|
handler: 'index.handler'
|
|
68
68
|
},
|
|
69
69
|
iotTopicRuleProps: {
|
|
@@ -122,7 +122,7 @@ import software.amazon.awsconstructs.services.iotlambdadynamodb.*;
|
|
|
122
122
|
|
|
123
123
|
new IotToLambdaToDynamoDB(this, "test-iot-lambda-dynamodb-stack", new IotToLambdaToDynamoDBProps.Builder()
|
|
124
124
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
|
125
|
-
.runtime(Runtime.
|
|
125
|
+
.runtime(Runtime.NODEJS_16_X)
|
|
126
126
|
.code(Code.fromAsset("lambda"))
|
|
127
127
|
.handler("index.handler")
|
|
128
128
|
.build())
|
|
@@ -40,7 +40,7 @@ import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
|
40
40
|
const constructProps: IotToLambdaToDynamoDBProps = {
|
|
41
41
|
lambdaFunctionProps: {
|
|
42
42
|
code: lambda.Code.fromAsset(`lambda`),
|
|
43
|
-
runtime: lambda.Runtime.
|
|
43
|
+
runtime: lambda.Runtime.NODEJS_16_X,
|
|
44
44
|
handler: 'index.handler'
|
|
45
45
|
},
|
|
46
46
|
iotTopicRuleProps: {
|
|
@@ -99,7 +99,7 @@ import software.amazon.awsconstructs.services.iotlambdadynamodb.*;
|
|
|
99
99
|
|
|
100
100
|
new IotToLambdaToDynamoDB(this, "test-iot-lambda-dynamodb-stack", new IotToLambdaToDynamoDBProps.Builder()
|
|
101
101
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
|
102
|
-
.runtime(Runtime.
|
|
102
|
+
.runtime(Runtime.NODEJS_16_X)
|
|
103
103
|
.code(Code.fromAsset("lambda"))
|
|
104
104
|
.handler("index.handler")
|
|
105
105
|
.build())
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "aws-solutions-constructs.aws-iot-lambda-dynamodb",
|
|
8
|
-
"version": "2.
|
|
8
|
+
"version": "2.38.0",
|
|
9
9
|
"description": "CDK Constructs for AWS IoT to AWS Lambda to AWS DyanmoDB integration.",
|
|
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_iot_lambda_dynamodb._jsii": [
|
|
29
|
-
"aws-iot-lambda-dynamodb@2.
|
|
29
|
+
"aws-iot-lambda-dynamodb@2.38.0.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"aws_solutions_constructs.aws_iot_lambda_dynamodb": [
|
|
32
32
|
"py.typed"
|
|
@@ -34,12 +34,12 @@ kwargs = json.loads(
|
|
|
34
34
|
},
|
|
35
35
|
"python_requires": "~=3.7",
|
|
36
36
|
"install_requires": [
|
|
37
|
-
"aws-cdk-lib>=2.
|
|
38
|
-
"aws-solutions-constructs.aws-iot-lambda==2.
|
|
39
|
-
"aws-solutions-constructs.aws-lambda-dynamodb==2.
|
|
40
|
-
"aws-solutions-constructs.core==2.
|
|
37
|
+
"aws-cdk-lib>=2.74.0, <3.0.0",
|
|
38
|
+
"aws-solutions-constructs.aws-iot-lambda==2.38.0",
|
|
39
|
+
"aws-solutions-constructs.aws-lambda-dynamodb==2.38.0",
|
|
40
|
+
"aws-solutions-constructs.core==2.38.0",
|
|
41
41
|
"constructs>=10.0.0, <11.0.0",
|
|
42
|
-
"jsii>=1.
|
|
42
|
+
"jsii>=1.80.0, <2.0.0",
|
|
43
43
|
"publication>=0.0.3",
|
|
44
44
|
"typeguard~=2.13.3"
|
|
45
45
|
],
|
|
@@ -41,7 +41,7 @@ import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
|
41
41
|
const constructProps: IotToLambdaToDynamoDBProps = {
|
|
42
42
|
lambdaFunctionProps: {
|
|
43
43
|
code: lambda.Code.fromAsset(`lambda`),
|
|
44
|
-
runtime: lambda.Runtime.
|
|
44
|
+
runtime: lambda.Runtime.NODEJS_16_X,
|
|
45
45
|
handler: 'index.handler'
|
|
46
46
|
},
|
|
47
47
|
iotTopicRuleProps: {
|
|
@@ -100,7 +100,7 @@ import software.amazon.awsconstructs.services.iotlambdadynamodb.*;
|
|
|
100
100
|
|
|
101
101
|
new IotToLambdaToDynamoDB(this, "test-iot-lambda-dynamodb-stack", new IotToLambdaToDynamoDBProps.Builder()
|
|
102
102
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
|
103
|
-
.runtime(Runtime.
|
|
103
|
+
.runtime(Runtime.NODEJS_16_X)
|
|
104
104
|
.code(Code.fromAsset("lambda"))
|
|
105
105
|
.handler("index.handler")
|
|
106
106
|
.build())
|
|
@@ -18,9 +18,9 @@ import constructs._jsii
|
|
|
18
18
|
|
|
19
19
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
20
20
|
"@aws-solutions-constructs/aws-iot-lambda-dynamodb",
|
|
21
|
-
"2.
|
|
21
|
+
"2.38.0",
|
|
22
22
|
__name__[0:-6],
|
|
23
|
-
"aws-iot-lambda-dynamodb@2.
|
|
23
|
+
"aws-iot-lambda-dynamodb@2.38.0.jsii.tgz",
|
|
24
24
|
)
|
|
25
25
|
|
|
26
26
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-solutions-constructs.aws-iot-lambda-dynamodb
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.38.0
|
|
4
4
|
Summary: CDK Constructs for AWS IoT to AWS Lambda to AWS DyanmoDB integration.
|
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -63,7 +63,7 @@ import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
|
63
63
|
const constructProps: IotToLambdaToDynamoDBProps = {
|
|
64
64
|
lambdaFunctionProps: {
|
|
65
65
|
code: lambda.Code.fromAsset(`lambda`),
|
|
66
|
-
runtime: lambda.Runtime.
|
|
66
|
+
runtime: lambda.Runtime.NODEJS_16_X,
|
|
67
67
|
handler: 'index.handler'
|
|
68
68
|
},
|
|
69
69
|
iotTopicRuleProps: {
|
|
@@ -122,7 +122,7 @@ import software.amazon.awsconstructs.services.iotlambdadynamodb.*;
|
|
|
122
122
|
|
|
123
123
|
new IotToLambdaToDynamoDB(this, "test-iot-lambda-dynamodb-stack", new IotToLambdaToDynamoDBProps.Builder()
|
|
124
124
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
|
125
|
-
.runtime(Runtime.
|
|
125
|
+
.runtime(Runtime.NODEJS_16_X)
|
|
126
126
|
.code(Code.fromAsset("lambda"))
|
|
127
127
|
.handler("index.handler")
|
|
128
128
|
.build())
|
|
@@ -11,4 +11,4 @@ src/aws_solutions_constructs.aws_iot_lambda_dynamodb.egg-info/top_level.txt
|
|
|
11
11
|
src/aws_solutions_constructs/aws_iot_lambda_dynamodb/__init__.py
|
|
12
12
|
src/aws_solutions_constructs/aws_iot_lambda_dynamodb/py.typed
|
|
13
13
|
src/aws_solutions_constructs/aws_iot_lambda_dynamodb/_jsii/__init__.py
|
|
14
|
-
src/aws_solutions_constructs/aws_iot_lambda_dynamodb/_jsii/aws-iot-lambda-dynamodb@2.
|
|
14
|
+
src/aws_solutions_constructs/aws_iot_lambda_dynamodb/_jsii/aws-iot-lambda-dynamodb@2.38.0.jsii.tgz
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|