dynamo_table 0.8.0

A high-level DynamoDB table abstraction with get_item, query, update, filter, batch operations, pagination, and type-safe queries
Documentation
1
2
3
4
5
6
7
8
//! DynamoDB consumed capacity tracking using global atomic counters.
//!
//! Gated by the `consumed_capacity_stats` feature flag (enabled by default).
//! Records read and write capacity units across every DynamoDB operation and
//! exposes convenience functions for querying totals and logging them via
//! the `tracing` crate.

pub mod stats;