AWS SDK for Rust.
Docs are available at http://dualspark.github.io/rusoto/.
Rusoto is available on crates.io.
Examples are available in tests directory.
```rust let provider = DefaultAWSCredentialsProviderChain::new(); let region = Region::UsEast1;
let mut sqs = SQSHelper::new(provider, ®ion);
let response = try!(sqs.listqueues()); for q in response.queueurls { println!("Existing queue url: {}", q); } ```
For more information on Rusoto's use of AWS credentials such as priority and refreshing, see AWS Credentials.
Rusoto complies with semantic versioning 2.0.0. Until reaching 1.0.0 the API is to be considered unstable. See Cargo.toml or rusoto on crates.io for current version.
Information on release schedules and procedures are in RELEASING.
cargo build
cargo test --verbose --features aws_integration
- This will create real AWS resources and you may be charged.See CODEGEN.