fakecloud_dynamodb/
lib.rs1pub(crate) mod service;
2pub(crate) mod state;
3pub mod streams;
4pub mod streams_dataplane;
5pub mod ttl;
6
7pub use service::helpers::schemas::{parse_gsi, parse_lsi, parse_tags};
8pub use service::{save_dynamodb_snapshot, DynamoDbService};
9pub use state::{
10 AttributeDefinition, DynamoDbSnapshot, DynamoDbState, DynamoTable, GlobalSecondaryIndex,
11 KeySchemaElement, LocalSecondaryIndex, OnDemandThroughput, Projection, ProvisionedThroughput,
12 SharedDynamoDbState, StreamRecord, DYNAMODB_SNAPSHOT_SCHEMA_VERSION,
13};
14pub use streams_dataplane::DynamoDbStreamsService;