Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Get

import type { Get } from "https://aws-api.deno.dev/v0.3/services/dynamodb.ts?docs=full";

Specifies an item and related attribute values to retrieve in a TransactGetItem object.

interface Get {
ExpressionAttributeNames?: {
[key: string]: string | null | undefined;
}
| null;
Key: {
[key: string]: AttributeValue | null | undefined;
}
;
ProjectionExpression?: string | null;
TableName: string;
}

§Properties

§
ExpressionAttributeNames?: {
[key: string]: string | null | undefined;
}
| null
[src]

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

§
Key: {
[key: string]: AttributeValue | null | undefined;
}
[src]

A map of attribute names to AttributeValue objects that specifies the primary key of the item to retrieve.

§
ProjectionExpression?: string | null
[src]

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.

§
TableName: string
[src]

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