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_metering_policy_rule(
    decoder: &mut ::aws_smithy_xml::decode::ScopedDecoder,
) -> ::std::result::Result<crate::types::TransitGatewayMeteringPolicyRule, ::aws_smithy_xml::decode::XmlDecodeError> {
    #[allow(unused_mut)]
    let mut builder = crate::types::TransitGatewayMeteringPolicyRule::builder();
    while let Some(mut tag) = decoder.next_tag() {
        match tag.start_el() {
            s if s.matches("sourceTransitGatewayAttachmentId") /* SourceTransitGatewayAttachmentId com.amazonaws.ec2#TransitGatewayMeteringPolicyRule$SourceTransitGatewayAttachmentId */ =>  {
                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_transit_gateway_attachment_id(var_1);
            }
            ,
            s if s.matches("sourceTransitGatewayAttachmentType") /* SourceTransitGatewayAttachmentType com.amazonaws.ec2#TransitGatewayMeteringPolicyRule$SourceTransitGatewayAttachmentType */ =>  {
                let var_2 =
                    Some(
                        Result::<crate::types::TransitGatewayAttachmentResourceType, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
                            crate::types::TransitGatewayAttachmentResourceType::from(
                                ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
                            )
                        )
                        ?
                    )
                ;
                builder = builder.set_source_transit_gateway_attachment_type(var_2);
            }
            ,
            s if s.matches("sourceCidrBlock") /* SourceCidrBlock com.amazonaws.ec2#TransitGatewayMeteringPolicyRule$SourceCidrBlock */ =>  {
                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_source_cidr_block(var_3);
            }
            ,
            s if s.matches("sourcePortRange") /* SourcePortRange com.amazonaws.ec2#TransitGatewayMeteringPolicyRule$SourcePortRange */ =>  {
                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_source_port_range(var_4);
            }
            ,
            s if s.matches("destinationTransitGatewayAttachmentId") /* DestinationTransitGatewayAttachmentId com.amazonaws.ec2#TransitGatewayMeteringPolicyRule$DestinationTransitGatewayAttachmentId */ =>  {
                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_destination_transit_gateway_attachment_id(var_5);
            }
            ,
            s if s.matches("destinationTransitGatewayAttachmentType") /* DestinationTransitGatewayAttachmentType com.amazonaws.ec2#TransitGatewayMeteringPolicyRule$DestinationTransitGatewayAttachmentType */ =>  {
                let var_6 =
                    Some(
                        Result::<crate::types::TransitGatewayAttachmentResourceType, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
                            crate::types::TransitGatewayAttachmentResourceType::from(
                                ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
                            )
                        )
                        ?
                    )
                ;
                builder = builder.set_destination_transit_gateway_attachment_type(var_6);
            }
            ,
            s if s.matches("destinationCidrBlock") /* DestinationCidrBlock com.amazonaws.ec2#TransitGatewayMeteringPolicyRule$DestinationCidrBlock */ =>  {
                let var_7 =
                    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_7);
            }
            ,
            s if s.matches("destinationPortRange") /* DestinationPortRange com.amazonaws.ec2#TransitGatewayMeteringPolicyRule$DestinationPortRange */ =>  {
                let var_8 =
                    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_8);
            }
            ,
            s if s.matches("protocol") /* Protocol com.amazonaws.ec2#TransitGatewayMeteringPolicyRule$Protocol */ =>  {
                let var_9 =
                    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_9);
            }
            ,
            _ => {}
        }
    }
    Ok(builder.build())
}