S3バケットのリージョンを取得

awscliで表題を取得する。

■ 環境

  • awscli 1.10.19

■ get-bucket-location

S3バケットのリージョンを`s3api`コマンドで取得するには`get-bucket-location`サブコマンドを使用する。

$ aws s3api get-bucket-location --bucket withsin
{
    "LocationConstraint": "ap-northeast-1"
}
$

ManagementConsoleからも確認してみる。

s3-bucket-location

確かに”Tokyo“となっているので一致する。

以上。

■ 関連