65 releases (21 stable)

new 1.22.0 Apr 22, 2024
1.19.0 Mar 26, 2024
1.9.0 Dec 21, 2023
1.3.0 Nov 27, 2023
0.0.0 May 7, 2021

#1481 in Network programming

Download history 7632/week @ 2024-01-03 8062/week @ 2024-01-10 9674/week @ 2024-01-17 9708/week @ 2024-01-24 9795/week @ 2024-01-31 10258/week @ 2024-02-07 9862/week @ 2024-02-14 11905/week @ 2024-02-21 13106/week @ 2024-02-28 12451/week @ 2024-03-06 14400/week @ 2024-03-13 9941/week @ 2024-03-20 11105/week @ 2024-03-27 11866/week @ 2024-04-03 13777/week @ 2024-04-10 10095/week @ 2024-04-17

48,825 downloads per month
Used in 2 crates

Apache-2.0

3MB
43K SLoC

aws-sdk-sns

Amazon Simple Notification Service (Amazon SNS) is a web service that enables you to build distributed web-enabled applications. Applications can use Amazon SNS to easily push real-time notification messages to interested subscribers over multiple delivery protocols. For more information about this product see the Amazon SNS product page. For detailed information about Amazon SNS features and their associated API calls, see the Amazon SNS Developer Guide.

For information on the permissions you need to use this API, see Identity and access management in Amazon SNS in the Amazon SNS Developer Guide.

We also provide SDKs that enable you to access Amazon SNS from your preferred programming language. The SDKs contain functionality that automatically takes care of tasks such as: cryptographically signing your service requests, retrying requests, and handling error responses. For a list of available SDKs, go to Tools for Amazon Web Services.

Getting Started

Examples are available for many services and operations, check out the examples folder in GitHub.

The SDK provides one crate per AWS service. You must add Tokio as a dependency within your Rust project to execute asynchronous code. To add aws-sdk-sns to your project, add the following to your Cargo.toml file:

[dependencies]
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
aws-sdk-sns = "1.22.0"
tokio = { version = "1", features = ["full"] }

Then in code, a client can be created with the following:

use aws_sdk_sns as sns;

#[::tokio::main]
async fn main() -> Result<(), sns::Error> {
    let config = aws_config::load_from_env().await;
    let client = aws_sdk_sns::Client::new(&config);

    // ... make some calls with the client

    Ok(())
}

See the client documentation for information on what calls can be made, and the inputs and outputs for each of those calls.

Using the SDK

Until the SDK is released, we will be adding information about using the SDK to the Developer Guide. Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do.

Getting Help

License

This project is licensed under the Apache-2.0 License.

Dependencies

~8–21MB
~272K SLoC