aws_sdk_ec2/protocol_serde/
shape_ipam_scope.rs1#[allow(clippy::needless_question_mark)]
3pub fn de_ipam_scope(
4 decoder: &mut ::aws_smithy_xml::decode::ScopedDecoder,
5) -> ::std::result::Result<crate::types::IpamScope, ::aws_smithy_xml::decode::XmlDecodeError> {
6 #[allow(unused_mut)]
7 let mut builder = crate::types::IpamScope::builder();
8 while let Some(mut tag) = decoder.next_tag() {
9 match tag.start_el() {
10 s if s.matches("ownerId") => {
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_owner_id(var_1);
21 }
22 ,
23 s if s.matches("ipamScopeId") => {
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_ipam_scope_id(var_2);
34 }
35 ,
36 s if s.matches("ipamScopeArn") => {
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_ipam_scope_arn(var_3);
47 }
48 ,
49 s if s.matches("ipamArn") => {
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_ipam_arn(var_4);
60 }
61 ,
62 s if s.matches("ipamRegion") => {
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_ipam_region(var_5);
73 }
74 ,
75 s if s.matches("ipamScopeType") => {
76 let var_6 =
77 Some(
78 Result::<crate::types::IpamScopeType, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
79 crate::types::IpamScopeType::from(
80 ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
81 )
82 )
83 ?
84 )
85 ;
86 builder = builder.set_ipam_scope_type(var_6);
87 }
88 ,
89 s if s.matches("isDefault") => {
90 let var_7 =
91 Some(
92 {
93 <bool 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 (boolean: `com.amazonaws.ec2#Boolean`)"))
97 }
98 ?
99 )
100 ;
101 builder = builder.set_is_default(var_7);
102 }
103 ,
104 s if s.matches("description") => {
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_description(var_8);
115 }
116 ,
117 s if s.matches("poolCount") => {
118 let var_9 =
119 Some(
120 {
121 <i32 as ::aws_smithy_types::primitive::Parse>::parse_smithy_primitive(
122 ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
123 )
124 .map_err(|_|::aws_smithy_xml::decode::XmlDecodeError::custom("expected (integer: `com.amazonaws.ec2#Integer`)"))
125 }
126 ?
127 )
128 ;
129 builder = builder.set_pool_count(var_9);
130 }
131 ,
132 s if s.matches("state") => {
133 let var_10 =
134 Some(
135 Result::<crate::types::IpamScopeState, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
136 crate::types::IpamScopeState::from(
137 ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
138 )
139 )
140 ?
141 )
142 ;
143 builder = builder.set_state(var_10);
144 }
145 ,
146 s if s.matches("tagSet") => {
147 let var_11 =
148 Some(
149 crate::protocol_serde::shape_tag_list::de_tag_list(&mut tag)
150 ?
151 )
152 ;
153 builder = builder.set_tags(var_11);
154 }
155 ,
156 _ => {}
157 }
158 }
159 Ok(builder.build())
160}