forked from aws-powertools/powertools-lambda-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvpc_lattice.py
130 lines (102 loc) · 3.58 KB
/
vpc_lattice.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
from __future__ import annotations
from typing import TYPE_CHECKING, Callable, Pattern
from aws_lambda_powertools.event_handler.api_gateway import (
ApiGatewayResolver,
ProxyEventType,
)
if TYPE_CHECKING:
from http import HTTPStatus
from aws_lambda_powertools.event_handler import CORSConfig
from aws_lambda_powertools.utilities.data_classes import VPCLatticeEvent, VPCLatticeEventV2
class VPCLatticeResolver(ApiGatewayResolver):
"""VPC Lattice resolver
Documentation:
- https://docs.aws.amazon.com/lambda/latest/dg/services-vpc-lattice.html
- https://docs.aws.amazon.com/lambda/latest/dg/services-vpc-lattice.html#vpc-lattice-receiving-events
Examples
--------
Simple example integrating with Tracer
```python
from aws_lambda_powertools import Tracer
from aws_lambda_powertools.event_handler import VPCLatticeResolver
tracer = Tracer()
app = VPCLatticeResolver()
@app.get("/get-call")
def simple_get():
return {"message": "Foo"}
@app.post("/post-call")
def simple_post():
post_data: dict = app.current_event.json_body
return {"message": post_data}
@tracer.capture_lambda_handler
def lambda_handler(event, context):
return app.resolve(event, context)
"""
current_event: VPCLatticeEvent
def __init__(
self,
cors: CORSConfig | None = None,
debug: bool | None = None,
serializer: Callable[[dict], str] | None = None,
strip_prefixes: list[str | Pattern] | None = None,
enable_validation: bool = False,
response_validation_error_http_status: HTTPStatus | int | None = None,
):
"""Amazon VPC Lattice resolver"""
super().__init__(
ProxyEventType.VPCLatticeEvent,
cors,
debug,
serializer,
strip_prefixes,
enable_validation,
response_validation_error_http_status,
)
def _get_base_path(self) -> str:
return ""
class VPCLatticeV2Resolver(ApiGatewayResolver):
"""VPC Lattice resolver
Documentation:
- https://docs.aws.amazon.com/lambda/latest/dg/services-vpc-lattice.html
- https://docs.aws.amazon.com/lambda/latest/dg/services-vpc-lattice.html#vpc-lattice-receiving-events
Examples
--------
Simple example integrating with Tracer
```python
from aws_lambda_powertools import Tracer
from aws_lambda_powertools.event_handler import VPCLatticeV2Resolver
tracer = Tracer()
app = VPCLatticeV2Resolver()
@app.get("/get-call")
def simple_get():
return {"message": "Foo"}
@app.post("/post-call")
def simple_post():
post_data: dict = app.current_event.json_body
return {"message": post_data}
@tracer.capture_lambda_handler
def lambda_handler(event, context):
return app.resolve(event, context)
"""
current_event: VPCLatticeEventV2
def __init__(
self,
cors: CORSConfig | None = None,
debug: bool | None = None,
serializer: Callable[[dict], str] | None = None,
strip_prefixes: list[str | Pattern] | None = None,
enable_validation: bool = False,
response_validation_error_http_status: HTTPStatus | int | None = None,
):
"""Amazon VPC Lattice resolver"""
super().__init__(
ProxyEventType.VPCLatticeEventV2,
cors,
debug,
serializer,
strip_prefixes,
enable_validation,
response_validation_error_http_status,
)
def _get_base_path(self) -> str:
return ""