AWS Security ChangesHomeSearch

AWS IAM documentation change

Service: IAM · 2026-05-04 · Documentation low

File: IAM/latest/UserGuide/iam_example_iam_GettingStarted_028_section.md

Summary

Added resource tagging commands throughout SageMaker tutorial

Security assessment

Changes add tagging operations for IAM roles, S3 buckets, and SageMaker resources. These are organizational improvements with no security impact or vulnerability fixes.

Diff

diff --git a/IAM/latest/UserGuide/iam_example_iam_GettingStarted_028_section.md b/IAM/latest/UserGuide/iam_example_iam_GettingStarted_028_section.md
index 092dfac9f..5b11767c2 100644
--- a//IAM/latest/UserGuide/iam_example_iam_GettingStarted_028_section.md
+++ b//IAM/latest/UserGuide/iam_example_iam_GettingStarted_028_section.md
@@ -155,0 +156,4 @@ There's more on GitHub. Find the complete example and learn how to set up and ru
+        # Tag the role
+        echo "Tagging IAM role..." >&2
+        aws iam tag-role --role-name "$role_name" --tags Key=project,Value=doc-smith Key=tutorial,Value=sagemaker-featurestore 2>&1
+        
@@ -269,0 +274,4 @@ There's more on GitHub. Find the complete example and learn how to set up and ru
+    # Tag the S3 bucket
+    echo "Tagging S3 bucket: $S3_BUCKET_NAME"
+    aws s3api put-bucket-tagging --bucket "$S3_BUCKET_NAME" --tagging 'TagSet=[{Key=project,Value=doc-smith},{Key=tutorial,Value=sagemaker-featurestore}]' 2>&1
+    
@@ -310 +318,2 @@ There's more on GitHub. Find the complete example and learn how to set up and ru
-        --role-arn "$ROLE_ARN" 2>&1)
+        --role-arn "$ROLE_ARN" \
+        --tags Key=project,Value=doc-smith Key=tutorial,Value=sagemaker-featurestore 2>&1)
@@ -345 +354,2 @@ There's more on GitHub. Find the complete example and learn how to set up and ru
-        --role-arn "$ROLE_ARN" 2>&1)
+        --role-arn "$ROLE_ARN" \
+        --tags Key=project,Value=doc-smith Key=tutorial,Value=sagemaker-featurestore 2>&1)