Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nalchevanidze/awscurl-rs

https/mqtt API for AWS.
https://github.com/nalchevanidze/awscurl-rs

aws http mqtt v4sig

Last synced: about 10 hours ago
JSON representation

https/mqtt API for AWS.

Awesome Lists containing this project

README

        

# 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");
}
```