|
| 1 | +from typing import Dict |
| 2 | +from typing import List |
| 3 | +from typing import Optional |
| 4 | + |
| 5 | +from pydantic.dataclasses import dataclass |
| 6 | + |
| 7 | + |
| 8 | +class APIGatewayEventConfig: |
| 9 | + extra = "allow" |
| 10 | + |
| 11 | + |
| 12 | +@dataclass(config=APIGatewayEventConfig, kw_only=True) |
| 13 | +class BaseAPIGatewayEvent: |
| 14 | + path: str |
| 15 | + httpMethod: str |
| 16 | + headers: Dict[str, str] |
| 17 | + queryStringParameters: Optional[Dict[str, str]] = None |
| 18 | + isBase64Encoded: Optional[bool] = None |
| 19 | + body: Optional[str] = None |
| 20 | + pathParameters: Optional[Dict[str, str]] = None |
| 21 | + stageVariables: Optional[Dict[str, str]] = None |
| 22 | + |
| 23 | + |
| 24 | +@dataclass(config=APIGatewayEventConfig, kw_only=True) |
| 25 | +class APIGatewayEvent(BaseAPIGatewayEvent): |
| 26 | + """AWS API Gateway event""" |
| 27 | + |
| 28 | + resource: str |
| 29 | + multiValueHeaders: Dict[str, List[str]] |
| 30 | + version: Optional[str] = "1.0" |
| 31 | + multiValueQueryStringParameters: Optional[Dict[str, List[str]]] = None |
| 32 | + |
| 33 | + |
| 34 | +@dataclass(config=APIGatewayEventConfig, kw_only=True) |
| 35 | +class APIGatewayEventV2(BaseAPIGatewayEvent): |
| 36 | + """AWS API Gateway event v2""" |
| 37 | + |
| 38 | + version: str |
| 39 | + routeKey: str |
| 40 | + rawPath: str |
| 41 | + rawQueryString: str |
| 42 | + cookies: Optional[List[str]] = None |
| 43 | + |
| 44 | + |
| 45 | +@dataclass(config=APIGatewayEventConfig, kw_only=True) |
| 46 | +class APIGatewayEventResponse: |
| 47 | + """AWS API Gateway event response""" |
| 48 | + |
| 49 | + isBase64Encoded: bool |
| 50 | + statusCode: int |
| 51 | + headers: Dict[str, str] |
| 52 | + multiValueHeaders: Dict[str, List[str]] |
| 53 | + body: str |
| 54 | + |
| 55 | + |
| 56 | +@dataclass(config=APIGatewayEventConfig, kw_only=True) |
| 57 | +class APIGatewayEventV2Response: |
| 58 | + """AWS API Gateway event v2 response""" |
| 59 | + |
| 60 | + isBase64Encoded: bool = False |
| 61 | + statusCode: int = 200 |
0 commit comments