Table Args
The `AWS::DynamoDB::Table`
resource creates a DDB table. For more information, see CreateTable in the API Reference. You should be aware of the following behaviors when working with DDB tables:
CFNlong typically creates DDB tables in parallel. However, if your template includes multiple DDB tables with indexes, you must declare dependencies so that the tables are created sequentially. DDBlong limits the number of tables with secondary indexes that are in the creating state. If you create multiple tables with indexes at the same time, DDB returns an error and the stack operation fails. For an example, see DynamoDB Table with a DependsOn Attribute. Our guidance is to use the latest schema documented here for your CFNlong templates. This schema supports the provisioning of all table settings below. When using this schema in your CFNlong templates, please ensure that your Identity and Access Management (IAM) policies are updated with appropriate permissions to allow for the authorization of these setting changes.
Example Usage
Example
No Java example available.
Example
No Java example available.
Constructors
Properties
A list of attributes that describe the key schema for the table and indexes. This property is required to create a DDB table. Update requires: Some interruptions. Replacement if you edit an existing AttributeDefinition.
Specify how you are charged for read and write throughput and how you manage capacity. Valid values include:
The settings used to enable or disable CloudWatch Contributor Insights for the specified table.
Determines if a table is protected from deletion. When enabled, the table cannot be deleted by any user or process. This setting is disabled by default. For more information, see Using deletion protection in the Developer Guide.
Global secondary indexes to be created on the table. You can create up to 20 global secondary indexes. If you update a table to include a new global secondary index, CFNlong initiates the index creation and then proceeds with the stack update. CFNlong doesn't wait for the index to complete creation because the backfilling phase can take a long time, depending on the size of the table. You can't use the index or update the table until the index's status is `ACTIVE`
. You can track its status by using the DynamoDB DescribeTable command. If you add or delete an index during an update, we recommend that you don't update any other resources. If your stack fails to update and is rolled back while adding a new index, you must manually delete the index. Updates are not supported. The following are exceptions:
Specifies the properties of data being imported from the S3 bucket source to the table. If you specify the `ImportSourceSpecification`
property, and also specify either the `StreamSpecification`
, the `TableClass`
property, or the `DeletionProtectionEnabled`
property, the IAM entity creating/updating stack must have `UpdateTable`
permission.
Specifies the attributes that make up the primary key for the table. The attributes in the `KeySchema`
property must also be defined in the `AttributeDefinitions`
property.
The Kinesis Data Streams configuration for the specified table.
Local secondary indexes to be created on the table. You can create up to 5 local secondary indexes. Each index is scoped to a given hash key value. The size of each hash key can be up to 10 gigabytes.
Sets the maximum number of read and write units for the specified on-demand table. If you use this property, you must specify `MaxReadRequestUnits`
, `MaxWriteRequestUnits`
, or both.
The settings used to enable point in time recovery.
Throughput for the specified table, which consists of values for `ReadCapacityUnits`
and `WriteCapacityUnits`
. For more information about the contents of a provisioned throughput structure, see Amazon DynamoDB Table ProvisionedThroughput. If you set `BillingMode`
as `PROVISIONED`
, you must specify this property. If you set `BillingMode`
as `PAY_PER_REQUEST`
, you cannot specify this property.
A resource-based policy document that contains permissions to add to the specified table. In a CFNshort template, you can provide the policy in JSON or YAML format because CFNshort converts YAML to JSON before submitting it to DDB. For more information about resource-based policies, see Using resource-based policies for and Resource-based policy examples. When you attach a resource-based policy while creating a table, the policy creation is strongly consistent. For information about the considerations that you should keep in mind while attaching a resource-based policy, see Resource-based policy considerations.
Specifies the settings to enable server-side encryption.
The settings for the DDB table stream, which capture changes to items stored in the table.
The table class of the new table. Valid values are `STANDARD`
and `STANDARD_INFREQUENT_ACCESS`
.
A name for the table. If you don't specify a name, CFNlong generates a unique physical ID and uses that ID for the table name. For more information, see Name Type. If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
Specifies the Time to Live (TTL) settings for the table. For detailed information about the limits in DynamoDB, see Limits in Amazon DynamoDB in the Amazon DynamoDB Developer Guide.