LoginSignup
1
1

More than 3 years have passed since last update.

S3のリダイレクションルールがJSONになったのにマニュアルがXMLのまま

Posted at

マネジメントコンソールのS3のUIが変わってリダイレクションルールがの入力形式がXMLからJSONに変わってるんだけど、公式マニュアルがXMLのままでどういうJSON書いたらいいのか困ったのでメモ。

XML入れていい感じにやってくれないかと思ったけど、Expected params.WebsiteConfiguration.RoutingRules to be an Arrayエラーになった。

[
    {
        "Condition": {
            "KeyPrefixEquals": "test.html"
        },
        "Redirect": {
            "HostName": "test.com",
            "ReplaceKeyPrefixWith": "test/test.html"
        }
    }
]
1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1