aws-solutions-constructs.aws-iot-lambda-dynamodb 2.78.1__tar.gz → 2.79.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.
Files changed (18) hide show
  1. {aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1/src/aws_solutions_constructs.aws_iot_lambda_dynamodb.egg-info → aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0}/PKG-INFO +5 -5
  2. {aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1 → aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0}/README.md +1 -1
  3. {aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1 → aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0}/setup.py +5 -5
  4. {aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1 → aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0}/src/aws_solutions_constructs/aws_iot_lambda_dynamodb/__init__.py +1 -1
  5. {aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1 → aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0}/src/aws_solutions_constructs/aws_iot_lambda_dynamodb/_jsii/__init__.py +2 -2
  6. aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0/src/aws_solutions_constructs/aws_iot_lambda_dynamodb/_jsii/aws-iot-lambda-dynamodb@2.79.0.jsii.tgz +0 -0
  7. {aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1 → aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0/src/aws_solutions_constructs.aws_iot_lambda_dynamodb.egg-info}/PKG-INFO +5 -5
  8. {aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1 → aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0}/src/aws_solutions_constructs.aws_iot_lambda_dynamodb.egg-info/SOURCES.txt +1 -1
  9. aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0/src/aws_solutions_constructs.aws_iot_lambda_dynamodb.egg-info/requires.txt +8 -0
  10. aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1/src/aws_solutions_constructs/aws_iot_lambda_dynamodb/_jsii/aws-iot-lambda-dynamodb@2.78.1.jsii.tgz +0 -0
  11. aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1/src/aws_solutions_constructs.aws_iot_lambda_dynamodb.egg-info/requires.txt +0 -8
  12. {aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1 → aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0}/LICENSE +0 -0
  13. {aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1 → aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0}/MANIFEST.in +0 -0
  14. {aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1 → aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0}/pyproject.toml +0 -0
  15. {aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1 → aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0}/setup.cfg +0 -0
  16. {aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1 → aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0}/src/aws_solutions_constructs/aws_iot_lambda_dynamodb/py.typed +0 -0
  17. {aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1 → aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.0}/src/aws_solutions_constructs.aws_iot_lambda_dynamodb.egg-info/dependency_links.txt +0 -0
  18. {aws_solutions_constructs_aws_iot_lambda_dynamodb-2.78.1 → aws_solutions_constructs_aws_iot_lambda_dynamodb-2.79.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.78.1
3
+ Version: 2.79.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
@@ -19,9 +19,9 @@ Requires-Python: ~=3.9
19
19
  Description-Content-Type: text/markdown
20
20
  License-File: LICENSE
21
21
  Requires-Dist: aws-cdk-lib<3.0.0,>=2.177.0
22
- Requires-Dist: aws-solutions-constructs.aws-iot-lambda==2.78.1
23
- Requires-Dist: aws-solutions-constructs.aws-lambda-dynamodb==2.78.1
24
- Requires-Dist: aws-solutions-constructs.core==2.78.1
22
+ Requires-Dist: aws-solutions-constructs.aws-iot-lambda==2.79.0
23
+ Requires-Dist: aws-solutions-constructs.aws-lambda-dynamodb==2.79.0
24
+ Requires-Dist: aws-solutions-constructs.core==2.79.0
25
25
  Requires-Dist: constructs<11.0.0,>=10.0.0
26
26
  Requires-Dist: jsii<2.0.0,>=1.109.0
27
27
  Requires-Dist: publication>=0.0.3
@@ -99,7 +99,7 @@ from constructs import Construct
99
99
  IotToLambdaToDynamoDB(self, 'test-iot-lambda-dynamodb-stack',
100
100
  lambda_function_props=_lambda.FunctionProps(
101
101
  code=_lambda.Code.from_asset('lambda'),
102
- runtime=_lambda.Runtime.Python_3_11,
102
+ runtime=_lambda.Runtime.PYTHON_3_11,
103
103
  handler='index.handler'
104
104
  ),
105
105
  iot_topic_rule_props=iot.CfnTopicRuleProps(
@@ -70,7 +70,7 @@ from constructs import Construct
70
70
  IotToLambdaToDynamoDB(self, 'test-iot-lambda-dynamodb-stack',
71
71
  lambda_function_props=_lambda.FunctionProps(
72
72
  code=_lambda.Code.from_asset('lambda'),
73
- runtime=_lambda.Runtime.Python_3_11,
73
+ runtime=_lambda.Runtime.PYTHON_3_11,
74
74
  handler='index.handler'
75
75
  ),
76
76
  iot_topic_rule_props=iot.CfnTopicRuleProps(
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "aws-solutions-constructs.aws-iot-lambda-dynamodb",
8
- "version": "2.78.1",
8
+ "version": "2.79.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.78.1.jsii.tgz"
29
+ "aws-iot-lambda-dynamodb@2.79.0.jsii.tgz"
30
30
  ],
31
31
  "aws_solutions_constructs.aws_iot_lambda_dynamodb": [
32
32
  "py.typed"
@@ -35,9 +35,9 @@ kwargs = json.loads(
35
35
  "python_requires": "~=3.9",
36
36
  "install_requires": [
37
37
  "aws-cdk-lib>=2.177.0, <3.0.0",
38
- "aws-solutions-constructs.aws-iot-lambda==2.78.1",
39
- "aws-solutions-constructs.aws-lambda-dynamodb==2.78.1",
40
- "aws-solutions-constructs.core==2.78.1",
38
+ "aws-solutions-constructs.aws-iot-lambda==2.79.0",
39
+ "aws-solutions-constructs.aws-lambda-dynamodb==2.79.0",
40
+ "aws-solutions-constructs.core==2.79.0",
41
41
  "constructs>=10.0.0, <11.0.0",
42
42
  "jsii>=1.109.0, <2.0.0",
43
43
  "publication>=0.0.3",
@@ -71,7 +71,7 @@ from constructs import Construct
71
71
  IotToLambdaToDynamoDB(self, 'test-iot-lambda-dynamodb-stack',
72
72
  lambda_function_props=_lambda.FunctionProps(
73
73
  code=_lambda.Code.from_asset('lambda'),
74
- runtime=_lambda.Runtime.Python_3_11,
74
+ runtime=_lambda.Runtime.PYTHON_3_11,
75
75
  handler='index.handler'
76
76
  ),
77
77
  iot_topic_rule_props=iot.CfnTopicRuleProps(
@@ -36,9 +36,9 @@ import constructs._jsii
36
36
 
37
37
  __jsii_assembly__ = jsii.JSIIAssembly.load(
38
38
  "@aws-solutions-constructs/aws-iot-lambda-dynamodb",
39
- "2.78.1",
39
+ "2.79.0",
40
40
  __name__[0:-6],
41
- "aws-iot-lambda-dynamodb@2.78.1.jsii.tgz",
41
+ "aws-iot-lambda-dynamodb@2.79.0.jsii.tgz",
42
42
  )
43
43
 
44
44
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-solutions-constructs.aws-iot-lambda-dynamodb
3
- Version: 2.78.1
3
+ Version: 2.79.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
@@ -19,9 +19,9 @@ Requires-Python: ~=3.9
19
19
  Description-Content-Type: text/markdown
20
20
  License-File: LICENSE
21
21
  Requires-Dist: aws-cdk-lib<3.0.0,>=2.177.0
22
- Requires-Dist: aws-solutions-constructs.aws-iot-lambda==2.78.1
23
- Requires-Dist: aws-solutions-constructs.aws-lambda-dynamodb==2.78.1
24
- Requires-Dist: aws-solutions-constructs.core==2.78.1
22
+ Requires-Dist: aws-solutions-constructs.aws-iot-lambda==2.79.0
23
+ Requires-Dist: aws-solutions-constructs.aws-lambda-dynamodb==2.79.0
24
+ Requires-Dist: aws-solutions-constructs.core==2.79.0
25
25
  Requires-Dist: constructs<11.0.0,>=10.0.0
26
26
  Requires-Dist: jsii<2.0.0,>=1.109.0
27
27
  Requires-Dist: publication>=0.0.3
@@ -99,7 +99,7 @@ from constructs import Construct
99
99
  IotToLambdaToDynamoDB(self, 'test-iot-lambda-dynamodb-stack',
100
100
  lambda_function_props=_lambda.FunctionProps(
101
101
  code=_lambda.Code.from_asset('lambda'),
102
- runtime=_lambda.Runtime.Python_3_11,
102
+ runtime=_lambda.Runtime.PYTHON_3_11,
103
103
  handler='index.handler'
104
104
  ),
105
105
  iot_topic_rule_props=iot.CfnTopicRuleProps(
@@ -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.78.1.jsii.tgz
14
+ src/aws_solutions_constructs/aws_iot_lambda_dynamodb/_jsii/aws-iot-lambda-dynamodb@2.79.0.jsii.tgz
@@ -0,0 +1,8 @@
1
+ aws-cdk-lib<3.0.0,>=2.177.0
2
+ aws-solutions-constructs.aws-iot-lambda==2.79.0
3
+ aws-solutions-constructs.aws-lambda-dynamodb==2.79.0
4
+ aws-solutions-constructs.core==2.79.0
5
+ constructs<11.0.0,>=10.0.0
6
+ jsii<2.0.0,>=1.109.0
7
+ publication>=0.0.3
8
+ typeguard<4.3.0,>=2.13.3
@@ -1,8 +0,0 @@
1
- aws-cdk-lib<3.0.0,>=2.177.0
2
- aws-solutions-constructs.aws-iot-lambda==2.78.1
3
- aws-solutions-constructs.aws-lambda-dynamodb==2.78.1
4
- aws-solutions-constructs.core==2.78.1
5
- constructs<11.0.0,>=10.0.0
6
- jsii<2.0.0,>=1.109.0
7
- publication>=0.0.3
8
- typeguard<4.3.0,>=2.13.3