#[allow(clippy::unnecessary_wraps)]
pub fn de_list_integrations_http_error(
_response_status: u16,
_response_headers: &::http::header::HeaderMap,
_response_body: &[u8],
) -> std::result::Result<
crate::operation::list_integrations::ListIntegrationsOutput,
crate::operation::list_integrations::ListIntegrationsError,
> {
#[allow(unused_mut)]
let mut generic_builder = crate::protocol_serde::parse_http_error_metadata(
_response_status,
_response_headers,
_response_body,
)
.map_err(crate::operation::list_integrations::ListIntegrationsError::unhandled)?;
generic_builder = ::aws_http::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::list_integrations::ListIntegrationsError::unhandled(generic),
)
}
};
let _error_message = generic.message().map(|msg| msg.to_owned());
Err(match error_code {
"AccessDeniedException" => {
crate::operation::list_integrations::ListIntegrationsError::AccessDeniedException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output =
crate::types::error::builders::AccessDeniedExceptionBuilder::default();
output = crate::protocol_serde::shape_access_denied_exception::de_access_denied_exception_json_err(_response_body, output).map_err(crate::operation::list_integrations::ListIntegrationsError::unhandled)?;
let output = output.meta(generic);
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
})
}
"BadRequestException" => {
crate::operation::list_integrations::ListIntegrationsError::BadRequestException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output =
crate::types::error::builders::BadRequestExceptionBuilder::default();
output = crate::protocol_serde::shape_bad_request_exception::de_bad_request_exception_json_err(_response_body, output).map_err(crate::operation::list_integrations::ListIntegrationsError::unhandled)?;
let output = output.meta(generic);
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
})
}
"InternalServerException" => {
crate::operation::list_integrations::ListIntegrationsError::InternalServerException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output =
crate::types::error::builders::InternalServerExceptionBuilder::default();
output = crate::protocol_serde::shape_internal_server_exception::de_internal_server_exception_json_err(_response_body, output).map_err(crate::operation::list_integrations::ListIntegrationsError::unhandled)?;
let output = output.meta(generic);
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
})
}
"ResourceNotFoundException" => {
crate::operation::list_integrations::ListIntegrationsError::ResourceNotFoundException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output =
crate::types::error::builders::ResourceNotFoundExceptionBuilder::default();
output = crate::protocol_serde::shape_resource_not_found_exception::de_resource_not_found_exception_json_err(_response_body, output).map_err(crate::operation::list_integrations::ListIntegrationsError::unhandled)?;
let output = output.meta(generic);
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
})
}
"ThrottlingException" => {
crate::operation::list_integrations::ListIntegrationsError::ThrottlingException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output =
crate::types::error::builders::ThrottlingExceptionBuilder::default();
output = crate::protocol_serde::shape_throttling_exception::de_throttling_exception_json_err(_response_body, output).map_err(crate::operation::list_integrations::ListIntegrationsError::unhandled)?;
let output = output.meta(generic);
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
})
}
_ => crate::operation::list_integrations::ListIntegrationsError::generic(generic),
})
}
#[allow(clippy::unnecessary_wraps)]
pub fn de_list_integrations_http_response_with_props(
_response_status: u16,
_response_headers: &::http::header::HeaderMap,
_response_body: &[u8],
) -> std::result::Result<
crate::operation::list_integrations::ListIntegrationsOutput,
crate::operation::list_integrations::ListIntegrationsError,
> {
Ok({
#[allow(unused_mut)]
let mut output =
crate::operation::list_integrations::builders::ListIntegrationsOutputBuilder::default();
output = crate::protocol_serde::shape_list_integrations::de_list_integrations(
_response_body,
output,
)
.map_err(crate::operation::list_integrations::ListIntegrationsError::unhandled)?;
output._set_request_id(
::aws_http::request_id::RequestId::request_id(_response_headers).map(str::to_string),
);
output.build()
})
}
pub(crate) fn de_list_integrations(
value: &[u8],
mut builder: crate::operation::list_integrations::builders::ListIntegrationsOutputBuilder,
) -> Result<
crate::operation::list_integrations::builders::ListIntegrationsOutputBuilder,
::aws_smithy_json::deserialize::error::DeserializeError,
> {
let mut tokens_owned =
::aws_smithy_json::deserialize::json_token_iter(crate::protocol_serde::or_empty_doc(value))
.peekable();
let tokens = &mut tokens_owned;
::aws_smithy_json::deserialize::token::expect_start_object(tokens.next())?;
loop {
match tokens.next().transpose()? {
Some(::aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
Some(::aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => {
match key.to_unescaped()?.as_ref() {
"Items" => {
builder = builder.set_items(
crate::protocol_serde::shape_integration_list::de_integration_list(
tokens,
)?,
);
}
"NextToken" => {
builder = builder.set_next_token(
::aws_smithy_json::deserialize::token::expect_string_or_null(
tokens.next(),
)?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
_ => ::aws_smithy_json::deserialize::token::skip_value(tokens)?,
}
}
other => {
return Err(
::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
"expected object key or end object, found: {:?}",
other
)),
)
}
}
}
if tokens.next().is_some() {
return Err(
::aws_smithy_json::deserialize::error::DeserializeError::custom(
"found more JSON tokens after completing parsing",
),
);
}
Ok(builder)
}