aws-sdk-route53 1.99.0

AWS SDK for Amazon Route 53
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_delete_vpc_association_authorization_input_input_input(
    input: &crate::operation::delete_vpc_association_authorization::DeleteVpcAssociationAuthorizationInput,
    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.vpc {
        let inner_writer = scope.start_el("VPC");
        crate::protocol_serde::shape_vpc::ser_vpc(var_1, inner_writer)?
    }
    scope.finish();
    Ok(())
}