aws-sdk-ec2 1.224.0

AWS SDK for Amazon Elastic Compute Cloud
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(clippy::needless_question_mark)]
pub fn de_transit_gateway_policy_rule(
    decoder: &mut ::aws_smithy_xml::decode::ScopedDecoder,
) -> ::std::result::Result<crate::types::TransitGatewayPolicyRule, ::aws_smithy_xml::decode::XmlDecodeError> {
    #[allow(unused_mut)]
    let mut builder = crate::types::TransitGatewayPolicyRule::builder();
    while let Some(mut tag) = decoder.next_tag() {
        match tag.start_el() {
            s if s.matches("sourceCidrBlock") /* SourceCidrBlock com.amazonaws.ec2#TransitGatewayPolicyRule$SourceCidrBlock */ =>  {
                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_source_cidr_block(var_1);
            }
            ,
            s if s.matches("sourcePortRange") /* SourcePortRange com.amazonaws.ec2#TransitGatewayPolicyRule$SourcePortRange */ =>  {
                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_source_port_range(var_2);
            }
            ,
            s if s.matches("destinationCidrBlock") /* DestinationCidrBlock com.amazonaws.ec2#TransitGatewayPolicyRule$DestinationCidrBlock */ =>  {
                let var_3 =
                    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_destination_cidr_block(var_3);
            }
            ,
            s if s.matches("destinationPortRange") /* DestinationPortRange com.amazonaws.ec2#TransitGatewayPolicyRule$DestinationPortRange */ =>  {
                let var_4 =
                    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_destination_port_range(var_4);
            }
            ,
            s if s.matches("protocol") /* Protocol com.amazonaws.ec2#TransitGatewayPolicyRule$Protocol */ =>  {
                let var_5 =
                    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_protocol(var_5);
            }
            ,
            s if s.matches("metaData") /* MetaData com.amazonaws.ec2#TransitGatewayPolicyRule$MetaData */ =>  {
                let var_6 =
                    Some(
                        crate::protocol_serde::shape_transit_gateway_policy_rule_meta_data::de_transit_gateway_policy_rule_meta_data(&mut tag)
                        ?
                    )
                ;
                builder = builder.set_meta_data(var_6);
            }
            ,
            _ => {}
        }
    }
    Ok(builder.build())
}