aws-sdk-s3control 1.119.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_put_access_point_scope_input_input_input(
    input: &crate::operation::put_access_point_scope::PutAccessPointScopeInput,
    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.scope {
        let inner_writer = scope.start_el("Scope");
        crate::protocol_serde::shape_scope::ser_scope(var_1, inner_writer)?
    }
    scope.finish();
    Ok(())
}