package parsers
Type Members
- case class Delete[T](before: T) extends DynamoDBBeforeAfter[T] with Product with Serializable
- sealed trait DynamoDBBeforeAfter[T] extends AnyRef
- case class Insert[T](after: T) extends DynamoDBBeforeAfter[T] with Product with Serializable
- case class Unsupported[T](reason: String) extends DynamoDBBeforeAfter[T] with Product with Serializable
- case class Update[T](before: T, after: T) extends DynamoDBBeforeAfter[T] with Product with Serializable