AWS apigateway documentation change
Summary
Updated references from 'AWS CloudFormation' to 'CloudFormation' throughout the document, removing redundant AWS branding
Security assessment
The changes are purely branding/naming convention updates (removing 'AWS' prefix from CloudFormation references). No security-related content was added, modified, or removed. The documentation still describes the same architecture using CloudFormation templates without any security configuration changes.
Diff
diff --git a/apigateway/latest/developerguide/websocket-api-chat-app.md b/apigateway/latest/developerguide/websocket-api-chat-app.md index 6e9d6581e..ca25d28ef 100644 --- a//apigateway/latest/developerguide/websocket-api-chat-app.md +++ b//apigateway/latest/developerguide/websocket-api-chat-app.md @@ -5 +5 @@ -Step 1: Create Lambda functions and a DynamoDB tableStep 2: Create a WebSocket APIStep 3: Test your APIStep 4: Clean upNext steps: Automate with AWS CloudFormation +Step 1: Create Lambda functions and a DynamoDB tableStep 2: Create a WebSocket APIStep 3: Test your APIStep 4: Clean upNext steps: Automate with CloudFormation @@ -11 +11 @@ In this tutorial, you'll create a serverless chat application with a WebSocket A -This tutorial takes approximately 30 minutes to complete. First, you'll use an AWS CloudFormation template to create Lambda functions that will handle API requests, as well as a DynamoDB table that stores your client IDs. Then, you'll use the API Gateway console to create a WebSocket API that integrates with your Lambda functions. Lastly, you'll test your API to verify that messages are sent and received. +This tutorial takes approximately 30 minutes to complete. First, you'll use an CloudFormation template to create Lambda functions that will handle API requests, as well as a DynamoDB table that stores your client IDs. Then, you'll use the API Gateway console to create a WebSocket API that integrates with your Lambda functions. Lastly, you'll test your API to verify that messages are sent and received. @@ -29 +29 @@ You also need `wscat` to connect to your API. For more information, see [Use wsc - * Next steps: Automate with AWS CloudFormation + * Next steps: Automate with CloudFormation @@ -36 +36 @@ You also need `wscat` to connect to your API. For more information, see [Use wsc -Download and unzip [the app creation template for AWS CloudFormation](samples/ws-chat-app-starter.zip). You'll use this template to create a Amazon DynamoDB table to store your app's client IDs. Each connected client has a unique ID which we will use as the table's partition key. This template also creates Lambda functions that update your client connections in DynamoDB and handle sending messages to connected clients. +Download and unzip [the app creation template for CloudFormation](samples/ws-chat-app-starter.zip). You'll use this template to create a Amazon DynamoDB table to store your app's client IDs. Each connected client has a unique ID which we will use as the table's partition key. This template also creates Lambda functions that update your client connections in DynamoDB and handle sending messages to connected clients. @@ -38 +38 @@ Download and unzip [the app creation template for AWS CloudFormation](samples/ws -###### To create an AWS CloudFormation stack +###### To create an CloudFormation stack @@ -40 +40 @@ Download and unzip [the app creation template for AWS CloudFormation](samples/ws - 1. Open the AWS CloudFormation console at [https://console.aws.amazon.com/cloudformation](https://console.aws.amazon.com/cloudformation/). + 1. Open the CloudFormation console at [https://console.aws.amazon.com/cloudformation](https://console.aws.amazon.com/cloudformation/). @@ -54 +54 @@ Download and unzip [the app creation template for AWS CloudFormation](samples/ws - 8. For **Capabilities** , acknowledge that AWS CloudFormation can create IAM resources in your account. + 8. For **Capabilities** , acknowledge that CloudFormation can create IAM resources in your account. @@ -61 +61 @@ Download and unzip [the app creation template for AWS CloudFormation](samples/ws -AWS CloudFormation provisions the resources specified in the template. It can take a few minutes to finish provisioning your resources. When the status of your AWS CloudFormation stack is **CREATE_COMPLETE** , you're ready to move on to the next step. +CloudFormation provisions the resources specified in the template. It can take a few minutes to finish provisioning your resources. When the status of your CloudFormation stack is **CREATE_COMPLETE** , you're ready to move on to the next step. @@ -89 +89 @@ You'll create a WebSocket API to handle client connections and route requests to -For **Lambda** , choose the corresponding Lambda function that you created with AWS CloudFormation in Step 1. Each function's name matches a route. For example, for the **$connect** route, choose the function named `websocket-chat-app-tutorial-ConnectHandler`. +For **Lambda** , choose the corresponding Lambda function that you created with CloudFormation in Step 1. Each function's name matches a route. For example, for the **$connect** route, choose the function named `websocket-chat-app-tutorial-ConnectHandler`. @@ -167 +167 @@ The Lambda function associated with the invoked route collects the client IDs fr -To prevent unnecessary costs, delete the resources that you created as part of this tutorial. The following steps delete your AWS CloudFormation stack and WebSocket API. +To prevent unnecessary costs, delete the resources that you created as part of this tutorial. The following steps delete your CloudFormation stack and WebSocket API. @@ -178 +178 @@ To prevent unnecessary costs, delete the resources that you created as part of t -###### To delete an AWS CloudFormation stack +###### To delete an CloudFormation stack @@ -180 +180 @@ To prevent unnecessary costs, delete the resources that you created as part of t - 1. Open the AWS CloudFormation console at [https://console.aws.amazon.com/cloudformation](https://console.aws.amazon.com/cloudformation/). + 1. Open the CloudFormation console at [https://console.aws.amazon.com/cloudformation](https://console.aws.amazon.com/cloudformation/). @@ -182 +182 @@ To prevent unnecessary costs, delete the resources that you created as part of t - 2. Select your AWS CloudFormation stack. + 2. Select your CloudFormation stack. @@ -189 +189 @@ To prevent unnecessary costs, delete the resources that you created as part of t -## Next steps: Automate with AWS CloudFormation +## Next steps: Automate with CloudFormation @@ -191 +191 @@ To prevent unnecessary costs, delete the resources that you created as part of t -You can automate the creation and cleanup of all of the AWS resources involved in this tutorial. For an AWS CloudFormation template that creates this API and all related resources, see [ws-chat-app.yaml](samples/ws-chat-app.zip). +You can automate the creation and cleanup of all of the AWS resources involved in this tutorial. For an CloudFormation template that creates this API and all related resources, see [ws-chat-app.yaml](samples/ws-chat-app.zip).