aws-sdk-route53 1.99.0

AWS SDK for Amazon Route 53
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(clippy::unnecessary_wraps)]
pub fn de_get_health_check_count_http_error(
    _response_status: u16,
    _response_headers: &::aws_smithy_runtime_api::http::Headers,
    _response_body: &[u8],
) -> std::result::Result<
    crate::operation::get_health_check_count::GetHealthCheckCountOutput,
    crate::operation::get_health_check_count::GetHealthCheckCountError,
> {
    #[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_health_check_count::GetHealthCheckCountError::unhandled)?;
    generic_builder = ::aws_types::request_id::apply_request_id(generic_builder, _response_headers);
    let generic = generic_builder.build();
    Err(crate::operation::get_health_check_count::GetHealthCheckCountError::generic(generic))
}

#[allow(clippy::unnecessary_wraps)]
pub fn de_get_health_check_count_http_response(
    _response_status: u16,
    _response_headers: &::aws_smithy_runtime_api::http::Headers,
    _response_body: &[u8],
) -> std::result::Result<
    crate::operation::get_health_check_count::GetHealthCheckCountOutput,
    crate::operation::get_health_check_count::GetHealthCheckCountError,
> {
    Ok({
        #[allow(unused_mut)]
        let mut output = crate::operation::get_health_check_count::builders::GetHealthCheckCountOutputBuilder::default();
        output = crate::protocol_serde::shape_get_health_check_count::de_get_health_check_count(_response_body, output)
            .map_err(crate::operation::get_health_check_count::GetHealthCheckCountError::unhandled)?;
        output._set_request_id(::aws_types::request_id::RequestId::request_id(_response_headers).map(str::to_string));
        crate::serde_util::get_health_check_count_output_output_correct_errors(output)
            .build()
            .map_err(crate::operation::get_health_check_count::GetHealthCheckCountError::unhandled)?
    })
}

#[allow(unused_mut)]
pub fn de_get_health_check_count(
    inp: &[u8],
    mut builder: crate::operation::get_health_check_count::builders::GetHealthCheckCountOutputBuilder,
) -> std::result::Result<crate::operation::get_health_check_count::builders::GetHealthCheckCountOutputBuilder, ::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("GetHealthCheckCountResponse") {
        return Err(::aws_smithy_xml::decode::XmlDecodeError::custom(format!(
            "encountered invalid XML root: expected GetHealthCheckCountResponse but got {start_el:?}. This is likely a bug in the SDK."
        )));
    }
    while let Some(mut tag) = decoder.next_tag() {
        match tag.start_el() {
            s if s.matches("HealthCheckCount") /* HealthCheckCount com.amazonaws.route53.synthetic#GetHealthCheckCountOutput$HealthCheckCount */ =>  {
                let var_1 =
                    Some(
                         {
                            <i64 as ::aws_smithy_types::primitive::Parse>::parse_smithy_primitive(
                                ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
                            )
                            .map_err(|_|::aws_smithy_xml::decode::XmlDecodeError::custom("expected (long: `com.amazonaws.route53#HealthCheckCount`)"))
                        }
                        ?
                    )
                ;
                builder = builder.set_health_check_count(var_1);
            }
            ,
            _ => {}
        }
    }
    Ok(builder)
}