You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/conditional.rst
+67-49
Original file line number
Diff line number
Diff line change
@@ -3,18 +3,17 @@
3
3
Conditional Operations
4
4
======================
5
5
6
-
Some DynamoDB operations (UpdateItem, PutItem, DeleteItem) support the inclusion of conditions. The user can supply a condition to be
7
-
evaluated by DynamoDB before the operation is performed. See the `official documentation <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithItems.html#WorkingWithItems.ConditionalUpdate>`_
6
+
Some DynamoDB operations support the inclusion of conditions. The user can supply a condition to be
7
+
evaluated by DynamoDB before an item is modified (with save, update and delete) or before an item is included
8
+
in the result (with query and scan). See the `official documentation <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithItems.html#WorkingWithItems.ConditionalUpdate>`_
8
9
for more details.
9
10
10
11
Suppose that you have defined a `Thread` Model for the examples below.
11
12
12
13
.. code-block:: python
13
14
14
15
from pynamodb.models import Model
15
-
from pynamodb.attributes import (
16
-
UnicodeAttribute, NumberAttribute
17
-
)
16
+
from pynamodb.attributes import UnicodeAttribute, NumberAttribute
18
17
19
18
20
19
classThread(Model):
@@ -24,6 +23,9 @@ Suppose that you have defined a `Thread` Model for the examples below.
24
23
forum_name = UnicodeAttribute(hash_key=True)
25
24
subject = UnicodeAttribute(range_key=True)
26
25
views = NumberAttribute(default=0)
26
+
authors = ListAttribute()
27
+
properties = MapAttribute()
28
+
27
29
28
30
.. _conditions:
29
31
@@ -36,61 +38,78 @@ See the `comparison operator and function reference <https://docs.aws.amazon.com
36
38
for more details.
37
39
38
40
.. csv-table::
39
-
:header: DynamoDB Condition, PynamoDB Syntax, Example
0 commit comments