1#![allow(clippy::module_inception)]
2#![allow(clippy::upper_case_acronyms)]
3#![allow(clippy::large_enum_variant)]
4#![allow(clippy::wrong_self_convention)]
5#![allow(clippy::should_implement_trait)]
6#![allow(clippy::blacklisted_name)]
7#![allow(clippy::vec_init_then_push)]
8#![allow(rustdoc::bare_urls)]
9pub mod error;
14pub mod input;
16mod json_deser;
17mod json_ser;
18pub mod model;
20pub mod operation;
22mod operation_deser;
23pub mod operation_handler;
25pub mod operation_registry;
27mod operation_ser;
28pub mod output;
30mod server_operation_handler_trait;
31pub static PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
33pub use aws_smithy_http::byte_stream::ByteStream;
34pub use aws_smithy_http::result::SdkError;
35pub use aws_smithy_types::Blob;
36pub use aws_smithy_types::DateTime;