Interface | Description |
---|---|
Attribute |
Represents an attribute for describing the key schema for the table and indexes.
|
CfnGlobalTable.AttributeDefinitionProperty |
Represents an attribute for describing the key schema for the table and indexes.
|
CfnGlobalTable.CapacityAutoScalingSettingsProperty |
Configures a scalable target and an autoscaling policy for a table or global secondary index's read or write capacity.
|
CfnGlobalTable.ContributorInsightsSpecificationProperty |
Configures contributor insights settings for a replica or one of its indexes.
|
CfnGlobalTable.GlobalSecondaryIndexProperty |
Allows you to specify a global secondary index for the global table.
|
CfnGlobalTable.KeySchemaProperty |
Represents *a single element* of a key schema.
|
CfnGlobalTable.KinesisStreamSpecificationProperty |
The Kinesis Data Streams configuration for the specified global table replica.
|
CfnGlobalTable.LocalSecondaryIndexProperty |
Represents the properties of a local secondary index.
|
CfnGlobalTable.PointInTimeRecoverySpecificationProperty |
Represents the settings used to enable point in time recovery.
|
CfnGlobalTable.ProjectionProperty |
Represents attributes that are copied (projected) from the table into an index.
|
CfnGlobalTable.ReadProvisionedThroughputSettingsProperty |
Allows you to specify the read capacity settings for a replica table or a replica global secondary index when the `BillingMode` is set to `PROVISIONED` .
|
CfnGlobalTable.ReplicaGlobalSecondaryIndexSpecificationProperty |
Represents the properties of a global secondary index that can be set on a per-replica basis.
|
CfnGlobalTable.ReplicaSpecificationProperty |
Defines settings specific to a single replica of a global table.
|
CfnGlobalTable.ReplicaSSESpecificationProperty |
Allows you to specify a KMS key identifier to be used for server-side encryption.
|
CfnGlobalTable.SSESpecificationProperty |
Represents the settings used to enable server-side encryption.
|
CfnGlobalTable.StreamSpecificationProperty |
Represents the DynamoDB Streams configuration for a table in DynamoDB.
|
CfnGlobalTable.TargetTrackingScalingPolicyConfigurationProperty |
Defines a target tracking scaling policy.
|
CfnGlobalTable.TimeToLiveSpecificationProperty |
Represents the settings used to enable or disable Time to Live (TTL) for the specified table.
|
CfnGlobalTable.WriteProvisionedThroughputSettingsProperty |
Specifies an auto scaling policy for write capacity.
|
CfnGlobalTableProps |
Properties for defining a `CfnGlobalTable`.
|
CfnTable.AttributeDefinitionProperty |
Represents an attribute for describing the key schema for the table and indexes.
|
CfnTable.ContributorInsightsSpecificationProperty |
The settings used to enable or disable CloudWatch Contributor Insights.
|
CfnTable.CsvProperty |
The options for imported source files in CSV format.
|
CfnTable.GlobalSecondaryIndexProperty |
Represents the properties of a global secondary index.
|
CfnTable.ImportSourceSpecificationProperty |
Specifies the properties of data being imported from the S3 bucket source to the table.
|
CfnTable.InputFormatOptionsProperty |
The format options for the data that was imported into the target table.
|
CfnTable.KeySchemaProperty |
Represents *a single element* of a key schema.
|
CfnTable.KinesisStreamSpecificationProperty |
The Kinesis Data Streams configuration for the specified table.
|
CfnTable.LocalSecondaryIndexProperty |
Represents the properties of a local secondary index.
|
CfnTable.PointInTimeRecoverySpecificationProperty |
The settings used to enable point in time recovery.
|
CfnTable.ProjectionProperty |
Represents attributes that are copied (projected) from the table into an index.
|
CfnTable.ProvisionedThroughputProperty |
Throughput for the specified table, which consists of values for `ReadCapacityUnits` and `WriteCapacityUnits` .
|
CfnTable.S3BucketSourceProperty |
The S3 bucket that is being imported from.
|
CfnTable.SSESpecificationProperty |
Represents the settings used to enable server-side encryption.
|
CfnTable.StreamSpecificationProperty |
Represents the DynamoDB Streams configuration for a table in DynamoDB.
|
CfnTable.TimeToLiveSpecificationProperty |
Represents the settings used to enable or disable Time to Live (TTL) for the specified table.
|
CfnTableProps |
Properties for defining a `CfnTable`.
|
EnableScalingProps |
Properties for enabling DynamoDB capacity scaling.
|
GlobalSecondaryIndexProps |
Properties for a global secondary index.
|
IScalableTableAttribute |
Interface for scalable attributes.
|
IScalableTableAttribute.Jsii$Default |
Internal default implementation for
IScalableTableAttribute . |
ITable |
An interface that represents a DynamoDB Table - either created with the CDK, or an existing one.
|
ITable.Jsii$Default |
Internal default implementation for
ITable . |
LocalSecondaryIndexProps |
Properties for a local secondary index.
|
SchemaOptions |
Represents the table schema attributes.
|
SecondaryIndexProps |
Properties for a secondary index.
|
SystemErrorsForOperationsMetricOptions |
Options for configuring a system errors metric that considers multiple operations.
|
TableAttributes |
Reference to a dynamodb table.
|
TableOptions |
Properties of a DynamoDB Table.
|
TableProps |
Properties for a DynamoDB Table.
|
UtilizationScalingProps |
Properties for enabling DynamoDB utilization tracking.
|
Enum | Description |
---|---|
AttributeType |
Data types for attributes within a table.
|
BillingMode |
DynamoDB's Read/Write capacity modes.
|
Operation |
Supported DynamoDB table operations.
|
ProjectionType |
The set of attributes that are projected into the index.
|
StreamViewType |
When an item in the table is modified, StreamViewType determines what information is written to the stream for this table.
|
TableClass |
DynamoDB's table class.
|
TableEncryption |
What kind of server-side encryption to apply to this table.
|
---
Here is a minimal deployable DynamoDB table definition:
Table table = Table.Builder.create(this, "Table") .partitionKey(Attribute.builder().name("id").type(AttributeType.STRING).build()) .build();
To import an existing table into your CDK application, use the Table.fromTableName
, Table.fromTableArn
or Table.fromTableAttributes
factory method. This method accepts table name or table ARN which describes the properties of an already
existing table:
User user; ITable table = Table.fromTableArn(this, "ImportedTable", "arn:aws:dynamodb:us-east-1:111111111:table/my-table"); // now you can just call methods on the table table.grantReadWriteData(user);
If you intend to use the tableStreamArn
(including indirectly, for example by creating an
@aws-cdk/aws-lambda-event-source.DynamoEventSource
on the imported table), you must use the
Table.fromTableAttributes
method and the tableStreamArn
property must be populated.
When a table is defined, you must define it's schema using the partitionKey
(required) and sortKey
(optional) properties.
DynamoDB supports two billing modes:
Table table = Table.Builder.create(this, "Table") .partitionKey(Attribute.builder().name("id").type(AttributeType.STRING).build()) .billingMode(BillingMode.PAY_PER_REQUEST) .build();
Further reading: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.
DynamoDB supports two table classes:
Table table = Table.Builder.create(this, "Table") .partitionKey(Attribute.builder().name("id").type(AttributeType.STRING).build()) .tableClass(TableClass.STANDARD_INFREQUENT_ACCESS) .build();
Further reading: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.TableClasses.html
You can have DynamoDB automatically raise and lower the read and write capacities of your table by setting up autoscaling. You can use this to either keep your tables at a desired utilization level, or by scaling up and down at pre-configured times of the day:
Auto-scaling is only relevant for tables with the billing mode, PROVISIONED.
IScalableTableAttribute readScaling = table.autoScaleReadCapacity(EnableScalingProps.builder().minCapacity(1).maxCapacity(50).build()); readScaling.scaleOnUtilization(UtilizationScalingProps.builder() .targetUtilizationPercent(50) .build()); readScaling.scaleOnSchedule("ScaleUpInTheMorning", ScalingSchedule.builder() .schedule(Schedule.cron(CronOptions.builder().hour("8").minute("0").build())) .minCapacity(20) .build()); readScaling.scaleOnSchedule("ScaleDownAtNight", ScalingSchedule.builder() .schedule(Schedule.cron(CronOptions.builder().hour("20").minute("0").build())) .maxCapacity(20) .build());
Further reading: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/AutoScaling.html https://aws.amazon.com/blogs/database/how-to-use-aws-cloudformation-to-configure-auto-scaling-for-amazon-dynamodb-tables-and-indexes/
You can create DynamoDB Global Tables by setting the replicationRegions
property on a Table
:
Table globalTable = Table.Builder.create(this, "Table") .partitionKey(Attribute.builder().name("id").type(AttributeType.STRING).build()) .replicationRegions(List.of("us-east-1", "us-east-2", "us-west-2")) .build();
When doing so, a CloudFormation Custom Resource will be added to the stack in order to create the replica tables in the selected regions.
The default billing mode for Global Tables is PAY_PER_REQUEST
.
If you want to use PROVISIONED
,
you have to make sure write auto-scaling is enabled for that Table:
Table globalTable = Table.Builder.create(this, "Table") .partitionKey(Attribute.builder().name("id").type(AttributeType.STRING).build()) .replicationRegions(List.of("us-east-1", "us-east-2", "us-west-2")) .billingMode(BillingMode.PROVISIONED) .build(); globalTable.autoScaleWriteCapacity(EnableScalingProps.builder() .minCapacity(1) .maxCapacity(10) .build()).scaleOnUtilization(UtilizationScalingProps.builder().targetUtilizationPercent(75).build());
When adding a replica region for a large table, you might want to increase the timeout for the replication operation:
Table globalTable = Table.Builder.create(this, "Table") .partitionKey(Attribute.builder().name("id").type(AttributeType.STRING).build()) .replicationRegions(List.of("us-east-1", "us-east-2", "us-west-2")) .replicationTimeout(Duration.hours(2)) .build();
All user data stored in Amazon DynamoDB is fully encrypted at rest. When creating a new table, you can choose to encrypt using the following customer master keys (CMK) to encrypt your table:
Creating a Table encrypted with a customer managed CMK:
Table table = Table.Builder.create(this, "MyTable") .partitionKey(Attribute.builder().name("id").type(AttributeType.STRING).build()) .encryption(TableEncryption.CUSTOMER_MANAGED) .build(); // You can access the CMK that was added to the stack on your behalf by the Table construct via: IKey tableEncryptionKey = table.getEncryptionKey();
You can also supply your own key:
import software.amazon.awscdk.services.kms.*; Key encryptionKey = Key.Builder.create(this, "Key") .enableKeyRotation(true) .build(); Table table = Table.Builder.create(this, "MyTable") .partitionKey(Attribute.builder().name("id").type(AttributeType.STRING).build()) .encryption(TableEncryption.CUSTOMER_MANAGED) .encryptionKey(encryptionKey) .build();
In order to use the AWS managed CMK instead, change the code to:
Table table = Table.Builder.create(this, "MyTable") .partitionKey(Attribute.builder().name("id").type(AttributeType.STRING).build()) .encryption(TableEncryption.AWS_MANAGED) .build();
To get the partition key and sort key of the table or indexes you have configured:
Table table; SchemaOptions schema = table.schema(); Attribute partitionKey = schema.getPartitionKey(); Attribute sortKey = schema.getSortKey();
A Kinesis Data Stream can be configured on the DynamoDB table to capture item-level changes.
import software.amazon.awscdk.services.kinesis.*; Stream stream = new Stream(this, "Stream"); Table table = Table.Builder.create(this, "Table") .partitionKey(Attribute.builder().name("id").type(AttributeType.STRING).build()) .kinesisStream(stream) .build();