rustack-ssm-model 0.6.0

SSM Parameter Store model types for Rustack
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! SSM Parameter Store model types for Rustack.
//!
//! This crate provides all SSM Parameter Store API types needed for the
//! Rustack SSM implementation. Types are hand-written since the SSM
//! `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::{SsmError, SsmErrorCode};
pub use operations::SsmOperation;