dynamodb-expression
A Rust crate to help build DynamoDB condition, filter, key condition, and update expressions in a type-safe way, including using expression attribute names and expression attribute values.
An example showing a how to use this crate to perform a query:
use BehaviorVersion;
use Client;
use ;
let client = new;
let query_output = builder
.with_filter
.with_projection
.with_key_condition
.build
.query
.table_name
.send
.await?;
For more, see the docs.