Interface IPropertyConverter
- Namespace
- Amazon.DynamoDBv2.DataModel
- Assembly
- AWSSDK.DynamoDBv2.dll
Interface for converting arbitrary objects to DynamoDB-supported object types.
Implementing type must be public, instantiable, and should have a zero-parameter constructor.
public interface IPropertyConverter
Methods
FromEntry(DynamoDBEntry)
Convert DynamoDBEntry to the specified object
object FromEntry(DynamoDBEntry entry)
Parameters
entry
DynamoDBEntryDynamoDBEntry to be serialized
Returns
- object
Serialized object
ToEntry(object)
Convert object to DynamoDBEntry
DynamoDBEntry ToEntry(object value)
Parameters
value
objectObject to be deserialized
Returns
- DynamoDBEntry
Object deserialized as DynamoDBEntry