pub fn from_attribute_value<'a, Tin, Tout>(attribute_value: Tin) -> Result<Tout> where
    Tin: AttributeValue,
    Tout: Deserialize<'a>, 
Expand description

Interpret an AttributeValue as an instance of type T.

In most cases, you will want to be using from_item instead. This function is provided as a dual of super::to_attribute_value and may be useful in very narrow circumstances.