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, DYNAMODB_SNAPSHOT_SCHEMA_VERSION,
};
pub use streams_dataplane::DynamoDbStreamsService;