Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 957 Bytes

data_types.rst

File metadata and controls

26 lines (24 loc) · 957 Bytes

Data Types

Below is a list of all DynamoDB data types and examples of how to represent those types in queries.

NUMBER 123
STRING 'asdf' or "asdf"
BINARY b'datadatadata'
NUMBER SET (1, 2, 3)
STRING SET ('a', 'b', 'c')
BINARY SET (b'a', b'c')
BOOL TRUE or FALSE
LIST [1, 2, 3]
MAP {'a': 1}