AWS Security ChangesHomeSearch

AWS AmazonRDS documentation change

Service: AmazonRDS · 2025-08-10 · Documentation low

File: AmazonRDS/latest/UserGuide/oracle-s3-integration.preparing.md

Summary

Added required S3 multipart upload permissions for large file transfers

Security assessment

Documentation now includes s3:AbortMultipartUpload and s3:ListMultipartUploadParts permissions needed for operational functionality. Enhances security documentation by specifying least-privilege requirements.

Diff

diff --git a/AmazonRDS/latest/UserGuide/oracle-s3-integration.preparing.md b/AmazonRDS/latest/UserGuide/oracle-s3-integration.preparing.md
index 4fc41c618..341160d99 100644
--- a//AmazonRDS/latest/UserGuide/oracle-s3-integration.preparing.md
+++ b//AmazonRDS/latest/UserGuide/oracle-s3-integration.preparing.md
@@ -61 +61 @@ For more information, see [Protecting data using server-side encryption](https:/
-     * Expand **Write** , and then select **PutObject** and **DeleteObject**.
+     * Expand **Write** , and then select **PutObject** , **DeleteObject** , **AbortMultipartUpload** , and **ListMultipartUploadParts**. The multipart upload permissions are required when uploading large files (100 MB or larger) to Amazon S3.
@@ -121,0 +122,4 @@ Include the appropriate actions in the policy based on the type of access requir
+  * `AbortMultipartUpload` – Required for multipart uploads when transferring large files (100 MB or larger) from Amazon RDS to an Amazon S3 bucket.
+
+  * `ListMultipartUploadParts` – Required for multipart uploads when transferring large files (100 MB or larger) from Amazon RDS to an Amazon S3 bucket.
+
@@ -142 +146,3 @@ For Linux, macOS, or Unix:
-               "s3:PutObject"
+               "s3:PutObject",
+               "s3:AbortMultipartUpload",
+               "s3:ListMultipartUploadParts"
@@ -196 +202,3 @@ For Windows:
-               "s3:PutObject"
+               "s3:PutObject",
+               "s3:AbortMultipartUpload",
+               "s3:ListMultipartUploadParts"