7 stable releases

new 1.6.0 Jun 13, 2024
1.5.0 Jun 11, 2024
1.3.0 May 29, 2024

#60 in #set

Download history 281/week @ 2024-05-18 107/week @ 2024-05-25 108/week @ 2024-06-01 119/week @ 2024-06-08

615 downloads per month

Apache-2.0

3MB
53K SLoC

aws-sdk-mailmanager

AWS SES Mail Manager API contains operations and data types that comprise the Mail Manager feature of Amazon Simple Email Service.

Mail Manager is a set of Amazon SES email gateway features designed to help you strengthen your organization's email infrastructure, simplify email workflow management, and streamline email compliance control. To learn more, see the Mail Manager chapter in the Amazon SES Developer Guide.

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-mailmanager to your project, add the following to your Cargo.toml file:

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

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

use aws_sdk_mailmanager as mailmanager;

#[::tokio::main]
async fn main() -> Result<(), mailmanager::Error> {
    let config = aws_config::load_from_env().await;
    let client = aws_sdk_mailmanager::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–19MB
~272K SLoC