1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use super::*;

mod accesskey;
mod identity;

impl Show for aws_sdk_sts::types::Credentials {
    fn _fmt(&self) -> Box<dyn fmt::Display + '_> {
        Box::new(fmtools::fmt!(
            "CREDENTIALS\t"
                {self.access_key_id()._fmt()} "\t"
                {self.expiration()._fmt()} "\t"
                {self.secret_access_key()._fmt()} "\t"
                {self.session_token()._fmt()}
        ))
    }
}