aws_sdk_sts/protocol_serde/
shape_credentials.rs
1#[allow(clippy::needless_question_mark)]
3pub fn de_credentials(
4 decoder: &mut ::aws_smithy_xml::decode::ScopedDecoder,
5) -> ::std::result::Result<crate::types::Credentials, ::aws_smithy_xml::decode::XmlDecodeError> {
6 #[allow(unused_mut)]
7 let mut builder = crate::types::Credentials::builder();
8 while let Some(mut tag) = decoder.next_tag() {
9 match tag.start_el() {
10 s if s.matches("AccessKeyId") => {
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_access_key_id(var_1);
21 }
22 ,
23 s if s.matches("SecretAccessKey") => {
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_secret_access_key(var_2);
34 }
35 ,
36 s if s.matches("SessionToken") => {
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_session_token(var_3);
47 }
48 ,
49 s if s.matches("Expiration") => {
50 let var_4 =
51 Some(
52 ::aws_smithy_types::DateTime::from_str(
53 ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
54 , ::aws_smithy_types::date_time::Format::DateTimeWithOffset
55 )
56 .map_err(|_|::aws_smithy_xml::decode::XmlDecodeError::custom("expected (timestamp: `com.amazonaws.sts#dateType`)"))
57 ?
58 )
59 ;
60 builder = builder.set_expiration(var_4);
61 }
62 ,
63 _ => {}
64 }
65 }
66 Ok(crate::serde_util::credentials_correct_errors(builder)
67 .build()
68 .map_err(|_| ::aws_smithy_xml::decode::XmlDecodeError::custom("missing field"))?)
69}