Enum warheadhateus::Region [] [src]

pub enum Region {
    UsEast1,
    UsWest1,
    UsWest2,
    EuWest1,
    EuCentral1,
    ApSoutheast1,
    ApNortheast1,
    ApSoutheast2,
    SaEast1,
}

AWS Region

Variants

us-east-1

Trait Implementations

impl Debug for Region
[src]

Formats the value using the given formatter.

impl PartialEq for Region
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for Region
[src]

Returns the "default value" for a type. Read more

impl Display for Region
[src]

Formats the value using the given formatter. Read more

impl FromStr for Region
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

impl<'a> Into<String> for &'a Region
[src]

Translates region enum into AWS format. EG: us-east-1

Performs the conversion.