Created
November 10, 2020 01:35
-
-
Save billydh/023adba898dab80956ee53f31e40f3e7 to your computer and use it in GitHub Desktop.
with DynamoDbBean annotation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbBean | |
import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbPartitionKey | |
@DynamoDbBean | |
data class CustomerPersist( | |
@get:DynamoDbPartitionKey var customerId: String? = null, | |
var emailAddress: String? = null, | |
var firstName: String? = null, | |
var lastName: String? = null | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment