AWS Security ChangesHomeSearch

AWS serverless-application-model documentation change

Service: serverless-application-model · 2025-11-19 · Documentation low

File: serverless-application-model/latest/developerguide/serverless-example-s3.md

Summary

Replaced 'AWS CloudFormation' with 'CloudFormation' in multiple locations for consistent terminology

Security assessment

Changes are branding/naming updates only. No security features, vulnerabilities, or configurations were modified or discussed in the changes.

Diff

diff --git a/serverless-application-model/latest/developerguide/serverless-example-s3.md b/serverless-application-model/latest/developerguide/serverless-example-s3.md
index 50d722e7e..2d5b7a7d4 100644
--- a//serverless-application-model/latest/developerguide/serverless-example-s3.md
+++ b//serverless-application-model/latest/developerguide/serverless-example-s3.md
@@ -15 +15 @@ This sample serverless application processes object-creation events in Amazon S3
-With this example application, you perform steps in a slightly different order than in previous examples. The reason for this is that this example requires that AWS resources are created and IAM permissions are configured _before_ you can test the Lambda function locally. We are going to leverage AWS CloudFormation to create the resources and configure the permissions for you. Otherwise, you would need to do this manually before you can test the Lambda function locally.
+With this example application, you perform steps in a slightly different order than in previous examples. The reason for this is that this example requires that AWS resources are created and IAM permissions are configured _before_ you can test the Lambda function locally. We are going to leverage CloudFormation to create the resources and configure the permissions for you. Otherwise, you would need to do this manually before you can test the Lambda function locally.
@@ -82 +82 @@ Now that you've created the deployment package, you use it to deploy the applica
-In the command, the `--capabilities` parameter allows AWS CloudFormation to create an IAM role. 
+In the command, the `--capabilities` parameter allows CloudFormation to create an IAM role. 
@@ -84 +84 @@ In the command, the `--capabilities` parameter allows AWS CloudFormation to crea
-AWS CloudFormation creates the AWS resources that are defined in the template. You can access the names of these resources in the AWS CloudFormation console.
+CloudFormation creates the AWS resources that are defined in the template. You can access the names of these resources in the CloudFormation console.
@@ -102 +102 @@ AWS CloudFormation creates the AWS resources that are defined in the template. Y
-Before you can test the application locally, you must first retrieve the names of the AWS resources that were created by AWS CloudFormation.
+Before you can test the application locally, you must first retrieve the names of the AWS resources that were created by CloudFormation.
@@ -104 +104 @@ Before you can test the application locally, you must first retrieve the names o
-  * Retrieve the Amazon S3 key name and bucket name from AWS CloudFormation. Modify the `SampleEvent.json` file by replacing the values for the object key, bucket name, and bucket ARN.
+  * Retrieve the Amazon S3 key name and bucket name from CloudFormation. Modify the `SampleEvent.json` file by replacing the values for the object key, bucket name, and bucket ARN.
@@ -114 +114 @@ Use the AWS SAM CLI to generate a sample Amazon S3 event and invoke the Lambda f
-    TABLE_NAME=Table name obtained from AWS CloudFormation console sam local invoke --event SampleEvent.json
+    TABLE_NAME=Table name obtained from CloudFormation console sam local invoke --event SampleEvent.json