lambda_apigateway_response/types.rs
1use std::collections::HashMap;
2
3pub type Headers = HashMap<String, String>;
4pub type MultiValueHeaders = HashMap<String, Vec<String>>;
5
6pub type PathParameters = HashMap<String, String>;
7
8pub type QueryStringParameters = HashMap<String, String>;
9pub type MultiValueQueryStringParameters = HashMap<String, Vec<String>>;