pub fn de_cloud_watch_dimension_configurations(
decoder: &mut ::aws_smithy_xml::decode::ScopedDecoder,
) -> Result<::std::vec::Vec<crate::types::CloudWatchDimensionConfiguration>, ::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("member") => {
out.push(
crate::protocol_serde::shape_cloud_watch_dimension_configuration::de_cloud_watch_dimension_configuration(&mut tag)
?
);
}
,
_ => {}
}
}
Ok(out)
}