aws_sdk_ec2/protocol_serde/
shape_transit_gateway_multicast_domain_options.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2#[allow(clippy::needless_question_mark)]
3pub fn de_transit_gateway_multicast_domain_options(
4    decoder: &mut ::aws_smithy_xml::decode::ScopedDecoder,
5) -> ::std::result::Result<crate::types::TransitGatewayMulticastDomainOptions, ::aws_smithy_xml::decode::XmlDecodeError> {
6    #[allow(unused_mut)]
7    let mut builder = crate::types::TransitGatewayMulticastDomainOptions::builder();
8    while let Some(mut tag) = decoder.next_tag() {
9        match tag.start_el() {
10            s if s.matches("igmpv2Support") /* Igmpv2Support com.amazonaws.ec2#TransitGatewayMulticastDomainOptions$Igmpv2Support */ =>  {
11                let var_1 =
12                    Some(
13                        Result::<crate::types::Igmpv2SupportValue, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
14                            crate::types::Igmpv2SupportValue::from(
15                                ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
16                            )
17                        )
18                        ?
19                    )
20                ;
21                builder = builder.set_igmpv2_support(var_1);
22            }
23            ,
24            s if s.matches("staticSourcesSupport") /* StaticSourcesSupport com.amazonaws.ec2#TransitGatewayMulticastDomainOptions$StaticSourcesSupport */ =>  {
25                let var_2 =
26                    Some(
27                        Result::<crate::types::StaticSourcesSupportValue, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
28                            crate::types::StaticSourcesSupportValue::from(
29                                ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
30                            )
31                        )
32                        ?
33                    )
34                ;
35                builder = builder.set_static_sources_support(var_2);
36            }
37            ,
38            s if s.matches("autoAcceptSharedAssociations") /* AutoAcceptSharedAssociations com.amazonaws.ec2#TransitGatewayMulticastDomainOptions$AutoAcceptSharedAssociations */ =>  {
39                let var_3 =
40                    Some(
41                        Result::<crate::types::AutoAcceptSharedAssociationsValue, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
42                            crate::types::AutoAcceptSharedAssociationsValue::from(
43                                ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
44                            )
45                        )
46                        ?
47                    )
48                ;
49                builder = builder.set_auto_accept_shared_associations(var_3);
50            }
51            ,
52            _ => {}
53        }
54    }
55    Ok(builder.build())
56}