rusoto 0.11.1

AWS SDK for Rust
docs.rs failed to build rusoto-0.11.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: rusoto-0.24.2

Rusoto

Build Status

AWS SDK for Rust. Documentation.

Installation

Rusoto is available on crates.io.

Use

Examples are available in tests directory.

SQS example:

let provider = DefaultAWSCredentialsProviderChain::new();
let region = Region::UsEast1;

let mut sqs = SQSHelper::new(provider, &region);

let response = try!(sqs.list_queues());
for q in response.queue_urls {
    println!("Existing queue url: {}", q);
}

Credentials

For more information on Rusoto's use of AWS credentials such as priority and refreshing, see AWS Credentials.

Debugging

Rusoto uses the log logging facade. For tests it uses env_logger. To see output of logging from integration tests, run:

RUST_LOG=info cargo test --features aws_integration

Semantic versioning

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.

Releases

Information on release schedules and procedures are in RELEASING.

Currently implemented

  • DynamoDB
  • KMS
  • S3
  • SQS

Contributing

See CONTRIBUTING.