Skip to main content

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;
7
8pub use service::LogsService;
9pub use state::{
10    Delivery, DeliveryDestination, DeliverySource, Destination, LogAnomaly, LogEvent, LogGroup,
11    LogStream, LogsSnapshot, LogsState, MetricFilter, MetricTransformation, QueryDefinition,
12    ResourcePolicy, SharedLogsState, SubscriptionFilter, LOGS_SNAPSHOT_SCHEMA_VERSION,
13};