AWS prescriptive-guidance documentation change
Summary
Updated navigation link, fixed apostrophe formatting, replaced image paths, removed code formatting from configuration key references, changed bullet point dashes, and modified section title.
Security assessment
Changes are cosmetic and structural (link updates, typography fixes, image path adjustments). No security vulnerabilities, mechanisms, or features are mentioned or modified. The migration guidance remains focused on general architecture without security implications.
Diff
diff --git a/prescriptive-guidance/latest/modernization-rdbms-dynamodb/sample-app.md b/prescriptive-guidance/latest/modernization-rdbms-dynamodb/sample-app.md index c9f1f710b..828c97282 100644 --- a//prescriptive-guidance/latest/modernization-rdbms-dynamodb/sample-app.md +++ b//prescriptive-guidance/latest/modernization-rdbms-dynamodb/sample-app.md @@ -5 +5 @@ -[Documentation](/index.html)[AWS Prescriptive Guidance](https://aws.amazon.com/prescriptive-guidance/)[Modernizing your application by migrating from an RDBMS to Amazon DynamoDB](welcome.html) +[Documentation](/index.html)[AWS Prescriptive Guidance](https://aws.amazon.com/prescriptive-guidance/)[Modernizing your application by migrating from an RDBMS to Amazon DynamoDB](introduction.html) @@ -22 +22 @@ The discussion and guidance includes code examples written in C#, using the AWS -The sample web application maintains the configuration for hundreds of applications used in an organization, including allowed users and hosts (web, mobile, desktop) for each application, metadata, search keywords, and so on. The application provides configuration maintenance and search functionality for different versions of various applications used in the organization. Configuration changes are tracked by using audit tables. Here’s a typical workflow for the sample application: +The sample web application maintains the configuration for hundreds of applications used in an organization, including allowed users and hosts (web, mobile, desktop) for each application, metadata, search keywords, and so on. The application provides configuration maintenance and search functionality for different versions of various applications used in the organization. Configuration changes are tracked by using audit tables. Here's a typical workflow for the sample application: @@ -50 +50 @@ The source technology stack consisted of the following: - + @@ -54 +54 @@ The source technology stack consisted of the following: -The migrated application supports both SQL Server and DynamoDB based on the configuration key (`UseSqlDataSource`) provided in the configuration file. As shown in the following diagram, if the value of `UseSqlDataSource` is `true`, the application connects to SQL Server. If the value is `false`, the application connects to DynamoDB. +The migrated application supports both SQL Server and DynamoDB based on the configuration key (UseSqlDataSource) provided in the configuration file. As shown in the following diagram, if the value of UseSqlDataSource is true, the application connects to SQL Server. If the value is false, the application connects to DynamoDB. @@ -58 +58 @@ The new technology stack consists of the following: - * ASP.NET Web API controller – Accepts HTTP requests over various API endpoints. + * ASP.NET Web API controller ─ Accepts HTTP requests over various API endpoints. @@ -60 +60 @@ The new technology stack consists of the following: - * Business objects and services – Classes and objects that have the business logic to process input and data fetched from the database. + * Business objects and services ─ Classes and objects that have the business logic to process input and data fetched from the database. @@ -62 +62 @@ The new technology stack consists of the following: - * NoSQL entities and models – Classes that map to items stored in DynamoDB. + * NoSQL entities and models ─ Classes that map to items stored in DynamoDB. @@ -64 +64 @@ The new technology stack consists of the following: - * AWS SDK – Provides programmatic access to DynamoDB and other AWS services. + * AWS SDK ─ Provides programmatic access to DynamoDB and other AWS services. @@ -66 +66 @@ The new technology stack consists of the following: - * DynamoDB – Database for storing application data. + * DynamoDB ─ Database for storing application data. @@ -71 +71 @@ The new technology stack consists of the following: - + @@ -81 +81 @@ DynamoDB overview -RDBMS table schema and mapping +Best practices