Class ScanCondition
- Namespace
- Amazon.DynamoDBv2.DataModel
- Assembly
- AWSSDK.DynamoDBv2.dll
Class describing a single scan condition
public class ScanCondition- Inheritance
- 
      
      ScanCondition
- Inherited Members
Constructors
ScanCondition(string, ScanOperator, params object[])
Initializes a ScanCondition with the target property, the comparison operator and values being tested against.
public ScanCondition(string propertyName, ScanOperator op, params object[] values)Parameters
- propertyNamestring
- Name of the property 
- opScanOperator
- Comparison operator 
- valuesobject[]
- Value(s) being tested against. - The values should be of the same type as the property. In the cases where the property is a collection, the values should be of the same type as the items in the collection. 
Properties
Operator
Comparison operator
public ScanOperator Operator { get; set; }Property Value
PropertyName
Name of the property being tested
public string PropertyName { get; set; }Property Value
Values
Values being tested against.
The values should be of the same type as the property. In the cases where the property is a collection, the values should be of the same type as the items in the collection.
public object[] Values { get; set; }Property Value
- object[]