fakecloud-dynamodb 0.33.0

DynamoDB implementation for FakeCloud
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub(crate) mod service;
pub(crate) mod state;
pub mod streams;
pub mod streams_dataplane;
pub mod ttl;

pub use service::helpers::schemas::{parse_gsi, parse_lsi, parse_tags};
pub use service::{save_dynamodb_snapshot, DynamoDbService};
pub use state::{
    AttributeDefinition, DynamoDbSnapshot, DynamoDbState, DynamoTable, GlobalSecondaryIndex,
    KeySchemaElement, LocalSecondaryIndex, OnDemandThroughput, Projection, ProvisionedThroughput,
    SharedDynamoDbState, StreamRecord, DYNAMODB_SNAPSHOT_SCHEMA_VERSION,
};
pub use streams_dataplane::DynamoDbStreamsService;