These are the valid item types to use with Boto3 Table Resource (dynamodb.Table) and DynamoDB:
Python Type | DynamoDB Type |
---|---|
string | String (S) |
integer | Number (N) |
decimal.Decimal | Number (N) |
boto3.dynamodb.types.Binary | Binary (B) |
boolean | Boolean (BOOL) |
None | Null (NULL) |
string set | String Set (SS) |
integer set | Number Set (NS) |
decimal.Decimal set | Number Set (NS) |
boto3.dynamodb.types.Binary set | Binary Set (BS) |
list | List (L) |
dict | Map (M) |
Creates a condition where the attribute begins with the value.
Creates a condition where the attribute is greater than or equal to the low value and less than or equal to the high value.
Creates a condition where the attribute is equal to the value.
Creates a condition where the attribute is greater than the value.
Creates a condition where the attribute is less than the value.
Represents an DynamoDB item's attribute.
Creates a condition for the attribute type.
Creates a condition where the attribute begins with the value.
Creates a condition where the attribute is greater than or equal to the low value and less than or equal to the high value.
Creates a condition where the attribute contains the value.
Creates a condition where the attribute is equal to the value.
Creates a condition where the attribute is greater than the value.
Creates a condition where the attribute is in the value,
Creates a condition where the attribute is less than the value.