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

GetItemOutput

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

Represents the output of a GetItem operation.

interface GetItemOutput {
ConsumedCapacity?: ConsumedCapacity | null;
Item?: {
[key: string]: AttributeValue | null | undefined;
}
| null;
}

§Properties

§
ConsumedCapacity?: ConsumedCapacity | null
[src]

The capacity units consumed by the GetItem operation. The data returned includes the total provisioned throughput consumed, along with statistics for the table and any indexes involved in the operation. ConsumedCapacity is only returned if the ReturnConsumedCapacity parameter was specified. For more information, see Read/Write Capacity Mode in the Amazon DynamoDB Developer Guide.

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

A map of attribute names to AttributeValue objects, as specified by ProjectionExpression.