aws-solutions-constructs.aws-lambda-opensearch 2.74.0__py3-none-any.whl → 2.76.0__py3-none-any.whl
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_opensearch/__init__.py +3 -3
- aws_solutions_constructs/aws_lambda_opensearch/_jsii/__init__.py +2 -3
- aws_solutions_constructs/aws_lambda_opensearch/_jsii/aws-lambda-opensearch@2.76.0.jsii.tgz +0 -0
- {aws_solutions_constructs.aws_lambda_opensearch-2.74.0.dist-info → aws_solutions_constructs.aws_lambda_opensearch-2.76.0.dist-info}/METADATA +7 -8
- aws_solutions_constructs.aws_lambda_opensearch-2.76.0.dist-info/RECORD +9 -0
- {aws_solutions_constructs.aws_lambda_opensearch-2.74.0.dist-info → aws_solutions_constructs.aws_lambda_opensearch-2.76.0.dist-info}/WHEEL +1 -1
- aws_solutions_constructs/aws_lambda_opensearch/_jsii/aws-lambda-opensearch@2.74.0.jsii.tgz +0 -0
- aws_solutions_constructs.aws_lambda_opensearch-2.74.0.dist-info/RECORD +0 -9
- {aws_solutions_constructs.aws_lambda_opensearch-2.74.0.dist-info → aws_solutions_constructs.aws_lambda_opensearch-2.76.0.dist-info}/LICENSE +0 -0
- {aws_solutions_constructs.aws_lambda_opensearch-2.74.0.dist-info → aws_solutions_constructs.aws_lambda_opensearch-2.76.0.dist-info}/top_level.txt +0 -0
@@ -40,7 +40,7 @@ import * as lambda from "aws-cdk-lib/aws-lambda";
|
|
40
40
|
|
41
41
|
const lambdaProps: lambda.FunctionProps = {
|
42
42
|
code: lambda.Code.fromAsset(`lambda`),
|
43
|
-
runtime: lambda.Runtime.
|
43
|
+
runtime: lambda.Runtime.NODEJS_20_X,
|
44
44
|
handler: 'index.handler'
|
45
45
|
};
|
46
46
|
|
@@ -65,7 +65,7 @@ from constructs import Construct
|
|
65
65
|
|
66
66
|
lambda_props = _lambda.FunctionProps(
|
67
67
|
code=_lambda.Code.from_asset('lambda'),
|
68
|
-
runtime=_lambda.Runtime.
|
68
|
+
runtime=_lambda.Runtime.Python_3_11,
|
69
69
|
handler='index.handler'
|
70
70
|
)
|
71
71
|
|
@@ -92,7 +92,7 @@ import software.amazon.awsconstructs.services.lambdaopensearch.*;
|
|
92
92
|
new LambdaToOpenSearch(this, "sample",
|
93
93
|
new LambdaToOpenSearchProps.Builder()
|
94
94
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
95
|
-
.runtime(Runtime.
|
95
|
+
.runtime(Runtime.NODEJS_20_X)
|
96
96
|
.code(Code.fromAsset("lambda"))
|
97
97
|
.handler("index.handler")
|
98
98
|
.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-lambda-opensearch",
|
38
|
-
"2.
|
37
|
+
"2.76.0",
|
39
38
|
__name__[0:-6],
|
40
|
-
"aws-lambda-opensearch@2.
|
39
|
+
"aws-lambda-opensearch@2.76.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-lambda-opensearch
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.76.0
|
4
4
|
Summary: CDK Constructs for AWS Lambda to Amazon OpenSearch Service
|
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.173.2
|
23
|
+
Requires-Dist: aws-solutions-constructs.core==2.76.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
|
|
@@ -68,7 +67,7 @@ import * as lambda from "aws-cdk-lib/aws-lambda";
|
|
68
67
|
|
69
68
|
const lambdaProps: lambda.FunctionProps = {
|
70
69
|
code: lambda.Code.fromAsset(`lambda`),
|
71
|
-
runtime: lambda.Runtime.
|
70
|
+
runtime: lambda.Runtime.NODEJS_20_X,
|
72
71
|
handler: 'index.handler'
|
73
72
|
};
|
74
73
|
|
@@ -93,7 +92,7 @@ from constructs import Construct
|
|
93
92
|
|
94
93
|
lambda_props = _lambda.FunctionProps(
|
95
94
|
code=_lambda.Code.from_asset('lambda'),
|
96
|
-
runtime=_lambda.Runtime.
|
95
|
+
runtime=_lambda.Runtime.Python_3_11,
|
97
96
|
handler='index.handler'
|
98
97
|
)
|
99
98
|
|
@@ -120,7 +119,7 @@ import software.amazon.awsconstructs.services.lambdaopensearch.*;
|
|
120
119
|
new LambdaToOpenSearch(this, "sample",
|
121
120
|
new LambdaToOpenSearchProps.Builder()
|
122
121
|
.lambdaFunctionProps(new FunctionProps.Builder()
|
123
|
-
.runtime(Runtime.
|
122
|
+
.runtime(Runtime.NODEJS_20_X)
|
124
123
|
.code(Code.fromAsset("lambda"))
|
125
124
|
.handler("index.handler")
|
126
125
|
.build())
|
@@ -0,0 +1,9 @@
|
|
1
|
+
aws_solutions_constructs/aws_lambda_opensearch/__init__.py,sha256=7DEEbR4FoIFOvbuWGKCvUnSz7ewqhJjXCEbWoNmDqic,30398
|
2
|
+
aws_solutions_constructs/aws_lambda_opensearch/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
+
aws_solutions_constructs/aws_lambda_opensearch/_jsii/__init__.py,sha256=br4nczXq0Lm97wFHF8KWV9xQexsmIAlDOSG3JiS1jCs,1537
|
4
|
+
aws_solutions_constructs/aws_lambda_opensearch/_jsii/aws-lambda-opensearch@2.76.0.jsii.tgz,sha256=iLssYckEfJZwEM2utnjKSxEW4J4xjuXbTnFM1cBFidE,169234
|
5
|
+
aws_solutions_constructs.aws_lambda_opensearch-2.76.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
|
6
|
+
aws_solutions_constructs.aws_lambda_opensearch-2.76.0.dist-info/METADATA,sha256=h2ijXP3ELojBVQr8DjQhNBUXd3Nc2Swh4vvM7kVTtKw,10760
|
7
|
+
aws_solutions_constructs.aws_lambda_opensearch-2.76.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
8
|
+
aws_solutions_constructs.aws_lambda_opensearch-2.76.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
|
9
|
+
aws_solutions_constructs.aws_lambda_opensearch-2.76.0.dist-info/RECORD,,
|
Binary file
|
@@ -1,9 +0,0 @@
|
|
1
|
-
aws_solutions_constructs/aws_lambda_opensearch/__init__.py,sha256=rgX7Ogd4u1yvzUAPcOio-GLcvtxh-bWvmoy1paX9O_o,30397
|
2
|
-
aws_solutions_constructs/aws_lambda_opensearch/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
-
aws_solutions_constructs/aws_lambda_opensearch/_jsii/__init__.py,sha256=sEwVC634a0GkuwbTstESPyx-Z0LIK3yU-lg304TTHNg,1576
|
4
|
-
aws_solutions_constructs/aws_lambda_opensearch/_jsii/aws-lambda-opensearch@2.74.0.jsii.tgz,sha256=Lm3OaIq2gGz2tw5qadwsAqwOiYdrWhBBOwTKfLVSgsY,169256
|
5
|
-
aws_solutions_constructs.aws_lambda_opensearch-2.74.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
|
6
|
-
aws_solutions_constructs.aws_lambda_opensearch-2.74.0.dist-info/METADATA,sha256=xBwukx72U2h19HwYr3OlOFNDaincBIPdJ6z6Vcmsgdc,10812
|
7
|
-
aws_solutions_constructs.aws_lambda_opensearch-2.74.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
8
|
-
aws_solutions_constructs.aws_lambda_opensearch-2.74.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
|
9
|
-
aws_solutions_constructs.aws_lambda_opensearch-2.74.0.dist-info/RECORD,,
|
File without changes
|