AWS solutions documentation change
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 | `aws_solutions_constructs.aws_fargate_dynamodb` - Typescript | `@aws-solutions-constructs/aws-fargate-dynamodb` - Java | `software.amazon.awsconstructs.services.fargatedynamodb` + Python | `aws_solutions_constructs.aws_fargate_dynamodb` + Typescript | `@aws-solutions-constructs/aws-fargate-dynamodb` + 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.