#[allow(clippy::unnecessary_wraps)]
pub fn de_update_location_nfs_http_error(
_response_status: u16,
_response_headers: &::aws_smithy_runtime_api::http::Headers,
_response_body: &[u8],
) -> std::result::Result<crate::operation::update_location_nfs::UpdateLocationNfsOutput, crate::operation::update_location_nfs::UpdateLocationNfsError>
{
#[allow(unused_mut)]
let mut generic_builder = crate::protocol_serde::parse_http_error_metadata(_response_status, _response_headers, _response_body)
.map_err(crate::operation::update_location_nfs::UpdateLocationNfsError::unhandled)?;
generic_builder = ::aws_types::request_id::apply_request_id(generic_builder, _response_headers);
let generic = generic_builder.build();
let error_code = match generic.code() {
Some(code) => code,
None => return Err(crate::operation::update_location_nfs::UpdateLocationNfsError::unhandled(generic)),
};
let _error_message = generic.message().map(|msg| msg.to_owned());
Err(match error_code {
"InternalException" => crate::operation::update_location_nfs::UpdateLocationNfsError::InternalException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::types::error::builders::InternalExceptionBuilder::default();
output = crate::protocol_serde::shape_internal_exception::de_internal_exception_json_err(_response_body, output)
.map_err(crate::operation::update_location_nfs::UpdateLocationNfsError::unhandled)?;
let output = output.meta(generic);
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
"InvalidRequestException" => crate::operation::update_location_nfs::UpdateLocationNfsError::InvalidRequestException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::types::error::builders::InvalidRequestExceptionBuilder::default();
output = crate::protocol_serde::shape_invalid_request_exception::de_invalid_request_exception_json_err(_response_body, output)
.map_err(crate::operation::update_location_nfs::UpdateLocationNfsError::unhandled)?;
let output = output.meta(generic);
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
_ => crate::operation::update_location_nfs::UpdateLocationNfsError::generic(generic),
})
}
#[allow(clippy::unnecessary_wraps)]
pub fn de_update_location_nfs_http_response(
_response_status: u16,
_response_headers: &::aws_smithy_runtime_api::http::Headers,
_response_body: &[u8],
) -> std::result::Result<crate::operation::update_location_nfs::UpdateLocationNfsOutput, crate::operation::update_location_nfs::UpdateLocationNfsError>
{
Ok({
#[allow(unused_mut)]
let mut output = crate::operation::update_location_nfs::builders::UpdateLocationNfsOutputBuilder::default();
output._set_request_id(::aws_types::request_id::RequestId::request_id(_response_headers).map(str::to_string));
output.build()
})
}
pub fn ser_update_location_nfs_input(
input: &crate::operation::update_location_nfs::UpdateLocationNfsInput,
) -> Result<::aws_smithy_types::body::SdkBody, ::aws_smithy_types::error::operation::SerializationError> {
let mut out = String::new();
let mut object = ::aws_smithy_json::serialize::JsonObjectWriter::new(&mut out);
crate::protocol_serde::shape_update_location_nfs_input::ser_update_location_nfs_input_input(&mut object, input)?;
object.finish();
Ok(::aws_smithy_types::body::SdkBody::from(out))
}