fakecloud_logs/lib.rs
1pub mod filter_pattern;
2pub mod ingest;
3pub mod query;
4pub(crate) mod service;
5pub(crate) mod state;
6pub mod transformer;
7pub(crate) mod validation;
8
9pub use service::LogsService;
10pub use state::{
11 Delivery, DeliveryDestination, DeliverySource, Destination, LogAnomaly, LogEvent, LogGroup,
12 LogStream, LogsSnapshot, LogsState, MetricFilter, MetricTransformation, QueryDefinition,
13 ResourcePolicy, SharedLogsState, SubscriptionFilter, LOGS_SNAPSHOT_SCHEMA_VERSION,
14};