forked from aws/aws-lambda-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPIGatewayProxyResponse.cs
37 lines (33 loc) · 1.17 KB
/
APIGatewayProxyResponse.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
namespace Amazon.Lambda.APIGatewayEvents
{
using System.Collections.Generic;
using System.Runtime.Serialization;
/// <summary>
/// The response object for Lambda functions handling request from from API Gateway proxy
/// http://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-set-up-simple-proxy.html
/// </summary>
[DataContract]
public class APIGatewayProxyResponse
{
/// <summary>
/// The HTTP status code for the request
/// </summary>
[DataMember(Name = "statusCode")]
public int StatusCode { get; set; }
/// <summary>
/// The Http headers return in the response
/// </summary>
[DataMember(Name = "headers")]
public IDictionary<string, string> Headers { get; set; }
/// <summary>
/// The response body
/// </summary>
[DataMember(Name = "body")]
public string Body { get; set; }
/// <summary>
/// Flag indicating whether the body should be treated as a base64-encoded string
/// </summary>
[DataMember(Name = "isBase64Encoded")]
public bool IsBase64Encoded { get; set; }
}
}