Skip to main content

fakecloud_cloudwatch/
lib.rs

1pub(crate) mod anomaly_detectors;
2pub(crate) mod composite_alarms;
3pub mod delivery;
4pub(crate) mod insight_rules;
5pub mod introspection;
6pub(crate) mod metric_streams;
7pub(crate) mod mute_rules;
8pub(crate) mod otel;
9pub(crate) mod service;
10pub(crate) mod state;
11pub(crate) mod tagging;
12
13#[cfg(test)]
14mod tests;
15
16pub use delivery::CloudwatchDeliveryImpl;
17pub use service::CloudWatchService;
18pub use state::{
19    AlarmState, CloudWatchAccounts, CloudWatchSnapshot, CloudWatchState, Dashboard, MetricAlarm,
20    MetricDatum, SharedCloudWatchState, CLOUDWATCH_SNAPSHOT_SCHEMA_VERSION,
21};