Skip to content

add non final clarification to ddb enhanced client #6250

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "documentation",
"category": "Amazon DynamoDB Enhanced Client",
"contributor": "",
"description": "Add documentation clarifying usage for ddb enhanced client"
}
3 changes: 3 additions & 0 deletions services-custom/dynamodb-enhanced/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ completely made up and not part of this library. Any search or key
values used are also completely arbitrary.

### Initialization
**IMPORTANT**: Fields in your DynamoDbBean java class **MUST NOT** be marked as `final`.
The DynamoDB Enhanced Client requires fields to be mutable for the mapping to work correctly.

1. Create or use a java class for mapping records to and from the
database table. At a minimum you must annotate the class so that
it can be used as a DynamoDb bean, and also the property that
Expand Down
Loading