Skip to content

Instantly share code, notes, and snippets.

@ochilab
Created April 14, 2021 01:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ochilab/e899910620b237bae949e5d3ee75bd6a to your computer and use it in GitHub Desktop.
Save ochilab/e899910620b237bae949e5d3ee75bd6a to your computer and use it in GitHub Desktop.
DynamoDB: DynamoDBMapperでBatch処理をする
DynamoDBMapper mapper = new DynamoDBMapper(client);
List list = new ArrayList();
list.add(item);
list.add(item);
mapper.batchSave(list);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment