AWSCurl

Provides an https/mqtt API for AWS. is inspired by awscurl, but does not provide a CLI, only an API for similar functions.

Example

```rs use awscurl::{AWSCurl, AWSProfile, Method};

fn main() { let profile = AWSProfile::fromenv().expect("can't read aws credentials"); let awscurl = AWSCurl::new(&profile); awscurl.httprequest(&Method::GET, "https://blog.com/users") .expect("can't fetch users"); } ```