東京リージョンでs3バケット作成を試みたら下記エラー。
$ aws s3api create-bucket --bucket test-bucket --region ap-northeast-1
An error occurred (IllegalLocationConstraintException) when calling the CreateBucket operation: The a-northeast-1 location constraint is incompatible for the region specific endpoint this request was sent to.
awscliのhelpにもあるが--create-bucket-configuration LocationConstraint
の指定が必要。
input
$ aws s3api create-bucket --bucket test-bucket --region ap-northeast-1 --create-bucket-configuration LocationConstraint=ap-northeast-1
output
{
"Location": "http://test-bucket.s3.amazonaws.com/"
}