Skip to content

Instantly share code, notes, and snippets.

@ochilab
Created April 14, 2021 01:35
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