#dynamo-db #rusoto #rusoto-dynamodb

macro dynomite-derive

Derives AWS DynamoDB dynomite types from native Rust struct types

21 unstable releases (9 breaking)

0.10.0 Sep 6, 2020
0.9.0 Jul 14, 2020
0.8.2 Jun 4, 2020
0.7.0 Nov 3, 2019
0.1.3 Mar 8, 2018

#22 in #rusoto

Download history 50/week @ 2023-12-04 90/week @ 2023-12-11 65/week @ 2023-12-18 37/week @ 2023-12-25 157/week @ 2024-01-01 180/week @ 2024-01-08 74/week @ 2024-01-15 281/week @ 2024-01-22 516/week @ 2024-01-29 40/week @ 2024-02-05 3/week @ 2024-02-12 22/week @ 2024-02-19 102/week @ 2024-02-26 21/week @ 2024-03-04 23/week @ 2024-03-11 24/week @ 2024-03-18

171 downloads per month
Used in dynomite

MIT license

24KB
461 lines

🦀🧨

dynomite

dynomite makes DynamoDB fit your types (and visa versa)


Overview

Goals

  • ⚡ make writing dynamodb applications in rust a productive experience
  • 🦀 exploit rust's type safety features
  • 👩‍💻 leverage existing work of the rusoto rust project
  • ☔ commitment to supporting applications built using stable rust
  • 📚 commitment to documentation

Features

  • 💌 less boilerplate
  • ♻️ automatic async pagination
  • 🕶️ client level retry interfaces for robust error handling

From this

use std::collections::HashMap;
use rusoto_dynamodb::AttributeValue;
use uuid::Uuid;

let mut item = HashMap.new();
item.insert(
  "pk".to_string(), AttributeValue {
    s: Some(Uuid::new_v4().to_hyphenated().to_string()),
    ..AttributeValue::default()
  }
);
item.insert(
  // 🤬typos anyone?
  "quanity".to_string(), AttributeValue {
    n: Some("whoops".to_string()),
    ..AttributeValue::default()
  }
);

To this

use dynomite::Item;
use uuid::Uuid;

#[derive(Item)]
struct Order {
  #[dynomite(partition_key)]
  pk: Uuid,
  quantity: u16
}

let item = Order {
  pk: Uuid::new_v4(),
  quantity: 4
}.into();

Please see the API documentation for how to get started. Enjoy.

📦 Install

In your Cargo.toml file, add the following under the [dependencies] heading

dynomite = "0.10"

🤸 Examples

You can find some example application code under dynomite/examples

DynamoDB local

AWS provides a convenient way to host a local instance of DynamoDB for testing.

Here is a short example of how to get up a testing locally quickly with both dynomite as well as rusoto_dynamodb.

In one terminal spin up a Docker container for DynamoDB local listening on port 8000

$ docker run --rm -p 8000:8000 amazon/dynamodb-local

In another, run a rust binary with a client initialized like you see the the local.rs example

Resources

Doug Tangren (softprops) 2018-2020

Dependencies

~1.5MB
~34K SLoC