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

ScanOutput

import type { ScanOutput } from "https://aws-api-gyr5wj9zj0fg.deno.dev/v0.2/services/dynamodb.ts";
interface ScanOutput {
ConsumedCapacity?: ConsumedCapacity | null;
Count?: number | null;
Items?: ({
[key: string]: AttributeValue | null | undefined;
}
)
[]
| null;
LastEvaluatedKey?: {
[key: string]: AttributeValue | null | undefined;
}
| null;
ScannedCount?: number | null;
}

§Properties

§
ConsumedCapacity?: ConsumedCapacity | null
[src]
§
Count?: number | null
[src]
§
Items?: ({
[key: string]: AttributeValue | null | undefined;
}
)
[]
| null
[src]
§
LastEvaluatedKey?: {
[key: string]: AttributeValue | null | undefined;
}
| null
[src]
§
ScannedCount?: number | null
[src]