AWS Security ChangesHomeSearch

AWS AmazonRDS documentation change

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

File: AmazonRDS/latest/UserGuide/SSIS.Deploy.md

Summary

Fixed SQL syntax in stored procedure parameters by removing square brackets around parameters

Security assessment

The change corrects SQL syntax formatting but does not address security vulnerabilities or introduce security-related content.

Diff

diff --git a/AmazonRDS/latest/UserGuide/SSIS.Deploy.md b/AmazonRDS/latest/UserGuide/SSIS.Deploy.md
index be5ff06fd..44f27b6ce 100644
--- a//AmazonRDS/latest/UserGuide/SSIS.Deploy.md
+++ b//AmazonRDS/latest/UserGuide/SSIS.Deploy.md
@@ -17,2 +17,2 @@ To run the stored procedures, log in as any user that you granted permissions fo
-    [@rds_file_path='D:\S3\ssisproject.ispac'],
-    [@overwrite_file=1];
+    @rds_file_path='D:\S3\ssisproject.ispac',
+    @overwrite_file=1;