superposition_sdk 0.106.2

Rust SDK to work with Superposition
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_get_config_input_input(
                         object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
                         input: &crate::operation::get_config::GetConfigInput,
                    ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    if let Some(var_1) = &input.context {
        #[allow(unused_mut)]
        let mut object_2 = object.key("context").start_object();
        for (key_3, value_4) in var_1 {
             {
                object_2.key(key_3.as_str()).document(value_4);
            }
        }
        object_2.finish();
    }
    Ok(())
}