deformationMap
Spec
deformationMap<TTarget>(
target: { M: MapAttributeValue },
TClass: ClassCapture<TTarget>
): TTargetInput
Example
const entity: Cat = Mapper.deformationMap(
{
M: {
id: { N: "666" },
name: { S: "garfield" }
}
},
Cat
);Last updated