Table of Contents

Class Get

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

Specifies an item and related attribute values to retrieve in a

TransactGetItem
object.
public class Get
Inheritance
Get
Inherited Members

Constructors

Get()

public Get()

Properties

ExpressionAttributeNames

Gets and sets the property ExpressionAttributeNames.

One or more substitution tokens for attribute names in the ProjectionExpression parameter.

public Dictionary<string, string> ExpressionAttributeNames { get; set; }

Property Value

Dictionary<string, string>

Key

Gets and sets the property Key.

A map of attribute names to

AttributeValue
objects that specifies the primary key of the item to retrieve.
public Dictionary<string, AttributeValue> Key { get; set; }

Property Value

Dictionary<string, AttributeValue>

ProjectionExpression

Gets and sets the property ProjectionExpression.

A string that identifies one or more attributes of the specified item to retrieve from the table. The attributes in the expression must be separated by commas. If no attribute names are specified, then all attributes of the specified item are returned. If any of the requested attributes are not found, they do not appear in the result.

public string ProjectionExpression { get; set; }

Property Value

string

TableName

Gets and sets the property TableName.

The name of the table from which to retrieve the specified item.

public string TableName { get; set; }

Property Value

string