rusoto 0.8.0

AWS client libraries for Rust
docs.rs failed to build rusoto-0.8.0
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 client libraries for Rust.

Documentation

Docs are available at http://dualspark.github.io/rusoto/.

Installation

Rusoto is available on crates.io.

Use

More example code in src/bin/main.rs.

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);
}

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

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.

Information about how releases are made is in RELEASING.

Currently implemented

  1. SQS: See available functions in sqs.rs.
  2. S3: See available functions in s3.rs.

Contributing

  1. Install Rust 1.3.0 or later - http://www.rust-lang.org/
  2. Check out code from github
  3. Set up AWS credentials: environment variables (export AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY), ~/.aws/credentials, or use an IAM instance profile.
  4. cargo build
  5. cargo run - This will create real AWS resources and you may be charged.

Rust code generation from boto core service definitions:

./botocore_parser path/to/some.json ClientClassName > some_module.rs