Build a global dynamodb table
Project description
@aws-cdk/aws-dynamodb-global
This API is still under active development and subject to non-backward compatible changes or removal in any future version. Use of the API is not recommended in production environments. Experimental APIs are not subject to the Semantic Versioning model.
Global Tables builds upon DynamoDB’s global footprint to provide you with a fully managed, multi-region, and multi-master database that provides fast, local, read and write performance for massively scaled, global applications. Global Tables replicates your Amazon DynamoDB tables automatically across your choice of AWS regions.
Here is a minimal deployable Global DynamoDB tables definition:
import { AttributeType } from '@aws-cdk/aws-dynamodb';
import { GlobalTable } from '@aws-cdk/aws-dynamodb-global';
import { App } from '@aws-cdk/cdk';
const app = new App();
new GlobalTable(app, 'globdynamodb', {
partitionKey: { name: 'hashKey', type: AttributeType.String },
tableName: 'GlobalTable',
regions: [ "us-east-1", "us-east-2", "us-west-2" ]
});
app.synth();
Implementation Notes
AWS Global DynamoDB Tables is an odd case currently. The way this package works -
- Creates a DynamoDB table in a separate stack in each
DynamoDBGlobalStackProps.region
specified - Deploys a CFN Custom Resource to your stack's specified region that calls a lambda that runs the aws cli which calls
createGlobalTable()
Notes
GlobalTable() will set dynamoProps.streamSpecification
to be NEW_AND_OLD_IMAGES
since this is a required attribute for AWS Global DynamoDB tables to work. The package will throw an error if any other streamSpecification
is set in DynamoDBGlobalStackProps
.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aws-cdk.aws-dynamodb-global-0.34.0.tar.gz
.
File metadata
- Download URL: aws-cdk.aws-dynamodb-global-0.34.0.tar.gz
- Upload date:
- Size: 33.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d9bbf31c9e28cf77b4d0a986c14e93efbd3f899c321fd6d897e8902e6aa06f1 |
|
MD5 | 289c92e463f42549e46ebd6a293da6ab |
|
BLAKE2b-256 | fa031139bced5851891c547443c0b1e6ecb22bb7244e35c36a68d7ef0f57cec4 |
File details
Details for the file aws_cdk.aws_dynamodb_global-0.34.0-py3-none-any.whl
.
File metadata
- Download URL: aws_cdk.aws_dynamodb_global-0.34.0-py3-none-any.whl
- Upload date:
- Size: 31.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c513968140046c9b99f75e925229e7546bdfe0e3cd670761c10cc1cc21ad0721 |
|
MD5 | c56d62528bb63ceb2b4630614a2d540d |
|
BLAKE2b-256 | 4a7d2fd876748ea92468256ad7b534a8810bf562415e4ed8fa0585a172e41216 |