miitel.jp Product Updates logo

Product Updates

Back to Homepage
  • 日本語
  • Bahasa-Indonesia
Subscribe to Updates

Labels

  • All Posts
  • NEW FEATURE
  • IMPROVEMENT
  • SPECIFICATION CHANGE
  • MAINTENANCE
  • ANNOUNCEMENT
  • Phone Mobile
  • Phone Desktop
  • RecPod
  • Call Center

Jump to Month

  • September 2025
  • August 2025
  • July 2025
  • June 2025
  • May 2025
  • April 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • July 2024
  • June 2024
  • May 2024
  • April 2024
  • March 2024
  • February 2024
  • January 2024
  • December 2023
  • November 2023
  • October 2023
  • September 2023
  • August 2023
  • July 2023
  • June 2023
  • May 2023
  • April 2023
  • March 2023
  • February 2023
  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • April 2021
  • January 2021
  • November 2020
  • January 2020
  • October 2019
Powered️ byAnnounceKit

Create yours, for free!

SPECIFICATION CHANGEANNOUNCEMENT
3 days ago

Please add a permission policy to support S3 bucket in overseas regions through Amazon S3 integration

Regarding Amazon S3 integration, we will support S3 bucket in regions created after March 20, 2019,
starting October 2, 2025 (Thu).

In conjunction with this change, please add a policy (s3:GetBucketLocation) that allows the retrieval of region information to the permission policy used for Amazon S3 integration.

Currently, customers using regions created before March 19, 2019, can continue to use the integration without adding the policy. However, explicit permission will be required in the future.

We will notify you again when this becomes mandatory.

If you are using the following regions, you can continue to use the integration without adding the policy at this time.

  • Asia Pacific (Tokyo)
  • Asia Pacific (Osaka)

Support start date

October 2, 2025 (Thu)

Regions where support will begin

Regions created after March 20, 2019
https://docs.aws.amazon.com/global-infrastructure/latest/regions/doc-history.html

Required Policy

{
    "Action":
    "s3:GetBucketLocation",
    "Effect": "Allow",
    "Resource": "arn:s3:::<bucket name>"
}

Entire permission policy

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "s3:PutObject",
            "Resource": "arn:aws:s3:::<bucket name>/<folder name>/*"
        },
        {
            "Effect": "Allow",
            "Action": "s3:ListBucket",
            "Resource": "*"
        },
        {
            "Action": "s3:GetBucketLocation",
            "Effect": "Allow",
            "Resource": "arn:aws:s3:::<bucket name>"
        }
    ]
}