Registry / cloud / aws-sdk-sqs

aws-sdk-sqs

JSON →
library1.102.0rscratesunverified

AWS SDK for Amazon Simple Queue Service, providing async SQS operations.

# Cargo.toml [dependencies] aws-sdk-sqs = "1.102.0"
INSTALL
IMPORT
SIG · AWS-SDK-SQS
A
aws-sdk-sqs
cloudrustv1.102.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_sqs::Client;

Lists all SQS queues using the async AWS SDK client.

use aws_sdk_sqs::Client; use aws_config::load_from_env; #[tokio::main] async fn main() { let config = load_from_env().await; let client = Client::new(&config); let queues = client.list_queues().send().await.unwrap(); println!("{:?}", queues.queue_urls); }
Debug
Known issues
gotchaRequires a Tokio runtime for async operations.
fix
Add tokio as a dependency and use #[tokio::main] or create a runtime manually.
affects: >=1.0.0
gotchaMissing feature flags can cause compile errors for specific services.
fix
Enable the 'sqs' feature in aws-sdk-sqs dependency: aws-sdk-sqs = { version = "1", features = ["sqs"] }
affects: >=1.0.0
Upgrade
Version history
1.102.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
19 hits · last 30 days
node
18
Resources
aws-sdk-sqs — cargo add aws-sdk-sqs · libregistry