aws_sdk_s3/protocol_serde/
shape_output_location.rs

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_output_location(
    input: &crate::types::OutputLocation,
    writer: ::aws_smithy_xml::encode::ElWriter,
) -> Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    #[allow(unused_mut)]
    let mut scope = writer.finish();
    if let Some(var_1) = &input.s3 {
        let inner_writer = scope.start_el("S3");
        crate::protocol_serde::shape_s3_location::ser_s3_location(var_1, inner_writer)?
    }
    scope.finish();
    Ok(())
}