pub fn de_launch_template_license_list(
decoder: &mut ::aws_smithy_xml::decode::ScopedDecoder,
) -> ::std::result::Result<::std::vec::Vec<crate::types::LaunchTemplateLicenseConfiguration>, ::aws_smithy_xml::decode::XmlDecodeError> {
let mut out = std::vec::Vec::new();
while let Some(mut tag) = decoder.next_tag() {
match tag.start_el() {
s if s.matches("item") => {
out.push(
crate::protocol_serde::shape_launch_template_license_configuration::de_launch_template_license_configuration(&mut tag)
?
);
}
,
_ => {}
}
}
Ok(out)
}