Trait korat::DynamoDBItem [] [src]

pub trait DynamoDBItem: TryFrom<HashMap<String, AttributeValue>, Error = ConversionError> + Into<HashMap<String, AttributeValue>> {
    fn get_attribute_names() -> Vec<String>;
}

The DynamoDBItem trait gathers all the requirements expected from a struct which is meant to interact with DynamoDB operations.

Required Methods

Implementors