public enum Region extends java.lang.Enum<Region>
Amazon S3 Regions allow the user to choose the geographical region where Amazon S3 will store the buckets the user creates. Choose a Amazon S3 Region to optimize latency, minimize costs, or address regulatory requirements.
Objects stored in a Amazon S3 Region never leave that region unless explicitly transferred to another region.
| 列挙型定数と説明 |
|---|
AP_Singapore
The Asia Pacific (Singapore) Region.
|
AP_Sydney
The Asia Pacific (Sydney) Region.
|
AP_Tokyo
The Asia Pacific (Tokyo) Region.
|
EU_Ireland
The EU (Ireland) Amazon S3 Region.
|
SA_SaoPaulo
The South America (Sao Paulo) Region.
|
US_GovCloud
The US GovCloud Region.
|
US_Standard
The US Standard Amazon S3 Region.
|
US_West
The US-West (Northern California) Amazon S3 Region.
|
US_West_2
The US-West-2 (Oregon) Region.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
static Region |
fromValue(java.lang.String s3RegionString)
Returns the Amazon S3 Region enumeration value representing the specified Amazon
S3 Region ID string.
|
java.lang.String |
toString() |
static Region |
valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static Region[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final Region US_Standard
This is the default Amazon S3 Region. All requests sent to
s3.amazonaws.com go
to this region unless a location constraint is specified when creating a bucket.
The US Standard Region automatically places
data in either Amazon's east or west coast data centers depending on
which one provides the lowest latency. The US Standard Region
provides eventual consistency for all requests.
public static final Region US_West
When using buckets in this region, set the client
endpoint to s3-us-west-1.amazonaws.com on all requests to these
buckets to reduce any latency experienced after the first
hour of creating a bucket in this region.
In Amazon S3, the US-West (Northern California) Region provides read-after-write consistency for PUTS of new objects in Amazon S3 buckets and eventual consistency for overwrite PUTS and DELETES.
public static final Region US_West_2
When using buckets in this region, set the client
endpoint to s3-us-west-2.amazonaws.com on all requests to these buckets
to reduce any latency experienced after the first hour of
creating a bucket in this region.
public static final Region US_GovCloud
public static final Region EU_Ireland
In Amazon S3, the EU (Ireland) Region provides read-after-write consistency for PUTS of new objects in Amazon S3 buckets and eventual consistency for overwrite PUTS and DELETES.
public static final Region AP_Singapore
When using buckets in this region, set the client
endpoint to s3-ap-southeast-1.amazonaws.com on all requests to these buckets
to reduce any latency experienced after the first hour of
creating a bucket in this region.
public static final Region AP_Sydney
When using buckets in this region, set the client endpoint to
s3-ap-southeast-2.amazonaws.com on all requests to these buckets
to reduce any latency experienced after the first hour of creating a
bucket in this region.
public static final Region AP_Tokyo
When using buckets in this region, set the client endpoint to
s3-ap-northeast-1.amazonaws.com on all requests to these
buckets to reduce any latency experienced after the first hour of
creating a bucket in this region.
public static final Region SA_SaoPaulo
When using buckets in this region, set the client endpoint to
s3-sa-east-1.amazonaws.com on all requests to these buckets
to reduce any latency experienced after the first hour of creating a
bucket in this region.
public static Region[] values()
for(Region c: Region.values()) System.out.println(c);
public static Region valueOf(java.lang.String name)
name - 返される列挙型定数の名前java.lang.IllegalArgumentException - 指定された名前を持つ定数を
この列挙型が持っていない場合java.lang.NullPointerException - 引数がnullの場合public java.lang.String toString()
toString クラス内 java.lang.Enum<Region>public static Region fromValue(java.lang.String s3RegionString) throws java.lang.IllegalArgumentException
IllegalArgumentException is thrown.s3RegionString - The Amazon S3 region ID string.java.lang.IllegalArgumentException - If the specified value does not map to one of the known
Amazon S3 regions.