# Functions
ConvertFrom accepts a *dynamodb.AttributeValue and converts it to any interface{}.
ConvertFromList accepts a []*dynamodb.AttributeValue and converts it to an array or slice.
ConvertFromMap accepts a map[string]*dynamodb.AttributeValue and converts it to a map[string]interface{} or struct.
ConvertTo accepts any interface{} and converts it to a *dynamodb.AttributeValue.
ConvertToList accepts an array or slice and converts it to a []*dynamodb.AttributeValue.
ConvertToMap accepts a map[string]interface{} or struct and converts it to a map[string]*dynamodb.AttributeValue.