diff --git a/versions/2016-10-31.md b/versions/2016-10-31.md index 8812bc859f..e7d6cb5b17 100644 --- a/versions/2016-10-31.md +++ b/versions/2016-10-31.md @@ -313,7 +313,7 @@ The `AWS::Serverless::SimpleTable` resource creates a DynamoDB table with a sing Property Name | Type | Description ---|:---:|--- -PrimaryKey | [Primary Key Object](#primary-key-object) | Attribute name and type to be used as the table's primary key. **This cannot be modified without replacing the resource.** Defaults to `String` attribute named ID. +PrimaryKey | [Primary Key Object](#primary-key-object) | Attribute name and type to be used as the table's primary key. **This cannot be modified without replacing the resource.** Defaults to `String` attribute named `id`. ProvisionedThroughput | [Provisioned Throughput Object](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html) | Read and write throughput provisioning information. If ProvisionedThroughput is not specified BillingMode will be specified as PAY_PER_REQUEST Tags | Map of `string` to `string` | A map (string to string) that specifies the tags to be added to this table. Keys and values are limited to alphanumeric characters. TableName | `string` | Name for the DynamoDB Table @@ -689,7 +689,7 @@ The object describing the properties of a primary key. Property Name | Type | Description ---|:---:|--- Name | `string` | Attribute name of the primary key. Defaults to `id`. -Type | `string` | Attribute type of the primary key. MUST be one of `String`, `Number`, or `Binary`. +Type | `string` | Attribute type of the primary key. MUST be one of `String`, `Number`, or `Binary`. Defaults to `String`. ##### Example: Primary key object