awscurl 0.1.0

https/mqtt API for AWS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# AWSCurl

Provides an _https/mqtt API_ for AWS. is inspired by [awscurl](https://github.com/okigan/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::from_env().expect("can't read aws credentials");
    let awscurl = AWSCurl::new(&profile);
    awscurl.http_request(&Method::GET, "https://blog.com/users")
        .expect("can't fetch users");
}
```