aws-solutions-constructs.aws-iot-lambda 2.73.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.
Files changed (18) hide show
  1. {aws_solutions_constructs_aws_iot_lambda-2.73.0/src/aws_solutions_constructs.aws_iot_lambda.egg-info → aws_solutions_constructs_aws_iot_lambda-2.75.0}/PKG-INFO +7 -8
  2. {aws_solutions_constructs_aws_iot_lambda-2.73.0 → aws_solutions_constructs_aws_iot_lambda-2.75.0}/README.md +3 -3
  3. {aws_solutions_constructs_aws_iot_lambda-2.73.0 → aws_solutions_constructs_aws_iot_lambda-2.75.0}/setup.py +5 -6
  4. {aws_solutions_constructs_aws_iot_lambda-2.73.0 → aws_solutions_constructs_aws_iot_lambda-2.75.0}/src/aws_solutions_constructs/aws_iot_lambda/__init__.py +3 -3
  5. {aws_solutions_constructs_aws_iot_lambda-2.73.0 → aws_solutions_constructs_aws_iot_lambda-2.75.0}/src/aws_solutions_constructs/aws_iot_lambda/_jsii/__init__.py +2 -3
  6. aws_solutions_constructs_aws_iot_lambda-2.75.0/src/aws_solutions_constructs/aws_iot_lambda/_jsii/aws-iot-lambda@2.75.0.jsii.tgz +0 -0
  7. {aws_solutions_constructs_aws_iot_lambda-2.73.0 → aws_solutions_constructs_aws_iot_lambda-2.75.0/src/aws_solutions_constructs.aws_iot_lambda.egg-info}/PKG-INFO +7 -8
  8. {aws_solutions_constructs_aws_iot_lambda-2.73.0 → aws_solutions_constructs_aws_iot_lambda-2.75.0}/src/aws_solutions_constructs.aws_iot_lambda.egg-info/SOURCES.txt +1 -1
  9. aws_solutions_constructs_aws_iot_lambda-2.75.0/src/aws_solutions_constructs.aws_iot_lambda.egg-info/requires.txt +6 -0
  10. aws_solutions_constructs_aws_iot_lambda-2.73.0/src/aws_solutions_constructs/aws_iot_lambda/_jsii/aws-iot-lambda@2.73.0.jsii.tgz +0 -0
  11. aws_solutions_constructs_aws_iot_lambda-2.73.0/src/aws_solutions_constructs.aws_iot_lambda.egg-info/requires.txt +0 -7
  12. {aws_solutions_constructs_aws_iot_lambda-2.73.0 → aws_solutions_constructs_aws_iot_lambda-2.75.0}/LICENSE +0 -0
  13. {aws_solutions_constructs_aws_iot_lambda-2.73.0 → aws_solutions_constructs_aws_iot_lambda-2.75.0}/MANIFEST.in +0 -0
  14. {aws_solutions_constructs_aws_iot_lambda-2.73.0 → aws_solutions_constructs_aws_iot_lambda-2.75.0}/pyproject.toml +0 -0
  15. {aws_solutions_constructs_aws_iot_lambda-2.73.0 → aws_solutions_constructs_aws_iot_lambda-2.75.0}/setup.cfg +0 -0
  16. {aws_solutions_constructs_aws_iot_lambda-2.73.0 → aws_solutions_constructs_aws_iot_lambda-2.75.0}/src/aws_solutions_constructs/aws_iot_lambda/py.typed +0 -0
  17. {aws_solutions_constructs_aws_iot_lambda-2.73.0 → aws_solutions_constructs_aws_iot_lambda-2.75.0}/src/aws_solutions_constructs.aws_iot_lambda.egg-info/dependency_links.txt +0 -0
  18. {aws_solutions_constructs_aws_iot_lambda-2.73.0 → aws_solutions_constructs_aws_iot_lambda-2.75.0}/src/aws_solutions_constructs.aws_iot_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-iot-lambda
3
- Version: 2.73.0
3
+ Version: 2.75.0
4
4
  Summary: CDK Constructs for AWS IoT 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.161.0
23
- Requires-Dist: aws-cdk.integ-tests-alpha==2.161.0.a0
24
- Requires-Dist: aws-solutions-constructs.core==2.73.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.104.0
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
 
