formationList
Spec
formationList<TSource>(
source: TSource[],
TClass: ClassCapture<TSource>
): { L: ListAttributeValue }Input
Example
const dynamo: AttributeValue = Mapper.formationList(
[
{ id: 666, name: "garfield" },
{ id: 777, name: "doraemong" }
],
Cat
);Last updated