Skip to main content

aws_smithy_query/codec/
mod.rs

1/*
2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6//! Schema-serde codec for the awsQuery protocol.
7//!
8//! Serializes to URL-encoded form bodies (`Action=X&Version=Y&Param=value`).
9//! Deserialization is handled by the XML codec in `aws-smithy-xml`.
10
11pub mod serializer;
12pub use serializer::QueryShapeSerializer;