forked from aws/aws-lambda-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
APIGatewayProxyResponse.cs
47 lines (42 loc) · 1.87 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
38
39
40
41
42
43
44
45
46
47
namespace Amazon.Lambda.APIGatewayEvents
{
using System.Collections.Generic;
using System.Runtime.Serialization;
/// <summary>
/// The response object for Lambda functions handling request 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. This collection supports setting single value for the same headers.
/// If both the Headers and MultiValueHeaders collections are set API Gateway will merge the collection
/// before returning back the headers to the caller.
/// </summary>
[DataMember(Name = "headers")]
public IDictionary<string, string> Headers { get; set; }
/// <summary>
/// The Http headers return in the response. This collection supports setting multiple values for the same headers.
/// If both the Headers and MultiValueHeaders collections are set API Gateway will merge the collection
/// before returning back the headers to the caller.
/// </summary>
[DataMember(Name = "multiValueHeaders")]
public IDictionary<string, IList<string>> MultiValueHeaders { 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; }
}
}