aws_sdk_redshift/protocol_serde/
shape_endpoint_access.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2#[allow(clippy::needless_question_mark)]
3pub fn de_endpoint_access(
4    decoder: &mut ::aws_smithy_xml::decode::ScopedDecoder,
5) -> ::std::result::Result<crate::types::EndpointAccess, ::aws_smithy_xml::decode::XmlDecodeError> {
6    #[allow(unused_mut)]
7    let mut builder = crate::types::EndpointAccess::builder();
8    while let Some(mut tag) = decoder.next_tag() {
9        match tag.start_el() {
10            s if s.matches("ClusterIdentifier") /* ClusterIdentifier com.amazonaws.redshift#EndpointAccess$ClusterIdentifier */ =>  {
11                let var_1 =
12                    Some(
13                        Result::<::std::string::String, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
14                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
15                            .into()
16                        )
17                        ?
18                    )
19                ;
20                builder = builder.set_cluster_identifier(var_1);
21            }
22            ,
23            s if s.matches("ResourceOwner") /* ResourceOwner com.amazonaws.redshift#EndpointAccess$ResourceOwner */ =>  {
24                let var_2 =
25                    Some(
26                        Result::<::std::string::String, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
27                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
28                            .into()
29                        )
30                        ?
31                    )
32                ;
33                builder = builder.set_resource_owner(var_2);
34            }
35            ,
36            s if s.matches("SubnetGroupName") /* SubnetGroupName com.amazonaws.redshift#EndpointAccess$SubnetGroupName */ =>  {
37                let var_3 =
38                    Some(
39                        Result::<::std::string::String, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
40                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
41                            .into()
42                        )
43                        ?
44                    )
45                ;
46                builder = builder.set_subnet_group_name(var_3);
47            }
48            ,
49            s if s.matches("EndpointStatus") /* EndpointStatus com.amazonaws.redshift#EndpointAccess$EndpointStatus */ =>  {
50                let var_4 =
51                    Some(
52                        Result::<::std::string::String, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
53                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
54                            .into()
55                        )
56                        ?
57                    )
58                ;
59                builder = builder.set_endpoint_status(var_4);
60            }
61            ,
62            s if s.matches("EndpointName") /* EndpointName com.amazonaws.redshift#EndpointAccess$EndpointName */ =>  {
63                let var_5 =
64                    Some(
65                        Result::<::std::string::String, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
66                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
67                            .into()
68                        )
69                        ?
70                    )
71                ;
72                builder = builder.set_endpoint_name(var_5);
73            }
74            ,
75            s if s.matches("EndpointCreateTime") /* EndpointCreateTime com.amazonaws.redshift#EndpointAccess$EndpointCreateTime */ =>  {
76                let var_6 =
77                    Some(
78                        ::aws_smithy_types::DateTime::from_str(
79                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
80                            , ::aws_smithy_types::date_time::Format::DateTimeWithOffset
81                        )
82                        .map_err(|_|::aws_smithy_xml::decode::XmlDecodeError::custom("expected (timestamp: `com.amazonaws.redshift#TStamp`)"))
83                        ?
84                    )
85                ;
86                builder = builder.set_endpoint_create_time(var_6);
87            }
88            ,
89            s if s.matches("Port") /* Port com.amazonaws.redshift#EndpointAccess$Port */ =>  {
90                let var_7 =
91                    Some(
92                         {
93                            <i32 as ::aws_smithy_types::primitive::Parse>::parse_smithy_primitive(
94                                ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
95                            )
96                            .map_err(|_|::aws_smithy_xml::decode::XmlDecodeError::custom("expected (integer: `com.amazonaws.redshift#Integer`)"))
97                        }
98                        ?
99                    )
100                ;
101                builder = builder.set_port(var_7);
102            }
103            ,
104            s if s.matches("Address") /* Address com.amazonaws.redshift#EndpointAccess$Address */ =>  {
105                let var_8 =
106                    Some(
107                        Result::<::std::string::String, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
108                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
109                            .into()
110                        )
111                        ?
112                    )
113                ;
114                builder = builder.set_address(var_8);
115            }
116            ,
117            s if s.matches("VpcSecurityGroups") /* VpcSecurityGroups com.amazonaws.redshift#EndpointAccess$VpcSecurityGroups */ =>  {
118                let var_9 =
119                    Some(
120                        crate::protocol_serde::shape_vpc_security_group_membership_list::de_vpc_security_group_membership_list(&mut tag)
121                        ?
122                    )
123                ;
124                builder = builder.set_vpc_security_groups(var_9);
125            }
126            ,
127            s if s.matches("VpcEndpoint") /* VpcEndpoint com.amazonaws.redshift#EndpointAccess$VpcEndpoint */ =>  {
128                let var_10 =
129                    Some(
130                        crate::protocol_serde::shape_vpc_endpoint::de_vpc_endpoint(&mut tag)
131                        ?
132                    )
133                ;
134                builder = builder.set_vpc_endpoint(var_10);
135            }
136            ,
137            _ => {}
138        }
139    }
140    Ok(builder.build())
141}