-
Notifications
You must be signed in to change notification settings - Fork 480
/
Copy pathAPIGatewayProxyRequest.cs
405 lines (342 loc) · 14.8 KB
/
APIGatewayProxyRequest.cs
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
namespace Amazon.Lambda.APIGatewayEvents
{
using System;
using System.Collections.Generic;
/// <summary>
/// For request coming in from API Gateway proxy
/// http://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-set-up-simple-proxy.html
/// </summary>
public class APIGatewayProxyRequest
{
/// <summary>
/// The resource path defined in API Gateway
/// <para>
/// This field is only set for REST API requests.
/// </para>
/// </summary>
public string Resource { get; set; }
/// <summary>
/// The url path for the caller
/// <para>
/// This field is only set for REST API requests.
/// </para>
/// </summary>
public string Path { get; set; }
/// <summary>
/// The HTTP method used
/// <para>
/// This field is only set for REST API requests.
/// </para>
/// </summary>
public string HttpMethod { get; set; }
/// <summary>
/// The headers sent with the request. This collection will only contain a single value for a header.
///
/// API Gateway will populate both the Headers and MultiValueHeaders collection for every request. If multiple values
/// are set for a header then the Headers collection will just contain the last value.
/// <para>
/// This field is only set for REST API requests.
/// </para>
/// </summary>
public IDictionary<string, string> Headers { get; set; }
/// <summary>
/// The headers sent with the request. This collection supports multiple values for a single header.
///
/// API Gateway will populate both the Headers and MultiValueHeaders collection for every request. If multiple values
/// are set for a header then the Headers collection will just contain the last value.
/// <para>
/// This field is only set for REST API requests.
/// </para>
/// </summary>
public IDictionary<string, IList<string>> MultiValueHeaders { get; set; }
/// <summary>
/// The query string parameters that were part of the request. This collection will only contain a single value for a query parameter.
///
/// API Gateway will populate both the QueryStringParameters and MultiValueQueryStringParameters collection for every request. If multiple values
/// are set for a query parameter then the QueryStringParameters collection will just contain the last value.
/// <para>
/// This field is only set for REST API requests.
/// </para>
/// </summary>
public IDictionary<string, string> QueryStringParameters { get; set; }
/// <summary>
/// The query string parameters that were part of the request. This collection supports multiple values for a single query parameter.
///
/// API Gateway will populate both the QueryStringParameters and MultiValueQueryStringParameters collection for every request. If multiple values
/// are set for a query parameter then the QueryStringParameters collection will just contain the last value.
/// <para>
/// This field is only set for REST API requests.
/// </para>
/// </summary>
public IDictionary<string, IList<string>> MultiValueQueryStringParameters { get; set; }
/// <summary>
/// The path parameters that were part of the request
/// <para>
/// This field is only set for REST API requests.
/// </para>
/// </summary>
public IDictionary<string, string> PathParameters { get; set; }
/// <summary>
/// The stage variables defined for the stage in API Gateway
/// </summary>
public IDictionary<string, string> StageVariables { get; set; }
/// <summary>
/// The request context for the request
/// </summary>
public ProxyRequestContext RequestContext { get; set; }
/// <summary>
/// The HTTP request body.
/// </summary>
public string Body { get; set; }
/// <summary>
/// True if the body of the request is base 64 encoded.
/// </summary>
public bool IsBase64Encoded { get; set; }
/// <summary>
/// The ProxyRequestContext contains the information to identify the AWS account and resources invoking the
/// Lambda function. It also includes Cognito identity information for the caller.
/// </summary>
public class ProxyRequestContext
{
/// <summary>
/// The resource full path including the API Gateway stage
/// <para>
/// This field is only set for REST API requests.
/// </para>
/// </summary>
public string Path { get; set; }
/// <summary>
/// The account id that owns the executing Lambda function
/// </summary>
public string AccountId { get; set; }
/// <summary>
/// The resource id.
/// </summary>
public string ResourceId { get; set; }
/// <summary>
/// The API Gateway stage name
/// </summary>
public string Stage { get; set; }
/// <summary>
/// The unique request id
/// </summary>
public string RequestId { get; set; }
/// <summary>
/// The identity information for the request caller
/// </summary>
public RequestIdentity Identity { get; set; }
/// <summary>
/// The resource path defined in API Gateway
/// <para>
/// This field is only set for REST API requests.
/// </para>
/// </summary>
public string ResourcePath { get; set; }
/// <summary>
/// The HTTP method used
/// <para>
/// This field is only set for REST API requests.
/// </para>
/// </summary>
public string HttpMethod { get; set; }
/// <summary>
/// The API Gateway rest API Id.
/// </summary>
public string ApiId { get; set; }
/// <summary>
/// An automatically generated ID for the API call, which contains more useful information for debugging/troubleshooting.
/// </summary>
public string ExtendedRequestId { get; set; }
/// <summary>
/// The connectionId identifies a unique client connection in a WebSocket API.
/// <para>
/// This field is only set for WebSocket API requests.
/// </para>
/// </summary>
public string ConnectionId { get; set; }
/// <summary>
/// The Epoch-formatted connection time in a WebSocket API.
/// <para>
/// This field is only set for WebSocket API requests.
/// </para>
/// </summary>
public long ConnectedAt { get; set; }
/// <summary>
/// A domain name for the WebSocket API. This can be used to make a callback to the client (instead of a hard-coded value).
/// <para>
/// This field is only set for WebSocket API requests.
/// </para>
/// </summary>
public string DomainName { get; set; }
/// <summary>
/// The first label of the DomainName. This is often used as a caller/customer identifier.
/// </summary>
public string DomainPrefix { get; set; }
/// <summary>
/// The event type: CONNECT, MESSAGE, or DISCONNECT.
/// <para>
/// This field is only set for WebSocket API requests.
/// </para>
/// </summary>
public string EventType { get; set; }
/// <summary>
/// A unique server-side ID for a message. Available only when the $context.eventType is MESSAGE.
/// <para>
/// This field is only set for WebSocket API requests.
/// </para>
/// </summary>
public string MessageId { get; set; }
/// <summary>
/// The selected route key.
/// <para>
/// This field is only set for WebSocket API requests.
/// </para>
/// </summary>
public string RouteKey { get; set; }
/// <summary>
/// The APIGatewayCustomAuthorizerContext containing the custom properties set by a custom authorizer.
/// </summary>
public APIGatewayCustomAuthorizerContext Authorizer { get; set; }
/// <summary>
/// Gets and sets the operation name.
/// </summary>
public string OperationName { get; set; }
/// <summary>
/// Gets and sets the error.
/// </summary>
public string Error { get; set; }
/// <summary>
/// Gets and sets the integration latency.
/// </summary>
public string IntegrationLatency { get; set; }
/// <summary>
/// Gets and sets the message direction.
/// </summary>
public string MessageDirection { get; set; }
/// <summary>
/// Gets and sets the request time.
/// </summary>
public string RequestTime { get; set; }
/// <summary>
/// Gets and sets the request time as an epoch.
/// </summary>
public long RequestTimeEpoch { get; set; }
/// <summary>
/// Gets and sets the status.
/// </summary>
public string Status { get; set; }
}
/// <summary>
/// The RequestIdentity contains identity information for the request caller.
/// </summary>
public class RequestIdentity
{
/// <summary>
/// The Cognito identity pool id.
/// </summary>
public string CognitoIdentityPoolId { get; set; }
/// <summary>
/// The account id of the caller.
/// </summary>
public string AccountId { get; set; }
/// <summary>
/// The cognito identity id.
/// </summary>
public string CognitoIdentityId { get; set; }
/// <summary>
/// The caller
/// </summary>
public string Caller { get; set; }
/// <summary>
/// The API Key
/// </summary>
public string ApiKey { get; set; }
/// <summary>
/// The API Key ID
/// </summary>
public string ApiKeyId { get; set; }
/// <summary>
/// The Access Key
/// </summary>
public string AccessKey { get; set; }
/// <summary>
/// The source IP of the request
/// </summary>
public string SourceIp { get; set; }
/// <summary>
/// The Cognito authentication type used for authentication
/// </summary>
public string CognitoAuthenticationType { get; set; }
/// <summary>
/// The Cognito authentication provider
/// </summary>
public string CognitoAuthenticationProvider { get; set; }
/// <summary>
/// The user arn
/// </summary>
public string UserArn { get; set; }
/// <summary>
/// The user agent
/// </summary>
public string UserAgent { get; set; }
/// <summary>
/// The user
/// </summary>
public string User { get; set; }
/// <summary>
/// Properties for a client certificate.
/// </summary>
public ProxyRequestClientCert ClientCert { get; set; }
}
/// <summary>
/// Container for the properties of the client certificate.
/// </summary>
public class ProxyRequestClientCert
{
/// <summary>
/// The PEM-encoded client certificate that the client presented during mutual TLS authentication.
/// Present when a client accesses an API by using a custom domain name that has mutual
/// TLS enabled. Present only in access logs if mutual TLS authentication fails.
/// </summary>
public string ClientCertPem { get; set; }
/// <summary>
/// The distinguished name of the subject of the certificate that a client presents.
/// Present when a client accesses an API by using a custom domain name that has
/// mutual TLS enabled. Present only in access logs if mutual TLS authentication fails.
/// </summary>
public string SubjectDN { get; set; }
/// <summary>
/// The distinguished name of the issuer of the certificate that a client presents.
/// Present when a client accesses an API by using a custom domain name that has
/// mutual TLS enabled. Present only in access logs if mutual TLS authentication fails.
/// </summary>
public string IssuerDN { get; set; }
/// <summary>
/// The serial number of the certificate. Present when a client accesses an API by
/// using a custom domain name that has mutual TLS enabled.
/// Present only in access logs if mutual TLS authentication fails.
/// </summary>
public string SerialNumber { get; set; }
/// <summary>
/// The rules for when the client cert is valid.
/// </summary>
public ClientCertValidity Validity { get; set; }
}
/// <summary>
/// Container for the validation properties of a client cert.
/// </summary>
public class ClientCertValidity
{
/// <summary>
/// The date before which the certificate is invalid. Present when a client accesses an API by using a custom domain name
/// that has mutual TLS enabled. Present only in access logs if mutual TLS authentication fails.
/// </summary>
public string NotBefore { get; set; }
/// <summary>
/// The date after which the certificate is invalid. Present when a client accesses an API by using a custom domain name that
/// has mutual TLS enabled. Present only in access logs if mutual TLS authentication fails.
/// </summary>
public string NotAfter { get; set; }
}
}
}