5 stable releases

new 1.4.0 Feb 3, 2026
1.3.0 Jan 15, 2026
1.2.0 Dec 9, 2025
1.1.0 Nov 20, 2025
1.0.0 Nov 19, 2025

#799 in Authentication

Download history 236/week @ 2025-11-21 2194/week @ 2025-11-28 2238/week @ 2025-12-05 2062/week @ 2025-12-12 965/week @ 2025-12-19 431/week @ 2025-12-26 1304/week @ 2026-01-02 2198/week @ 2026-01-09 4249/week @ 2026-01-16 4757/week @ 2026-01-23 5531/week @ 2026-01-30

17,241 downloads per month
Used in 7 crates (via aws-config)

Apache-2.0

330KB
5K SLoC

aws-sdk-signin

AWS Sign-In manages authentication for AWS services. This service provides secure authentication flows for accessing AWS resources from the console and developer tools.

Getting Started

Examples are available for many services and operations, check out the usage examples.

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

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

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

use aws_sdk_signin as signin;

#[::tokio::main]
async fn main() -> Result<(), signin::Error> {
    let config = aws_config::load_from_env().await;
    let client = aws_sdk_signin::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

~13–39MB
~593K SLoC