DynamoDB の命名規則まわり
Published: 2022/10/28
naming conventions for DynamoDB?
Background: I'm creating kind of simplified pseudo-ORM for use in Django. Classes obviously use CamelCase convention, while Django app is underscored lowercase. Which leaves me with a few options:
stackoverflow.com

- 基本的に、CamelCase であろうが snake_case であろうが問題はない。
- ただ、公式ドキュメントを見る限りは CamelCase を採用している example が多いので、それに従っておけば良いのでは、という感じ。