pub fn from_items<'a, T>(
    items: Vec<HashMap<String, AttributeValue>>
) -> Result<Vec<T>>
where T: Deserialize<'a>,
Available on crate feature aws-sdk-dynamodbstreams+0_26 only.
Expand description

A version of crate::from_items where the AV generic is tied to aws-sdk-dynamodbstreams::model::AttributeValue.

Useful in very generic code where the type checker can’t determine the type of AV.