get_multiple_fields
Retrieve multiple fields in one operation, from a single record selected by its primary key.
You can use any key for the getters
No matter the field you are trying to retrieve, you can use any key's for your getter item's. You will receive your results in a dictionary that use the keys of your getters, even if they are not related to the field names you requested.
#
ParametersProperty name | Required | Accepted types | Default | Description |
---|---|---|---|---|
key_value | YES | Any | - | The path expression to target the attribute to set/update in your record. See Field path selectors |
getters | YES | Dict[str, FieldGetter] | - | A dictionary with all the fields to retrieve, and the keys that will be used for the output you will receive. |
data_validation | NO | bool | True | Whether data validation from your table model should be applied on the retrieved data. |
#
AvailabilityTable | Available |
---|---|
DynamoDBBasicTable | ✅ |
DynamoDBCachingTable | ✅ |
ExternalDynamoDBApiBasicTable | ✅ |
ExternalDynamoDBApiCachingTable | ✅ |