rustack_events_model/lib.rs
1//! EventBridge model types for Rustack.
2//!
3//! This crate provides all EventBridge API types needed for the
4//! Rustack Events implementation. Types are hand-written since the
5//! `awsJson1_1` protocol makes serde derives trivial.
6#![allow(clippy::doc_markdown)]
7#![allow(missing_docs)]
8
9pub mod error;
10pub mod input;
11pub mod operations;
12pub mod output;
13pub mod types;
14
15pub use error::{EventsError, EventsErrorCode};
16pub use operations::EventsOperation;