Skip to content

Instantly share code, notes, and snippets.

@sashbuild
Last active June 18, 2020 23:05
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 sashbuild/ab2bdf9d1a459224a289e1482ec645c6 to your computer and use it in GitHub Desktop.
Save sashbuild/ab2bdf9d1a459224a289e1482ec645c6 to your computer and use it in GitHub Desktop.
static AmazonDynamoDB dynamoDBClient = AmazonDynamoDBClientBuilder.standard().build();
public void create(Employee employee)
{
DynamoDBMapper dynamoDBMapper = new DynamoDBMapper(dynamoDBClient);
dynamoDBMapper.save(employee);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment