AWS Security ChangesHomeSearch

AWS sagemaker documentation change

Service: sagemaker · 2026-06-28 · Documentation low

File: sagemaker/latest/dg/model-monitor-model-quality-schedule.md

Summary

Added explicit import for get_execution_role helper and updated role assignment syntax

Security assessment

The modifications are syntax improvements for execution role handling without introducing security controls, policies, or vulnerability mitigations. The IAM role usage remains functionally identical with no added security context.

Diff

diff --git a/sagemaker/latest/dg/model-monitor-model-quality-schedule.md b/sagemaker/latest/dg/model-monitor-model-quality-schedule.md
index e5aa56e84..3c5d9fc3d 100644
--- a//sagemaker/latest/dg/model-monitor-model-quality-schedule.md
+++ b//sagemaker/latest/dg/model-monitor-model-quality-schedule.md
@@ -43,0 +44 @@ To schedule a model quality monitor for a real-time endpoint, pass your `Endpoin
+    from sagemaker.core.helper.session_helper import get_execution_role
@@ -46 +47 @@ To schedule a model quality monitor for a real-time endpoint, pass your `Endpoin
-       role=sagemaker.get_execution_role(),
+       role=get_execution_role(),
@@ -72,0 +74 @@ To schedule a model quality monitor for a batch transform job, pass your `BatchT
+    from sagemaker.core.helper.session_helper import get_execution_role
@@ -75 +77 @@ To schedule a model quality monitor for a batch transform job, pass your `BatchT
-       role=sagemaker.get_execution_role(),
+       role=get_execution_role(),