## 事象
```
An error occurred (ValidationException) when calling the CreateTable operation: The number of attributes in key schema must match the number of attributes defined in attribute definitions.
```
## 原因
`--attribute-definitions`で指定した要素の数と、`--key-schema`で指定した要素の数が異なるから。
## 対策
primary keyとsort key以外を`--attribute-definitions`で指定しない。[[DynamoDB]]は柔軟にカラムを追加できるので、作成時に指定しなくていい。
## 参考
- [DynamoDBでちょっとハマった話 \- ITあれこれ弄り道](https://knyacki.hatenablog.com/entry/2017/10/21/103513)