Enum rusoto_core::region::Region [] [src]

pub enum Region {
    ApNortheast1,
    ApNortheast2,
    ApSouth1,
    ApSoutheast1,
    ApSoutheast2,
    CaCentral1,
    EuCentral1,
    EuWest1,
    EuWest2,
    SaEast1,
    UsEast1,
    UsEast2,
    UsWest1,
    UsWest2,
    CnNorth1,
    Custom(String),
}

An AWS region. Custom can be used to use a local or otherwise non-AWS endpoint. This may be used for API-compatible services, such as DynamoDB Local or Ceph. Example: Region::Custom("http://localhost:8000".to_owned()) instead of Region::UsEast1. CnNorth1 is currently untested due to Rusoto maintainers not having access to AWS China.

Variants

Region that covers North-East part of America

Region that covers North-East America

Region that covers South America

Region that covers South-East America

Region that covers South-East America

Region that covers Central America

Region that covers Central Europe

Region that covers West Europe

Region that covers West Europe

Region that covers South-East Europe

Region that covers East part of America

Region that covers East part of America

Region that covers West part of America

Region that covers North-East part of America

Region that covers North Canada

Specifies a custom region, such as a local Ceph target

Trait Implementations

impl Clone for Region
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Region
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Region
[src]

[src]

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

[src]

This method tests for !=.

impl Serialize for Region
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for Region
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Display for Region
[src]

[src]

Formats the value using the given formatter. Read more

impl FromStr for Region
[src]

The associated error which can be returned from parsing.

[src]

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