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