aws_sdk_accessanalyzer/protocol_serde/
shape_update_analyzer_input.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2pub fn ser_update_analyzer_input_input(
3    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
4    input: &crate::operation::update_analyzer::UpdateAnalyzerInput,
5) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
6    if let Some(var_1) = &input.configuration {
7        #[allow(unused_mut)]
8        let mut object_2 = object.key("configuration").start_object();
9        crate::protocol_serde::shape_analyzer_configuration::ser_analyzer_configuration(&mut object_2, var_1)?;
10        object_2.finish();
11    }
12    Ok(())
13}