AWS Security ChangesHomeSearch

AWS AmazonRDS documentation change

Service: AmazonRDS · 2026-05-22 · Documentation low

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

Summary

Added verification section with SQL commands to test S3 integration configuration

Security assessment

New section helps validate proper configuration but doesn't introduce security features or address vulnerabilities. Focuses on operational verification.

Diff

diff --git a/AmazonRDS/latest/UserGuide/oracle-s3-integration.preparing.md b/AmazonRDS/latest/UserGuide/oracle-s3-integration.preparing.md
index 67f2058bb..d0ea6591d 100644
--- a//AmazonRDS/latest/UserGuide/oracle-s3-integration.preparing.md
+++ b//AmazonRDS/latest/UserGuide/oracle-s3-integration.preparing.md
@@ -506,0 +507,23 @@ Replace ``your-role-arn`` with the role ARN that you noted in a previous step. `
+### Verifying your S3 integration configuration
+
+To verify your S3 integration configuration, confirm the IAM role is associated:
+    
+    
+    SELECT * FROM TABLE(rdsadmin.rdsadmin_util.list_iam_roles());
+
+The output should show your role with the feature name `S3_INTEGRATION` and a status of `ACTIVE`.
+
+To test connectivity, upload a small test file:
+    
+    
+    BEGIN
+        rdsadmin.rdsadmin_util.upload_to_s3(
+            p_bucket_name    => 'my-s3-bucket',
+            p_s3_prefix      => 'test/',
+            p_directory_name => 'DATA_PUMP_DIR',
+            p_file_name      => 'test_upload.txt');
+    END;
+    /
+
+If the upload succeeds without errors, your S3 integration is configured correctly.
+