derust 0.2.6

Easy way to start your Rust asynchronous application server using Tokio and Axum frameworks.
Documentation
1
2
3
4
5
6
7
8
9
use crate::awsx::SnsClient;
use aws_config::SdkConfig;
use aws_sdk_sns::Client;

pub async fn sns_client(aws_sdk_config: &SdkConfig) -> SnsClient {
    SnsClient {
        client: Client::new(aws_sdk_config),
    }
}