@@ -69,7 +68,7 @@ import * as lambda from 'aws-cdk-lib/aws-lambda';
69
68
  const constructProps: IotToLambdaProps = {
70
69
  lambdaFunctionProps: {
71
70
  code: lambda.Code.fromAsset(`lambda`),
72
- runtime: lambda.Runtime.NODEJS_16_X,
71
+ runtime: lambda.Runtime.NODEJS_20_X,
73
72
  handler: 'index.handler'
74
73
  },
75
74
  iotTopicRuleProps: {
@@ -99,7 +98,7 @@ from constructs import Construct
99
98
  IotToLambda(self, 'test_iot_lambda',
100
99
  lambda_function_props=_lambda.FunctionProps(
101
100
  code=_lambda.Code.from_asset('lambda'),
102
- runtime=_lambda.Runtime.PYTHON_3_9,
101
+ runtime=_lambda.Runtime.Python_3_11,
103
102
  handler='index.handler'
104
103
  ),
105
104
  iot_topic_rule_props=iot.CfnTopicRuleProps(
@@ -128,7 +127,7 @@ import software.amazon.awsconstructs.services.iotlambda.*;
128
127
 
129
128
  new IotToLambda(this, "test-iot-lambda-integration", new IotToLambdaProps.Builder()
130
129
  .lambdaFunctionProps(new FunctionProps.Builder()
131
- .runtime(Runtime.NODEJS_16_X)
130
+ .runtime(Runtime.NODEJS_20_X)
132
131
  .code(Code.fromAsset("lambda"))
133
132
  .handler("index.handler")
134
133
  .build())
@@ -40,7 +40,7 @@ import * as lambda from 'aws-cdk-lib/aws-lambda';
40
40
  const constructProps: IotToLambdaProps = {
41
41
  lambdaFunctionProps: {
42
42
  code: lambda.Code.fromAsset(`lambda`),
43
- runtime: lambda.Runtime.NODEJS_16_X,
43
+ runtime: lambda.Runtime.NODEJS_20_X,
44
44
  handler: 'index.handler'
45
45
  },
46
46
  iotTopicRuleProps: {
@@ -70,7 +70,7 @@ from constructs import Construct
70
70
  IotToLambda(self, 'test_iot_lambda',
71
71
  lambda_function_props=_lambda.FunctionProps(
72
72
  code=_lambda.Code.from_asset('lambda'),
73
- runtime=_lambda.Runtime.PYTHON_3_9,
73
+ runtime=_lambda.Runtime.Python_3_11,
74
74
  handler='index.handler'
75
75
  ),
76
76
  iot_topic_rule_props=iot.CfnTopicRuleProps(
@@ -99,7 +99,7 @@ import software.amazon.awsconstructs.services.iotlambda.*;
99
99
 
100
100
  new IotToLambda(this, "test-iot-lambda-integration", new IotToLambdaProps.Builder()
101
101
  .lambdaFunctionProps(new FunctionProps.Builder()
102
- .runtime(Runtime.NODEJS_16_X)
102
+ .runtime(Runtime.NODEJS_20_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",
8
- "version": "2.73.0",
8
+ "version": "2.75.0",
9
9
  "description": "CDK Constructs for AWS IoT to AWS Lambda 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._jsii": [
29
- "aws-iot-lambda@2.73.0.jsii.tgz"
29
+ "aws-iot-lambda@2.75.0.jsii.tgz"
30
30
  ],
31
31
  "aws_solutions_constructs.aws_iot_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.161.0, <3.0.0",
38
- "aws-cdk.integ-tests-alpha==2.161.0.a0",
39
- "aws-solutions-constructs.core==2.73.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.104.0, <2.0.0",
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
  ],
@@ -41,7 +41,7 @@ import * as lambda from 'aws-cdk-lib/aws-lambda';
41
41
  const constructProps: IotToLambdaProps = {
42
42
  lambdaFunctionProps: {
43
43
  code: lambda.Code.fromAsset(`lambda`),
44
- runtime: lambda.Runtime.NODEJS_16_X,
44
+ runtime: lambda.Runtime.NODEJS_20_X,
45
45
  handler: 'index.handler'
46
46
  },
47
47
  iotTopicRuleProps: {
@@ -71,7 +71,7 @@ from constructs import Construct
71
71
  IotToLambda(self, 'test_iot_lambda',
72
72
  lambda_function_props=_lambda.FunctionProps(
73
73
  code=_lambda.Code.from_asset('lambda'),
74
- runtime=_lambda.Runtime.PYTHON_3_9,
74
+ runtime=_lambda.Runtime.Python_3_11,
75
75
  handler='index.handler'
76
76
  ),
77
77
  iot_topic_rule_props=iot.CfnTopicRuleProps(
@@ -100,7 +100,7 @@ import software.amazon.awsconstructs.services.iotlambda.*;
100
100
 
101
101
  new IotToLambda(this, "test-iot-lambda-integration", new IotToLambdaProps.Builder()
102
102
  .lambdaFunctionProps(new FunctionProps.Builder()
103
- .runtime(Runtime.NODEJS_16_X)
103
+ .runtime(Runtime.NODEJS_20_X)
104
104
  .code(Code.fromAsset("lambda"))
105
105
  .handler("index.handler")
106
106
  .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-iot-lambda",
38
- "2.73.0",
37
+ "2.75.0",
39
38
  __name__[0:-6],
40
- "aws-iot-lambda@2.73.0.jsii.tgz",
39
+ "aws-iot-lambda@2.75.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-iot-lambda
3
- Version: 2.73.0
3
+ Version: 2.75.0
4
4
  Summary: CDK Constructs for AWS IoT 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.161.0
23
- Requires-Dist: aws-cdk.integ-tests-alpha==2.161.0.a0
24
- Requires-Dist: aws-solutions-constructs.core==2.73.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.104.0
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
 
@@ -69,7 +68,7 @@ import * as lambda from 'aws-cdk-lib/aws-lambda';
69
68
  const constructProps: IotToLambdaProps = {
70
69
  lambdaFunctionProps: {
71
70
  code: lambda.Code.fromAsset(`lambda`),
72
- runtime: lambda.Runtime.NODEJS_16_X,
71
+ runtime: lambda.Runtime.NODEJS_20_X,
73
72
  handler: 'index.handler'
74
73
  },
75
74
  iotTopicRuleProps: {
@@ -99,7 +98,7 @@ from constructs import Construct
99
98
  IotToLambda(self, 'test_iot_lambda',
100
99
  lambda_function_props=_lambda.FunctionProps(
101
100
  code=_lambda.Code.from_asset('lambda'),
102
- runtime=_lambda.Runtime.PYTHON_3_9,
101
+ runtime=_lambda.Runtime.Python_3_11,
103
102
  handler='index.handler'
104
103
  ),
105
104
  iot_topic_rule_props=iot.CfnTopicRuleProps(
@@ -128,7 +127,7 @@ import software.amazon.awsconstructs.services.iotlambda.*;
128
127
 
129
128
  new IotToLambda(this, "test-iot-lambda-integration", new IotToLambdaProps.Builder()
130
129
  .lambdaFunctionProps(new FunctionProps.Builder()
131
- .runtime(Runtime.NODEJS_16_X)
130
+ .runtime(Runtime.NODEJS_20_X)
132
131
  .code(Code.fromAsset("lambda"))
133
132
  .handler("index.handler")
134
133
  .build())
@@ -11,4 +11,4 @@ src/aws_solutions_constructs.aws_iot_lambda.egg-info/top_level.txt
11
11
  src/aws_solutions_constructs/aws_iot_lambda/__init__.py
12
12
  src/aws_solutions_constructs/aws_iot_lambda/py.typed
13
13
  src/aws_solutions_constructs/aws_iot_lambda/_jsii/__init__.py
14
- src/aws_solutions_constructs/aws_iot_lambda/_jsii/aws-iot-lambda@2.73.0.jsii.tgz
14
+ src/aws_solutions_constructs/aws_iot_lambda/_jsii/aws-iot-lambda@2.75.0.jsii.tgz
@@ -0,0 +1,6 @@
1
+ aws-cdk-lib<3.0.0,>=2.163.1
2
+ aws-solutions-constructs.core==2.75.0
3
+ constructs<11.0.0,>=10.0.0
4
+ jsii<2.0.0,>=1.106.0
5
+ publication>=0.0.3
6
+ typeguard<4.3.0,>=2.13.3
@@ -1,7 +0,0 @@
1
- aws-cdk-lib<3.0.0,>=2.161.0
2
- aws-cdk.integ-tests-alpha==2.161.0.a0
3
- aws-solutions-constructs.core==2.73.0
4
- constructs<11.0.0,>=10.0.0
5
- jsii<2.0.0,>=1.104.0
6
- publication>=0.0.3
7
- typeguard<4.3.0,>=2.13.3