Skip to main content

rustack_ssm_model/
lib.rs

1//! SSM Parameter Store model types for Rustack.
2//!
3//! This crate provides all SSM Parameter Store API types needed for the
4//! Rustack SSM implementation. Types are hand-written since the SSM
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::{SsmError, SsmErrorCode};
16pub use operations::SsmOperation;