Please Note: The SDK is currently in Developer Preview and is intended strictly for feedback purposes only. Do not use this SDK for production workloads.
AWS IAM Identity Center (successor to AWS Single Sign-On) helps you securely create, or connect, your workforce identities and manage their access centrally across AWS accounts and applications. IAM Identity Center is the recommended approach for workforce authentication and authorization in AWS, for organizations of any size and type.
This reference guide provides information on single sign-on operations which could be used for access management of AWS accounts. For information about IAM Identity Center features, see the IAM Identity Center User Guide.
Many operations in the IAM Identity Center APIs rely on identifiers for users and groups, known as principals. For more information about how to work with principals and principal IDs in IAM Identity Center, see the Identity Store API Reference.
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-ssoadmin
to
your project, add the following to your Cargo.toml file:
toml
[dependencies]
aws-config = "0.55.0"
aws-sdk-ssoadmin = "0.25.0"
tokio = { version = "1", features = ["full"] }
Then in code, a client can be created with the following:
```rust,norun use awssdk_ssoadmin as ssoadmin;
async fn main() -> Result<(), ssoadmin::Error> { let config = awsconfig::loadfrom_env().await; let client = ssoadmin::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.
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.
This project is licensed under the Apache-2.0 License.