Registry / cloud / aws-sdk-iam

aws-sdk-iam

JSON →
library1.113.0rscratesunverified

AWS SDK for AWS Identity and Access Management, enabling programmatic management of IAM users, roles, and policies.

# Cargo.toml [dependencies] aws-sdk-iam = "1.113.0"
INSTALL
IMPORT
SIG · AWS-SDK-IAM
A
aws-sdk-iam
cloudrustv1.113.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Client
use aws_sdk_iam::Client;

Lists IAM users using the AWS SDK for Rust.

use aws_sdk_iam::Client; #[tokio::main] async fn main() { let client = Client::new(&aws_config::load_from_env().await); let users = client.list_users().send().await.unwrap(); println!("Users: {:?}", users.users()); }
Debug
Known issues
gotchaRequires an async runtime (e.g., Tokio) to execute requests.
fix
Add tokio as a dependency and use #[tokio::main] or another async runtime.
affects: >=1.0.0
gotchaSome operations require specific feature flags (e.g., `native-tls` or `rustls`) for TLS implementation.
fix
Enable the appropriate feature in Cargo.toml, e.g., aws-sdk-iam = { features = ["rustls"] }.
affects: >=1.0.0
Upgrade
Version history
1.113.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
21 hits · last 30 days
node
16
Resources
aws-sdk-iam — cargo add aws-sdk-iam · libregistry