AWS Security ChangesHomeSearch

AWS solutions documentation change

Service: solutions · 2026-01-31 · Documentation low

File: solutions/latest/constructs/aws_fargate_dynamodb.md

Summary

Updated image URLs and clarified documentation for VPC properties and DynamoDB table configuration options.

Security assessment

Changes consist of URL corrections and minor wording improvements (e.g., changing 'will cause' to 'causes'). No references to security vulnerabilities, access controls, encryption, or security best practices are present in the modifications.

Diff

diff --git a/solutions/latest/constructs/aws_fargate_dynamodb.md b/solutions/latest/constructs/aws_fargate_dynamodb.md
index d13f11b6e..54124256d 100644
--- a//solutions/latest/constructs/aws_fargate_dynamodb.md
+++ b//solutions/latest/constructs/aws_fargate_dynamodb.md
@@ -16,3 +16,3 @@ OverviewPattern Construct PropsPattern PropertiesDefault settingsArchitectureGit
-![Python Logo](https://docs.aws.amazon.com/cdk/api/latest/img/python32.png) Python |  `aws_solutions_constructs.aws_fargate_dynamodb`  
-![Typescript Logo](https://docs.aws.amazon.com/cdk/api/latest/img/typescript32.png) Typescript |  `@aws-solutions-constructs/aws-fargate-dynamodb`  
-![Java Logo](https://docs.aws.amazon.com/cdk/api/latest/img/java32.png) Java |  `software.amazon.awsconstructs.services.fargatedynamodb`  
+![Python Logo](https://docs.aws.amazon.com/images/solutions/latest/constructs/images/python32.png) Python |  `aws_solutions_constructs.aws_fargate_dynamodb`  
+![Typescript Logo](https://docs.aws.amazon.com/images/solutions/latest/constructs/images/typescript32.png) Typescript |  `@aws-solutions-constructs/aws-fargate-dynamodb`  
+![Java Logo](https://docs.aws.amazon.com/images/solutions/latest/constructs/images/java32.png) Java |  `software.amazon.awsconstructs.services.fargatedynamodb`  
@@ -75,2 +75,2 @@ publicApi |  `boolean` |  Whether the construct is deploying a private or public
-vpcProps? |  [`ec2.VpcProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.VpcProps.html) |  Optional custom properties for a VPC the construct will create. This VPC will be used by any Private Hosted Zone the construct creates (that’s why loadBalancerProps and privateHostedZoneProps can’t include a VPC). Providing both this and existingVpc is an error.  
-existingVpc? |  [`ec2.IVpc`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.IVpc.html) |  An existing VPC in which to deploy the construct. Providing both this and vpcProps is an error. If the client provides an existing load balancer and/or existing Private Hosted Zone, those constructs must exist in this VPC.  
+vpcProps? |  [`ec2.VpcProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.VpcProps.html) |  Optional custom properties for a VPC the construct will create. This VPC will be used by any Private Hosted Zone the construct creates (that’s why loadBalancerProps and privateHostedZoneProps can’t include a VPC). Providing both this and existingVpc causes an error.  
+existingVpc? |  [`ec2.IVpc`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.IVpc.html) |  An existing VPC in which to deploy the construct. Providing both this and vpcProps causes an error. If the client provides an existing load balancer and/or existing Private Hosted Zone, those constructs must exist in this VPC.  
@@ -85,2 +85,2 @@ existingContainerDefinitionObject? |  [`ecs.ContainerDefinition`](https://docs.a
-dynamoTableProps? |  [`dynamodb.TableProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_dynamodb.TableProps.html) |  Optional user provided props to override the default props for DynamoDB Table.  
-existingTableInterface? |  [`dynamodb.ITable`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_dynamodb.ITable.html) |  Existing instance of DynamoDB table object or interface, providing both this and `dynamoTableProps` will cause an error.  
+dynamoTableProps? |  [`dynamodb.TableProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_dynamodb.TableProps.html) |  Optional user provided props to override the default props for the DynamoDB Table. Providing both this and `existingTableInterface` causes an error.  
+existingTableInterface? |  [`dynamodb.ITable`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_dynamodb.ITable.html) |  Optional - existing DynamoDB table, providing both this and `dynamoTableProps` will cause an error.