Class DynamoDBOperationConfig
- Namespace
- Amazon.DynamoDBv2.DataModel
- Assembly
- AWSSDK.DynamoDBv2.dll
Configuration object for setting options for individual operations. This will override any settings specified by the DynamoDBContext's DynamoDBContextConfig object.
public class DynamoDBOperationConfig : DynamoDBContextConfig
- Inheritance
-
DynamoDBOperationConfig
- Inherited Members
Constructors
DynamoDBOperationConfig()
Default constructor
public DynamoDBOperationConfig()
Properties
BackwardQuery
Property that indicates a query should traverse the index backward. If the property is false (or not set), traversal shall be forward.
public bool? BackwardQuery { get; set; }
Property Value
- bool?
ConditionalOperator
A logical operator to apply to the filter conditions: AND - If all of the conditions evaluate to true, then the entire filter evaluates to true. OR - If at least one of the conditions evaluate to true, then the entire filter evaluates to true.
Default value is AND.
public ConditionalOperatorValues ConditionalOperator { get; set; }
Property Value
IndexName
Property indicating the name of the index to query or scan against. This value is optional if the index name can be inferred from the call.
public string IndexName { get; set; }
Property Value
OverrideTableName
Property that indicates the table to save an object to overriding the DynamoDBTable attribute declared for the type.
public string OverrideTableName { get; set; }
Property Value
QueryFilter
Query filter for the Query operation operation. Evaluates the query results and returns only the matching values. If you specify more than one condition, then by default all of the conditions must evaluate to true. To match only some conditions, set ConditionalOperator to Or. Note: Conditions must be against non-key properties.
public List<ScanCondition> QueryFilter { get; set; }