1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
use super::*;

impl Show for aws_sdk_account::types::Region {
    fn _fmt(&self) -> Box<dyn fmt::Display + '_> {
        Box::new(fmtools::fmt!(
            "REGIONS\t"
            { self.region_name()._fmt() } "\t"
            { self.region_opt_status()._fmt() }
        ))
    }
}

impl Show for aws_sdk_account::operation::get_region_opt_status::GetRegionOptStatusOutput {
    fn _fmt(&self) -> Box<dyn fmt::Display + '_> {
        Box::new(fmtools::fmt!(
            { self.region_name()._fmt() } "\t"
            { self.region_opt_status()._fmt() }
        ))
    }
}

impl Show for aws_sdk_account::types::AlternateContact {
    fn _fmt(&self) -> Box<dyn fmt::Display + '_> {
        Box::new(fmtools::fmt!(
            "NAME  " { self.name()._fmt() } "\n"
            "TITLE " { self.title()._fmt() } "\n"
            "EMAIL " { self.email_address()._fmt() } "\n"
            "PHONE " { self.phone_number()._fmt() } "\n"
            "TYPE  " { self.alternate_contact_type()._fmt( )}
        ))
    }
}

impl Show for aws_sdk_account::types::ContactInformation {
    fn _fmt(&self) -> Box<dyn fmt::Display + '_> {
        Box::new(fmtools::fmt!(
            "AddressLine1     " { self.address_line1()._fmt() } "\n"
            "AddressLine2     " { self.address_line2()._fmt() } "\n"
            "AddressLine3     " { self.address_line3()._fmt() } "\n"
            "City             " { self.city()._fmt() }  "\n"
            "CompanyName      " { self.company_name()._fmt() } "\n"
            "CountryCode      " { self.country_code()._fmt() } "\n"
            "DistrictOrCounty " { self.district_or_county()._fmt() } "\n"
            "FullName         " { self.full_name()._fmt() } "\n"
            "PhoneNumner      " { self.phone_number()._fmt() } "\n"
            "PostalCode       " { self.postal_code()._fmt() } "\n"
            "StateOrRegion    " { self.state_or_region()._fmt() } "\n"
            "WebsiteUrl       " { self.website_url()._fmt() }
        ))
    }
}

impl Show for aws_sdk_account::types::RegionOptStatus {
    fn _fmt(&self) -> Box<dyn fmt::Display + '_> {
        Box::new(self.as_str())
    }
}

impl Show for aws_sdk_account::types::AlternateContactType {
    fn _fmt(&self) -> Box<dyn fmt::Display + '_> {
        Box::new(self.as_str())
    }
}