fakecloud_dynamodb/lib.rs
1pub(crate) mod service;
2pub mod state;
3pub mod streams;
4pub mod streams_dataplane;
5pub mod ttl;
6
7pub use service::DynamoDbService;
8pub use state::{
9 AttributeDefinition, DynamoDbSnapshot, DynamoDbState, DynamoTable, KeySchemaElement,
10 OnDemandThroughput, ProvisionedThroughput, SharedDynamoDbState,
11 DYNAMODB_SNAPSHOT_SCHEMA_VERSION,
12};
13pub use streams_dataplane::DynamoDbStreamsService;