I want to make a query like this.
val dynamoDB = DynamoDB(dynamoDBConfig.amazonDynamoDB()) val table: Table = dynamoDB.getTable("music")
val spec = QuerySpec()
.withKeyConditionExpression("artist = :_artist and begins_with(title, :_title)")
.withValueMap(ValueMap()
.withString(":_artist", "Guns n' Roses")
.withString(":_title", "*to the Jungle")
)
and this results in a list of music containing a music with title "Welcome to the Juntle"