January 2019
Intermediate to advanced
520 pages
14h 32m
English
To work with the AWS API, we will use the rusoto crate. Actually, it isn't a single crate, but a set of crates where every single crate covers some functionality of the AWS API. The basic crate is rusoto_core, which contains the Region struct that represents an address of the AWS API endpoint. Region is often necessary for other crates. Also, the rusoto_core crate re-exports the rusoto_credential crate, which contains types for loading and managing AWS credentials to access the API.
To interact with the DynamoDB database, we need to add the rusoto_dynamodb dependency. The full list looks like this:
chrono = "0.4"clap = "2.32"failure = "0.1"rusoto_core = "0.36.0"rusoto_dynamodb = "0.36.0"
We also added the chrono dependency ...
Read now
Unlock full access