aws-sdk-s3control 1.107.0

AWS SDK for AWS S3 Control
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_update_storage_lens_group_input_input_input(
    input: &crate::operation::update_storage_lens_group::UpdateStorageLensGroupInput,
    writer: ::aws_smithy_xml::encode::ElWriter,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    #[allow(unused_mut)]
    let mut scope = writer.finish();
    if let Some(var_1) = &input.storage_lens_group {
        let inner_writer = scope.start_el("StorageLensGroup");
        crate::protocol_serde::shape_storage_lens_group::ser_storage_lens_group(var_1, inner_writer)?
    }
    scope.finish();
    Ok(())
}