AWS Security ChangesHomeSearch

AWS cloud9 documentation change

Service: cloud9 · 2025-11-19 · Documentation low

File: cloud9/latest/user-guide/sample-cdk.md

Summary

Updated documentation to replace 'AWS CloudFormation' with 'CloudFormation' in multiple instances for consistency

Security assessment

Changes are purely terminological, replacing 'AWS CloudFormation' with 'CloudFormation' without altering technical content or addressing security aspects. No evidence of security vulnerability fixes or security feature additions.

Diff

diff --git a/cloud9/latest/user-guide/sample-cdk.md b/cloud9/latest/user-guide/sample-cdk.md
index be749b15c..c34a78c8c 100644
--- a//cloud9/latest/user-guide/sample-cdk.md
+++ b//cloud9/latest/user-guide/sample-cdk.md
@@ -214 +214 @@ This creates the following files and subdirectories in the directory.
-     * The `Stack`, `App`, `StackProps`, `Queue`, and `Topic` classes represent an AWS CloudFormation stack and its properties, an executable program, an Amazon SQS queue, and an Amazon SNS topic, respectively.
+     * The `Stack`, `App`, `StackProps`, `Queue`, and `Topic` classes represent an CloudFormation stack and its properties, an executable program, an Amazon SQS queue, and an Amazon SNS topic, respectively.
@@ -216 +216 @@ This creates the following files and subdirectories in the directory.
-     * The `HelloCdkStack` class represents the AWS CloudFormation stack for this application. This stack contains the new Amazon SQS queue and Amazon SNS topic for this application.
+     * The `HelloCdkStack` class represents the CloudFormation stack for this application. This stack contains the new Amazon SQS queue and Amazon SNS topic for this application.
@@ -241 +241 @@ The preceding command runs the TypeScript compiler, which adds supporting `bin/h
-In this step, you instruct the AWS CDK to create a AWS CloudFormation stack template based on the code in the `bin/hello-cdk.js` file. You then instruct the AWS CDK to deploy the stack, which creates the Amazon SNS topic and Amazon SQS queue and then subscribes the queue to the topic. You then confirm that the topic and queue were successfully deployed by sending a message from the topic to the queue.
+In this step, you instruct the AWS CDK to create a CloudFormation stack template based on the code in the `bin/hello-cdk.js` file. You then instruct the AWS CDK to deploy the stack, which creates the Amazon SNS topic and Amazon SQS queue and then subscribes the queue to the topic. You then confirm that the topic and queue were successfully deployed by sending a message from the topic to the queue.
@@ -243 +243 @@ In this step, you instruct the AWS CDK to create a AWS CloudFormation stack temp
-  1. Have the AWS CDK create the AWS CloudFormation stack template. To do this, with the terminal session still open in the IDE, from the project's root directory, run the **`cdk` ** command with the **`synth` ** action and the name of the stack.
+  1. Have the AWS CDK create the CloudFormation stack template. To do this, with the terminal session still open in the IDE, from the project's root directory, run the **`cdk` ** command with the **`synth` ** action and the name of the stack.
@@ -247 +247 @@ In this step, you instruct the AWS CDK to create a AWS CloudFormation stack temp
-If successful, the output displays the AWS CloudFormation stack template's `Resources` section.
+If successful, the output displays the CloudFormation stack template's `Resources` section.
@@ -259 +259 @@ If you run `cdk bootstrap` without specifying any options, the default AWS accou
-  3. Have the AWS CDK run the AWS CloudFormation stack template to deploy the stack. To do this, from the project's root directory, run the **`cdk` ** command with the **`deploy` ** action and the name of the stack.
+  3. Have the AWS CDK run the CloudFormation stack template to deploy the stack. To do this, from the project's root directory, run the **`cdk` ** command with the **`deploy` ** action and the name of the stack.
@@ -275 +275 @@ For example, to send a message to the topic, with the terminal session still ope
-In the preceding command, replace `arn:aws:sns:us-east-2:123456789012:HelloCdkStack-HelloCdkTopic1A234567-8BCD9EFGHIJ0K` with the ARN that AWS CloudFormation assigns to the topic. To get the ID, you can run the Amazon SNS**`list-topics` ** command.
+In the preceding command, replace `arn:aws:sns:us-east-2:123456789012:HelloCdkStack-HelloCdkTopic1A234567-8BCD9EFGHIJ0K` with the ARN that CloudFormation assigns to the topic. To get the ID, you can run the Amazon SNS**`list-topics` ** command.
@@ -285 +285 @@ To check the queue for the received message, run the Amazon SQS**`receive-messag
-In the preceding command, replace `https://queue.amazonaws.com/123456789012/HelloCdkStack-HelloCdkQueue1A234567-8BCD9EFGHIJ0K` with the ARN that AWS CloudFormation assigns to the queue. To get the URL, you can run the Amazon SQS**`list-queues` ** command.
+In the preceding command, replace `https://queue.amazonaws.com/123456789012/HelloCdkStack-HelloCdkQueue1A234567-8BCD9EFGHIJ0K` with the ARN that CloudFormation assigns to the queue. To get the URL, you can run the Amazon SQS**`list-queues` ** command.
@@ -296 +296 @@ If successful, the output of the **`receive-message` ** command displays informa
-To prevent ongoing charges to your AWS account after you're done using this sample, you should delete the AWS CloudFormation stack. This deletes the the Amazon SNS topic and Amazon SQS queue. You should also delete the environment.
+To prevent ongoing charges to your AWS account after you're done using this sample, you should delete the CloudFormation stack. This deletes the the Amazon SNS topic and Amazon SQS queue. You should also delete the environment.