I have a DynamoDB table that I need to read/write to. I am trying to create a model for reading and writing from DynamoDB with Kotlin. But I keep encountering com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMappingException: MyModelDB[myMap]; could not unconvert attribute
when I run dynamoDBMapper.scanPage(...)
. Some times myMap
will be MyListOfMaps
instead, but I guess it's from iterating the keys of a Map.
My code is below:
@DynamoDBTable(tableName = "") // Non-issue, I am assigning the table name in the DynamoDBMapper
data class MyModelDB(
@DynamoDBHashKey(attributeName = "id")
var id: String,
@DynamoDBAttribute(attributeName = "myMap")
var myMap: MyMap,
@DynamoDBAttribute(attributeName = "MyListOfMapItems")
var myListOfMapItems: List<MyMapItem>,
) {
constructor() : this(id = "", myMap = MyMap(), myListOfMaps = mutableListOf())
@DynamoDBDocument
class MyMap {
@get:DynamoDBAttribute(attributeName = "myMapAttr")
var myMapAttr: MyMapAttr = MyMapAttr()
@DynamoDBDocument
class MyMapAttr {
@get:DynamoDBAttribute(attributeName = "stringValue")
var stringValue: String = ""
}
}
@DynamoDBDocument
class MyMapItem {
@get:DynamoDBAttribute(attributeName = "myMapItemAttr")
var myMapItemAttr: String = ""
}
}
I am using the com.amazonaws:aws-java-sdk-dynamodb:1.11.500
package and my dynamoDBMapper
is initialised with DynamoDBMapperConfig.Builder().build()
(along with some other configurations).
My question is what am I doing wrong and why? I have also seen that some Java implementations use DynamoDBTypeConverter
. Is it better and I should be using that instead?
Any examples would be appreciated!
Ok, I eventually got this working thanks to some help. I edited the question slightly after getting a better understanding. Here is how my data class eventually turned out. For Java users, Kotlin compiles to Java, so if you can figure out how the conversion works, the idea should be the same for your use too.
This would at least let me use my custom converters to get my data out of DynamoDB. I would go on to define a separate data container class for use within my own application, and I created a method to serialize and unserialize between these 2 data objects. This is more of a preference for how you would like to handle the data, but this is it for me.
Finally, we come to the implementation of the 2
toMyModel.*()
methods. Let's start with input, this is what my columns looked like:myMap:
myList:
The trick then is to use
com.amazonaws.services.dynamodbv2.model.AttributeValue
to convert each field in the JSON. So if I wanted to access the value ofsubKey2
inkey1
field ofmyMap
, I would do something like this:The same applies to
myList
:Edit: Doubt this will be much of an issue, but I also updated my DynamoDB dependency to
com.amazonaws:aws-java-sdk-dynamodb:1.12.126