rusoto 0.17.0

AWS SDK for Rust
docs.rs failed to build rusoto-0.17.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

Build status

AWS SDK for Rust. Documentation.

IRC: #rusoto on irc.freenode.net.

Requirements

Rust 1.9.0 or later is required.

On OS X and Windows, you may need to install the openssl runtime and headers to get the rust-openssl dependency to build. Instructions for that can be found here.

Installation

Rusoto is available on crates.io. To use Rusoto in your Rust program built with Cargo, add it as a dependency and enable the Cargo features for any AWS service you want to use.

For example, to include only S3 and SQS:

[dependencies]
rusoto = {version = "0.15.2", features = ["s3", "sqs"]}

You can use the Cargo feature "all" to build Rusoto with support for every available service. Warning: building with "all" can require upwards of 5 GB of memory. Most people do not need all 40+ services so use individual features to enable the services you use.

Usage

Rusoto includes a public module for each AWS service it is compiled for containing Rust types for that service's API. A full list of these services and their Cargo feature names are included at the end of this document. All other public types are reexported to the crate root. Consult the rustdoc documentation for full details by running cargo doc or visiting the online documentation for the latest crates.io release.

A simple example of using Rusoto's DynamoDB API to list the names of all tables in a database:

extern crate rusoto;

use std::default::Default;

use rusoto::{DefaultCredentialsProvider, Region};
use rusoto::dynamodb::{DynamoDbClient, ListTablesInput};

fn main() {
  let provider = DefaultCredentialsProvider::new().unwrap();
  let client = DynamoDbClient::new(provider, Region::UsEast1);
  let list_tables_input: ListTablesInput = Default::default();

  match client.list_tables(&list_tables_input) {
    Ok(output) => {
      match output.table_names {
        Some(table_name_list) => {
          println!("Tables in database:");

          for table_name in table_name_list {
            println!("{}", table_name);
          }
        }
        None => println!("No tables in database!"),
      }
    }
    Err(error) => {
      println!("Error: {:?}", error);
    }
  }
}

Rusoto exposes relatively low level types for AWS's APIs. It may be convenient to use higher level types, which can be found in the rusoto_helpers crate.

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. In order to see the output, env_logger needs to be initialized. For example:

#[test]
fn list_objects_test() {
    let _ = env_logger::init();
    let bare_s3 = S3Client::new(DefaultCredentialsProvider::new().unwrap(), Region::UsWest2);
    let mut list_request = ListObjectsRequest::default();
    list_request.bucket = "rusototester".to_string();
    let result = bare_s3.list_objects(&list_request).unwrap();
    println!("result is {:?}", result);
}

To see output of logging from integration tests, run:

RUST_LOG=info cargo test --features all

To get logging output as well as println!() statements, run:

RUST_LOG=debug cargo test --features all -- --nocapture

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.

Supported AWS services

Service Cargo feature
All supported services all
Certificate Manager acm
CloudHSM cloudhsm
CloudTrail cloudtrail
CloudWatch Events events
CloudWatch Logs logs
CodeCommit codecommit
CodeDeploy codedeploy
CodePipeline codepipeline
Cognito Identity cognito-identity
Config config
Data Pipeline datapipeline
Device Farm devicefarm
Direct Connect directconnect
Directory Service ds
DynamoDB dynamodb
DynamoDB Streams dynamodbstreams
EC2 ec2
EC2 Container Registry ecr
ECS ecs
Elastic MapReduce emr
Elastic Transcoder ets
Inspector inspector
Key Management Service kms
Kinesis kinesis
Kinesis Firehose firehose
Machine Learning machinelearning
OpsWorks opsworks
Route53 Domains route53domains
S3 s3
Simple Systems Manager ssm
Simple Workflow Service swf
SQS sqs
Storage Gateway storagegateway
Web Application Firewall waf
WorkSpaces workspaces

Contributing

See CONTRIBUTING.