Enum rusoto_core::Region [−][src]
pub enum Region {}Show variants
ApEast1, ApNortheast1, ApNortheast2, ApNortheast3, ApSouth1, ApSoutheast1, ApSoutheast2, CaCentral1, EuCentral1, EuWest1, EuWest2, EuWest3, EuNorth1, EuSouth1, MeSouth1, SaEast1, UsEast1, UsEast2, UsWest1, UsWest2, UsGovEast1, UsGovWest1, CnNorth1, CnNorthwest1, AfSouth1, Custom { name: String, endpoint: String, },
Expand description
An AWS region.
Default
Region
implements the Default
trait. Calling Region::default()
will attempt to read the
AWS_DEFAULT_REGION
or AWS_REGION
environment variable. If it is malformed, it will fall back to Region::UsEast1
.
If it is not present it will fallback on the value associated with the current profile in ~/.aws/config
or the file
specified by the AWS_CONFIG_FILE
environment variable. If that is malformed of absent it will fall back on Region::UsEast1
AWS-compatible services
Region::Custom
can be used to connect to AWS-compatible services such as DynamoDB Local or Ceph.
Region::Custom { name: "eu-east-3".to_owned(), endpoint: "http://localhost:8000".to_owned(), };
Caveats
CnNorth1
is currently untested due to Rusoto maintainers not having access to AWS China.
Variants
Region that covers the Eastern part of Asia Pacific
Region that covers the North-Eastern part of Asia Pacific
Region that covers the North-Eastern part of Asia Pacific
Region that covers the North-Eastern part of Asia Pacific
Region that covers the Southern part of Asia Pacific
Region that covers the South-Eastern part of Asia Pacific
Region that covers the South-Eastern part of Asia Pacific
Region that covers Canada
Region that covers Central Europe
Region that covers Western Europe
Region that covers Western Europe
Region that covers Western Europe
Region that covers Northern Europe
Region that covers Southern Europe
Bahrain, Middle East South
Region that covers South America
Region that covers the Eastern part of the United States
Region that covers the Eastern part of the United States
Region that covers the Western part of the United States
Region that covers the Western part of the United States
Region that covers the Eastern part of the United States for the US Government
Region that covers the Western part of the United States for the US Government
Region that covers China
Region that covers North-Western part of China
Region that covers southern part Africa
Specifies a custom region, such as a local Ceph target
Show fields
Implementations
Trait Implementations
pub fn deserialize<D>(
deserializer: D
) -> Result<Region, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
pub fn deserialize<D>(
deserializer: D
) -> Result<Region, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
type Err = ParseRegionError
type Err = ParseRegionError
The associated error which can be returned from parsing.
pub fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
pub fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for Region
impl UnwindSafe for Region
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
type Output = T
type Output = T
Should always be Self