aws-solutions-constructs.aws-openapigateway-lambda 2.50.0__tar.gz → 2.52.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-openapigateway-lambda-2.50.0/src/aws_solutions_constructs.aws_openapigateway_lambda.egg-info → aws-solutions-constructs.aws-openapigateway-lambda-2.52.0}/PKG-INFO +2 -2
- {aws-solutions-constructs.aws-openapigateway-lambda-2.50.0 → aws-solutions-constructs.aws-openapigateway-lambda-2.52.0}/README.md +1 -1
- {aws-solutions-constructs.aws-openapigateway-lambda-2.50.0 → aws-solutions-constructs.aws-openapigateway-lambda-2.52.0}/setup.py +7 -6
- {aws-solutions-constructs.aws-openapigateway-lambda-2.50.0 → aws-solutions-constructs.aws-openapigateway-lambda-2.52.0}/src/aws_solutions_constructs/aws_openapigateway_lambda/__init__.py +1 -1
- {aws-solutions-constructs.aws-openapigateway-lambda-2.50.0 → aws-solutions-constructs.aws-openapigateway-lambda-2.52.0}/src/aws_solutions_constructs/aws_openapigateway_lambda/_jsii/__init__.py +3 -2
- aws-solutions-constructs.aws-openapigateway-lambda-2.52.0/src/aws_solutions_constructs/aws_openapigateway_lambda/_jsii/aws-openapigateway-lambda@2.52.0.jsii.tgz +0 -0
- {aws-solutions-constructs.aws-openapigateway-lambda-2.50.0 → aws-solutions-constructs.aws-openapigateway-lambda-2.52.0/src/aws_solutions_constructs.aws_openapigateway_lambda.egg-info}/PKG-INFO +2 -2
- {aws-solutions-constructs.aws-openapigateway-lambda-2.50.0 → aws-solutions-constructs.aws-openapigateway-lambda-2.52.0}/src/aws_solutions_constructs.aws_openapigateway_lambda.egg-info/SOURCES.txt +1 -1
- aws-solutions-constructs.aws-openapigateway-lambda-2.52.0/src/aws_solutions_constructs.aws_openapigateway_lambda.egg-info/requires.txt +8 -0
- aws-solutions-constructs.aws-openapigateway-lambda-2.50.0/src/aws_solutions_constructs/aws_openapigateway_lambda/_jsii/aws-openapigateway-lambda@2.50.0.jsii.tgz +0 -0
- aws-solutions-constructs.aws-openapigateway-lambda-2.50.0/src/aws_solutions_constructs.aws_openapigateway_lambda.egg-info/requires.txt +0 -7
- {aws-solutions-constructs.aws-openapigateway-lambda-2.50.0 → aws-solutions-constructs.aws-openapigateway-lambda-2.52.0}/LICENSE +0 -0
- {aws-solutions-constructs.aws-openapigateway-lambda-2.50.0 → aws-solutions-constructs.aws-openapigateway-lambda-2.52.0}/MANIFEST.in +0 -0
- {aws-solutions-constructs.aws-openapigateway-lambda-2.50.0 → aws-solutions-constructs.aws-openapigateway-lambda-2.52.0}/pyproject.toml +0 -0
- {aws-solutions-constructs.aws-openapigateway-lambda-2.50.0 → aws-solutions-constructs.aws-openapigateway-lambda-2.52.0}/setup.cfg +0 -0
- {aws-solutions-constructs.aws-openapigateway-lambda-2.50.0 → aws-solutions-constructs.aws-openapigateway-lambda-2.52.0}/src/aws_solutions_constructs/aws_openapigateway_lambda/py.typed +0 -0
- {aws-solutions-constructs.aws-openapigateway-lambda-2.50.0 → aws-solutions-constructs.aws-openapigateway-lambda-2.52.0}/src/aws_solutions_constructs.aws_openapigateway_lambda.egg-info/dependency_links.txt +0 -0
- {aws-solutions-constructs.aws-openapigateway-lambda-2.50.0 → aws-solutions-constructs.aws-openapigateway-lambda-2.52.0}/src/aws_solutions_constructs.aws_openapigateway_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-openapigateway-lambda
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.52.0
|
|
4
4
|
Summary: CDK constructs for defining an interaction between an OpenAPI-defined API Gateway and one or more Lambda functions.
|
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -52,7 +52,7 @@ Typescript
|
|
|
52
52
|
```python
|
|
53
53
|
import { Stack, StackProps } from 'aws-cdk-lib';
|
|
54
54
|
import { Construct } from 'constructs';
|
|
55
|
-
import {
|
|
55
|
+
import { OpenApiGatewayToLambda } from '@aws-solutions-constructs/aws-openapigateway-lambda';
|
|
56
56
|
import { Asset } from 'aws-cdk-lib/aws-s3-assets';
|
|
57
57
|
import * as path from 'path';
|
|
58
58
|
import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
@@ -30,7 +30,7 @@ Typescript
|
|
|
30
30
|
```python
|
|
31
31
|
import { Stack, StackProps } from 'aws-cdk-lib';
|
|
32
32
|
import { Construct } from 'constructs';
|
|
33
|
-
import {
|
|
33
|
+
import { OpenApiGatewayToLambda } from '@aws-solutions-constructs/aws-openapigateway-lambda';
|
|
34
34
|
import { Asset } from 'aws-cdk-lib/aws-s3-assets';
|
|
35
35
|
import * as path from 'path';
|
|
36
36
|
import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "aws-solutions-constructs.aws-openapigateway-lambda",
|
|
8
|
-
"version": "2.
|
|
8
|
+
"version": "2.52.0",
|
|
9
9
|
"description": "CDK constructs for defining an interaction between an OpenAPI-defined API Gateway and one or more Lambda functions.",
|
|
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_openapigateway_lambda._jsii": [
|
|
29
|
-
"aws-openapigateway-lambda@2.
|
|
29
|
+
"aws-openapigateway-lambda@2.52.0.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"aws_solutions_constructs.aws_openapigateway_lambda": [
|
|
32
32
|
"py.typed"
|
|
@@ -34,10 +34,11 @@ kwargs = json.loads(
|
|
|
34
34
|
},
|
|
35
35
|
"python_requires": "~=3.8",
|
|
36
36
|
"install_requires": [
|
|
37
|
-
"aws-cdk-lib==2.
|
|
38
|
-
"aws-
|
|
39
|
-
"aws-solutions-constructs.
|
|
40
|
-
"constructs==
|
|
37
|
+
"aws-cdk-lib==2.127.0",
|
|
38
|
+
"aws-cdk.integ-tests-alpha==2.127.0.a0",
|
|
39
|
+
"aws-solutions-constructs.core==2.52.0",
|
|
40
|
+
"aws-solutions-constructs.resources==2.52.0",
|
|
41
|
+
"constructs>=10.0.0, <11.0.0",
|
|
41
42
|
"jsii>=1.94.0, <2.0.0",
|
|
42
43
|
"publication>=0.0.3",
|
|
43
44
|
"typeguard~=2.13.3"
|
|
@@ -31,7 +31,7 @@ Typescript
|
|
|
31
31
|
```python
|
|
32
32
|
import { Stack, StackProps } from 'aws-cdk-lib';
|
|
33
33
|
import { Construct } from 'constructs';
|
|
34
|
-
import {
|
|
34
|
+
import { OpenApiGatewayToLambda } from '@aws-solutions-constructs/aws-openapigateway-lambda';
|
|
35
35
|
import { Asset } from 'aws-cdk-lib/aws-s3-assets';
|
|
36
36
|
import * as path from 'path';
|
|
37
37
|
import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
@@ -11,15 +11,16 @@ import typing_extensions
|
|
|
11
11
|
from typeguard import check_type
|
|
12
12
|
|
|
13
13
|
import aws_cdk._jsii
|
|
14
|
+
import aws_cdk.integ_tests_alpha._jsii
|
|
14
15
|
import aws_solutions_constructs.core._jsii
|
|
15
16
|
import aws_solutions_constructs.resources._jsii
|
|
16
17
|
import constructs._jsii
|
|
17
18
|
|
|
18
19
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
19
20
|
"@aws-solutions-constructs/aws-openapigateway-lambda",
|
|
20
|
-
"2.
|
|
21
|
+
"2.52.0",
|
|
21
22
|
__name__[0:-6],
|
|
22
|
-
"aws-openapigateway-lambda@2.
|
|
23
|
+
"aws-openapigateway-lambda@2.52.0.jsii.tgz",
|
|
23
24
|
)
|
|
24
25
|
|
|
25
26
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-solutions-constructs.aws-openapigateway-lambda
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.52.0
|
|
4
4
|
Summary: CDK constructs for defining an interaction between an OpenAPI-defined API Gateway and one or more Lambda functions.
|
|
5
5
|
Home-page: https://github.com/awslabs/aws-solutions-constructs.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -52,7 +52,7 @@ Typescript
|
|
|
52
52
|
```python
|
|
53
53
|
import { Stack, StackProps } from 'aws-cdk-lib';
|
|
54
54
|
import { Construct } from 'constructs';
|
|
55
|
-
import {
|
|
55
|
+
import { OpenApiGatewayToLambda } from '@aws-solutions-constructs/aws-openapigateway-lambda';
|
|
56
56
|
import { Asset } from 'aws-cdk-lib/aws-s3-assets';
|
|
57
57
|
import * as path from 'path';
|
|
58
58
|
import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
@@ -11,4 +11,4 @@ src/aws_solutions_constructs.aws_openapigateway_lambda.egg-info/top_level.txt
|
|
|
11
11
|
src/aws_solutions_constructs/aws_openapigateway_lambda/__init__.py
|
|
12
12
|
src/aws_solutions_constructs/aws_openapigateway_lambda/py.typed
|
|
13
13
|
src/aws_solutions_constructs/aws_openapigateway_lambda/_jsii/__init__.py
|
|
14
|
-
src/aws_solutions_constructs/aws_openapigateway_lambda/_jsii/aws-openapigateway-lambda@2.
|
|
14
|
+
src/aws_solutions_constructs/aws_openapigateway_lambda/_jsii/aws-openapigateway-lambda@2.52.0.jsii.tgz
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|