raws_show/sts.rs
1use super::*;
2
3mod accesskey;
4mod identity;
5
6impl Show for aws_sdk_sts::types::Credentials {
7 fn _fmt(&self) -> Box<dyn fmt::Display + '_> {
8 Box::new(fmtools::fmt!(
9 "CREDENTIALS\t"
10 {self.access_key_id()._fmt()} "\t"
11 {self.expiration()._fmt()} "\t"
12 {self.secret_access_key()._fmt()} "\t"
13 {self.session_token()._fmt()}
14 ))
15 }
16}