Enum aws_sdk_rust::aws::common::region::Region [] [src]

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

An AWS region. CnNorth1 is currently untested due to Rusoto maintainers not having access to AWS China.

Variants

ApNortheast1ApNortheast2ApSouth1ApSoutheast1ApSoutheast2EuCentral1EuWest1SaEast1UsEast1UsWest1UsWest2CnNorth1

Trait Implementations

impl PartialEq for Region
[src]

fn eq(&self, __arg_0: &Region) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Debug for Region
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Region
[src]

fn clone(&self) -> Region

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for Region
[src]

impl Display for Region
[src]

fn fmt(&self, f: &mut Formatter) -> Result<()FmtError>

Formats the value using the given formatter.

impl FromStr for Region
[src]

type Err = ParseRegionError

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<RegionParseRegionError>

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