1 unstable release
0.1.0 | Apr 14, 2023 |
---|
#139 in #mqtt
16KB
393 lines
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
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");
}
Dependencies
~10–20MB
~363K SLoC