property DynamoEntityMapping.dateAttributes

The encoding each date-bearing attribute is stored under.

A Date in an ordered comparison is converted to the attribute's declared encoding — 'iso' (ISO-8601 string) or 'epochMs' (epoch-milliseconds number). With no declaration for the attribute, the comparison is refused by name: DynamoDB has no date type, so the adapter cannot know how the stored value is encoded (M80 plan §1A F7).

Type

Readonly<Record<string, DynamoDateEncoding>>

Usage

import { type DynamoEntityMapping } from "database-plugin/src/index.ts";