rust-aws-sns

crate rust-aws-sns provides a small wrapper around AWS SNS to make SMS usage more friendly.

Example Usage

```rust use rustawssns::{SmsType, SMS};

[tokio::main]

async fn main() { let s = SMS { // ..Default::default() can also pass default values smstype: SmsType::Transactional, senderid: "".into(), max_price: 0.01, }; let res = s.send("hello".into(), "91xxxxxx153x".into()).await; match res { Ok(r) => println!("{:?}", r), Err(e) => println!("{}", e), } } ```


Licence MIT