Isotope.put¶
Persist an item within SimpleDB
Signature¶
Isotope<T, TPut = T, TGet = T>.put(data: TPut): Promise<void>
Parameters¶
data
-
Data to be persisted — by default, partial data will trigger TypeScript errors due to the specified typings. In order to write partial data, Isotopes must be configured with
Partial<T>
orDeepPartial<T>
forTPut
, see this section.Before delegating to SimpleDB, the keys of the data object are flattened and the values are encoded according to the method specified in
options.format.encoding
during initialization of the isotope.
Example¶
await isotope.put(data)