lambda-apigateway-response 0.1.1

Response object for AWS Lambda with API Gateway
Documentation
1
2
3
4
5
6
7
8
9
use std::collections::HashMap;

pub type Headers = HashMap<String, String>;
pub type MultiValueHeaders = HashMap<String, Vec<String>>;

pub type PathParameters = HashMap<String, String>;

pub type QueryStringParameters = HashMap<String, String>;
pub type MultiValueQueryStringParameters = HashMap<String, Vec<String>>;