rustack-events-model 0.7.0

EventBridge model types for Rustack
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! EventBridge model types for Rustack.
//!
//! This crate provides all EventBridge API types needed for the
//! Rustack Events implementation. Types are hand-written since the
//! `awsJson1_1` protocol makes serde derives trivial.
#![allow(clippy::doc_markdown)]
#![allow(missing_docs)]

pub mod error;
pub mod input;
pub mod operations;
pub mod output;
pub mod types;

pub use error::{EventsError, EventsErrorCode};
pub use operations::EventsOperation;