#[allow(clippy::needless_question_mark)]
pub fn de_cloud_front_origin_access_identity(
decoder: &mut ::aws_smithy_xml::decode::ScopedDecoder,
) -> ::std::result::Result<crate::types::CloudFrontOriginAccessIdentity, ::aws_smithy_xml::decode::XmlDecodeError> {
#[allow(unused_mut)]
let mut builder = crate::types::CloudFrontOriginAccessIdentity::builder();
while let Some(mut tag) = decoder.next_tag() {
match tag.start_el() {
s if s.matches("Id") => {
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_id(var_1);
}
,
s if s.matches("S3CanonicalUserId") => {
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_s3_canonical_user_id(var_2);
}
,
s if s.matches("CloudFrontOriginAccessIdentityConfig") => {
let var_3 =
Some(
crate::protocol_serde::shape_cloud_front_origin_access_identity_config::de_cloud_front_origin_access_identity_config(&mut tag)
?
)
;
builder = builder.set_cloud_front_origin_access_identity_config(var_3);
}
,
_ => {}
}
}
Ok(crate::serde_util::cloud_front_origin_access_identity_correct_errors(builder)
.build()
.map_err(|_| ::aws_smithy_xml::decode::XmlDecodeError::custom("missing field"))?)
}