Table of Contents generated with DocToc
This Python 3 library contains compound and high-level PynamoDB attributes:
IntegerAttribute
– same asNumberAttribute
but whose value is typed asint
(rather thanfloat
)UnicodeDelimitedTupleAttribute
- a delimiter-separated value, useful for storing composite keysUnicodeEnumAttribute
- serializes a string-valuedEnum
into a Unicode (S
-typed) attributeTimestampAttribute
,TimestampMsAttribute
,TimestampUsAttribute
– serializesdatetime
s as Unix epoch seconds, milliseconds (ms) or microseconds (µs)IntegerDateAttribute
- serializesdate
as an integer representing the Gregorian date (e.g.20181231
)UUIDAttribute
- serializes aUUID
Python object as aS
type attribute (e.g.'a8098c1a-f86e-11da-bd1a-00112444be1e'
)