Skip to content

Commit

Permalink
readme updates
Browse files Browse the repository at this point in the history
Signed-off-by: Francis <colifran@amazon.com>
  • Loading branch information
colifran committed Aug 29, 2023
1 parent 8be052e commit 534222a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-dynamodb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GlobalTables.ht

## Replicas

A `GlobalTable` can be configured with replica tables. To do this, the `GlobalTable` must be defined in a region non-agnostic `Stack`. The main deployment region must not be given as a replica because this is created by default with the `GlobalTable`. The following is a minimal `GlobalTable` definition with `replicas` defined in `us-east-1` and `us-east-2`:
A `GlobalTable` can be configured with replica tables. To do this, the `GlobalTable` must be defined in a `Stack` with a defined region. The main deployment region must not be given as a replica because this is created by default with the `GlobalTable`. The following is a minimal example of defining a `GlobalTable` with `replicas`. This `GlobalTable` definition will provision three copies of the table - one in `us-west-2` (primary deployment region), one in `us-east-1`, and one in `us-east-2`.

```ts
import * as cdk from 'aws-cdk-lib';
Expand Down

0 comments on commit 534222a

Please sign in to comment.