aws-sdk-ec2 1.222.0

AWS SDK for Amazon Elastic Compute Cloud
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(clippy::unnecessary_wraps)]
pub fn de_get_vpn_tunnel_replacement_status_http_error(
    _response_status: u16,
    _response_headers: &::aws_smithy_runtime_api::http::Headers,
    _response_body: &[u8],
) -> std::result::Result<
    crate::operation::get_vpn_tunnel_replacement_status::GetVpnTunnelReplacementStatusOutput,
    crate::operation::get_vpn_tunnel_replacement_status::GetVpnTunnelReplacementStatusError,
> {
    #[allow(unused_mut)]
    let mut generic_builder = crate::protocol_serde::parse_http_error_metadata(_response_status, _response_headers, _response_body)
        .map_err(crate::operation::get_vpn_tunnel_replacement_status::GetVpnTunnelReplacementStatusError::unhandled)?;
    generic_builder = ::aws_types::request_id::apply_request_id(generic_builder, _response_headers);
    let generic = generic_builder.build();
    Err(crate::operation::get_vpn_tunnel_replacement_status::GetVpnTunnelReplacementStatusError::generic(generic))
}

#[allow(clippy::unnecessary_wraps)]
pub fn de_get_vpn_tunnel_replacement_status_http_response(
    _response_status: u16,
    _response_headers: &::aws_smithy_runtime_api::http::Headers,
    _response_body: &[u8],
) -> std::result::Result<
    crate::operation::get_vpn_tunnel_replacement_status::GetVpnTunnelReplacementStatusOutput,
    crate::operation::get_vpn_tunnel_replacement_status::GetVpnTunnelReplacementStatusError,
> {
    Ok({
        #[allow(unused_mut)]
        let mut output = crate::operation::get_vpn_tunnel_replacement_status::builders::GetVpnTunnelReplacementStatusOutputBuilder::default();
        output = crate::protocol_serde::shape_get_vpn_tunnel_replacement_status::de_get_vpn_tunnel_replacement_status(_response_body, output)
            .map_err(crate::operation::get_vpn_tunnel_replacement_status::GetVpnTunnelReplacementStatusError::unhandled)?;
        output._set_request_id(::aws_types::request_id::RequestId::request_id(_response_headers).map(str::to_string));
        output.build()
    })
}

#[allow(unused_mut)]
pub fn de_get_vpn_tunnel_replacement_status(
    inp: &[u8],
    mut builder: crate::operation::get_vpn_tunnel_replacement_status::builders::GetVpnTunnelReplacementStatusOutputBuilder,
) -> std::result::Result<
    crate::operation::get_vpn_tunnel_replacement_status::builders::GetVpnTunnelReplacementStatusOutputBuilder,
    ::aws_smithy_xml::decode::XmlDecodeError,
> {
    let mut doc = ::aws_smithy_xml::decode::Document::try_from(inp)?;

    #[allow(unused_mut)]
    let mut decoder = doc.root_element()?;
    #[allow(unused_variables)]
    let start_el = decoder.start_el();
    if !(start_el.matches("GetVpnTunnelReplacementStatusResponse")) {
        return Err(::aws_smithy_xml::decode::XmlDecodeError::custom(format!(
            "invalid root, expected GetVpnTunnelReplacementStatusResponse got {start_el:?}"
        )));
    }
    while let Some(mut tag) = decoder.next_tag() {
        match tag.start_el() {
            s if s.matches("vpnConnectionId") /* VpnConnectionId com.amazonaws.ec2.synthetic#GetVpnTunnelReplacementStatusOutput$VpnConnectionId */ =>  {
                let var_1 =
                    Some(
                        Result::<::std::string::String, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
                            .into()
                        )
                        ?
                    )
                ;
                builder = builder.set_vpn_connection_id(var_1);
            }
            ,
            s if s.matches("transitGatewayId") /* TransitGatewayId com.amazonaws.ec2.synthetic#GetVpnTunnelReplacementStatusOutput$TransitGatewayId */ =>  {
                let var_2 =
                    Some(
                        Result::<::std::string::String, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
                            .into()
                        )
                        ?
                    )
                ;
                builder = builder.set_transit_gateway_id(var_2);
            }
            ,
            s if s.matches("customerGatewayId") /* CustomerGatewayId com.amazonaws.ec2.synthetic#GetVpnTunnelReplacementStatusOutput$CustomerGatewayId */ =>  {
                let var_3 =
                    Some(
                        Result::<::std::string::String, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
                            .into()
                        )
                        ?
                    )
                ;
                builder = builder.set_customer_gateway_id(var_3);
            }
            ,
            s if s.matches("vpnGatewayId") /* VpnGatewayId com.amazonaws.ec2.synthetic#GetVpnTunnelReplacementStatusOutput$VpnGatewayId */ =>  {
                let var_4 =
                    Some(
                        Result::<::std::string::String, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
                            .into()
                        )
                        ?
                    )
                ;
                builder = builder.set_vpn_gateway_id(var_4);
            }
            ,
            s if s.matches("vpnTunnelOutsideIpAddress") /* VpnTunnelOutsideIpAddress com.amazonaws.ec2.synthetic#GetVpnTunnelReplacementStatusOutput$VpnTunnelOutsideIpAddress */ =>  {
                let var_5 =
                    Some(
                        Result::<::std::string::String, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
                            .into()
                        )
                        ?
                    )
                ;
                builder = builder.set_vpn_tunnel_outside_ip_address(var_5);
            }
            ,
            s if s.matches("maintenanceDetails") /* MaintenanceDetails com.amazonaws.ec2.synthetic#GetVpnTunnelReplacementStatusOutput$MaintenanceDetails */ =>  {
                let var_6 =
                    Some(
                        crate::protocol_serde::shape_maintenance_details::de_maintenance_details(&mut tag)
                        ?
                    )
                ;
                builder = builder.set_maintenance_details(var_6);
            }
            ,
            _ => {}
        }
    }
    Ok(builder)
}