GetTableItemPlainArgs

data class GetTableItemPlainArgs(val expressionAttributeNames: Map<String, String>? = null, val key: String, val projectionExpression: String? = null, val tableName: String) : ConvertibleToJava<GetTableItemPlainArgs>

A collection of arguments for invoking getTableItem.

Constructors

Link copied to clipboard
constructor(expressionAttributeNames: Map<String, String>? = null, key: String, projectionExpression: String? = null, tableName: String)

Properties

Link copied to clipboard
Link copied to clipboard
val key: String

A map of attribute names to AttributeValue objects, representing the primary key of the item to retrieve. For the primary key, you must provide all of the attributes. For example, with a simple primary key, you only need to provide a value for the partition key. For a composite primary key, you must provide values for both the partition key and the sort key. The following arguments are optional:

Link copied to clipboard

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

Link copied to clipboard

The name of the table containing the requested item.

Functions

Link copied to clipboard
open override fun toJava(): GetTableItemPlainArgs