A developer is creating a Java application that will store sensitive data in an Amazon DynamoDB table. The data must be encrypted at all times.
How can the developer meet this requirement?
Client-side and server-side encryption:
'DynamoDB Encryption Client' supports client-side encryption, where you encrypt your table data before you send it to DynamoDB. However, DynamoDB provides a server-side encryption at rest feature that transparently encrypts your table when it is persisted to disk and decrypts it when you access the table.
https://docs.aws.amazon.com/dynamodb-encryption-client/latest/devguide/client-server-side.html
Currently there are no comments in this discussion, be the first to comment!