Class ConditionCheck
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
Represents a request to perform a check that an item exists or to check the condition of specific attributes of the item.
public class ConditionCheck
- Inheritance
-
ConditionCheck
- Inherited Members
Constructors
ConditionCheck()
public ConditionCheck()
Properties
ConditionExpression
Gets and sets the property ConditionExpression.
A condition that must be satisfied in order for a conditional update to succeed.
public string ConditionExpression { get; set; }
Property Value
ExpressionAttributeNames
Gets and sets the property ExpressionAttributeNames.
One or more substitution tokens for attribute names in an expression.
public Dictionary<string, string> ExpressionAttributeNames { get; set; }
Property Value
ExpressionAttributeValues
Gets and sets the property ExpressionAttributeValues.
One or more values that can be substituted in an expression.
public Dictionary<string, AttributeValue> ExpressionAttributeValues { get; set; }
Property Value
Key
Gets and sets the property Key.
The primary key of the item to be checked. Each element consists of an attribute name and a value for that attribute.
public Dictionary<string, AttributeValue> Key { get; set; }
Property Value
ReturnValuesOnConditionCheckFailure
Gets and sets the property ReturnValuesOnConditionCheckFailure.
Use
ReturnValuesOnConditionCheckFailure
to get the item attributes if
the ConditionCheck
condition fails. For ReturnValuesOnConditionCheckFailure
,
the valid values are: NONE and ALL_OLD.
public ReturnValuesOnConditionCheckFailure ReturnValuesOnConditionCheckFailure { get; set; }
Property Value
TableName
Gets and sets the property TableName.
Name of the table for the check item request.
public string TableName { get; set; }