Last active
November 10, 2020 09:48
-
-
Save billydh/851436486050347df497cfab36661505 to your computer and use it in GitHub Desktop.
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 | |
| import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbSortKey | |
| @DynamoDbBean | |
| data class AccountActivity( | |
| @get:DynamoDbPartitionKey var accountId: String? = null, | |
| @get:DynamoDbSortKey var eventTimestampEpoch: Long? = null, | |
| var activityName: String? = null | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment