Table of Contents

Class Put

Namespace
Amazon.DynamoDBv2.Model
Assembly
AWSSDK.DynamoDBv2.dll

Represents a request to perform a

PutItem
operation.
public class Put
Inheritance
Put
Inherited Members

Constructors

Put()

public Put()

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

string

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

Dictionary<string, string>

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

Dictionary<string, AttributeValue>

Item

Gets and sets the property Item.

A map of attribute name to attribute values, representing the primary key of the item to be written by

PutItem
. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema. If any attributes are present in the item that are part of an index key schema for the table, their types must match the index key schema.
public Dictionary<string, AttributeValue> Item { get; set; }

Property Value

Dictionary<string, AttributeValue>

ReturnValuesOnConditionCheckFailure

Gets and sets the property ReturnValuesOnConditionCheckFailure.

Use

ReturnValuesOnConditionCheckFailure
to get the item attributes if the
Put
condition fails. For
ReturnValuesOnConditionCheckFailure
, the valid values are: NONE and ALL_OLD.
public ReturnValuesOnConditionCheckFailure ReturnValuesOnConditionCheckFailure { get; set; }

Property Value

ReturnValuesOnConditionCheckFailure

TableName

Gets and sets the property TableName.

Name of the table in which to write the item.

public string TableName { get; set; }

Property Value

string