ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
DynamoDB typeDynamoDB AliasesPanoply TypeDescription
2
StringS (string type)TextUnicode with UTF-8 binary encoding
3
Boolean, booleanBOOLBoolean logical Boolean (true/false)
4
Byte, byteB (binary type)NumberBinary type attributes can store any binary data, such as compressed text, encrypted data, or images
5
DateS (string type)TextUnicode with UTF-8 binary encoding
6
CalendarS (string type)TextUnicode with UTF-8 binary encoding
7
Long, longNumber
8
Integer, intNumberSigned four-byte integer
9
Double, doubleNumber
10
Float, floatNumber
11
BigDecimalS (string type)TextSigned eight-byte integer
12
BigIntegerNumberSigned eight-byte integer
13
ByteBufferexcludeexclude
14
List collection typeJSON*Converts into another table of values. A list type attribute can store an ordered collection of values. Lists are enclosed in square brackets: [ ... ]
15
Map collection typeJSON*Converts into another table of values. A map type attribute can store an unordered collection of name-value pairs. Maps are enclosed in curly braces: { ... }
16
Set collection typeSS (string set) type or NS (number set) type or BS (binary set) typearray*Converts into another table of values
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100