Source: http.ml (p.lambda-runtime.0.1.0.doc.src.lambda-runtime)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
open Util
type api_gateway_request_identity =
{ cognito_identity_pool_id : string option [@key "cognitoIdentityPoolId"]
; account_id : string option [@key "accountId"]
; cognito_identity_id : string option [@key "cognitoIdentityId"]
; caller : string option
; access_key : string option [@key "accessKey"]
; api_key : string option [@key "apiKey"] [@default None]
; source_ip : string [@key "sourceIp"]
; cognito_authentication_type : string option
[@key "cognitoAuthenticationType"]
; cognito_authentication_provider : string option
[@key "cognitoAuthenticationProvider"]
; user_arn : string option [@key "userArn"]
; user_agent : string option [@key "userAgent"]
; user : string option
}
[@@deriving of_yojson]
type api_gateway_proxy_request_context =
{ account_id : string [@key "accountId"]
; resource_id : string [@key "resourceId"]
; stage : string
; request_id : string [@key "requestId"]
; identity : api_gateway_request_identity
; resource_path : string [@key "resourcePath"]
;
authorizer : string StringMap.t option [@default None]
; http_method : string [@key "httpMethod"]
; protocol : string option [@default None]
; path : string option [@default None]
; api_id : string [@key "apiId"]
}
[@@deriving of_yojson { strict = false }]
type api_gateway_proxy_request =
{ resource : string
; path : string
; http_method : string [@key "httpMethod"]
; headers : string StringMap.t
; query_string_parameters : string StringMap.t
[@key "queryStringParameters"] [@default StringMap.empty]
; path_parameters : string StringMap.t
[@key "pathParameters"] [@default StringMap.empty]
; stage_variables : string StringMap.t
[@key "stageVariables"] [@default StringMap.empty]
; request_context : api_gateway_proxy_request_context [@key "requestContext"]
; body : string option
; is_base64_encoded : bool [@key "isBase64Encoded"]
}
[@@deriving of_yojson { strict = false }]
type api_gateway_proxy_response =
{ status_code : int [@key "statusCode"]
; headers : string StringMap.t
; body : string
; is_base64_encoded : bool [@key "isBase64Encoded"]
}
[@@deriving to_yojson]
module API_gateway_request = struct
type t = api_gateway_proxy_request [@@deriving of_yojson]
end
module API_gateway_response = struct
type t = api_gateway_proxy_response [@@deriving to_yojson]
let to_yojson t = Lwt.return (to_yojson t)
end
include Runtime.Make (API_gateway_request) (API_gateway_response)