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

ScanInput

import type { ScanInput } from "https://aws-api-gyr5wj9zj0fg.deno.dev/v0.2/services/dynamodb.ts";
interface ScanInput {
AttributesToGet?: string[] | null;
ConditionalOperator?: ConditionalOperator | null;
ConsistentRead?: boolean | null;
ExclusiveStartKey?: {
[key: string]: AttributeValue | null | undefined;
}
| null;
ExpressionAttributeNames?: {
[key: string]: string | null | undefined;
}
| null;
ExpressionAttributeValues?: {
[key: string]: AttributeValue | null | undefined;
}
| null;
FilterExpression?: string | null;
IndexName?: string | null;
Limit?: number | null;
ProjectionExpression?: string | null;
ReturnConsumedCapacity?: ReturnConsumedCapacity | null;
ScanFilter?: {
[key: string]: Condition | null | undefined;
}
| null;
Segment?: number | null;
Select?: Select | null;
TableName: string;
TotalSegments?: number | null;
}

§Properties

§
AttributesToGet?: string[] | null
[src]
§
ConditionalOperator?: ConditionalOperator | null
[src]
§
ConsistentRead?: boolean | null
[src]
§
ExclusiveStartKey?: {
[key: string]: AttributeValue | null | undefined;
}
| null
[src]
§
ExpressionAttributeNames?: {
[key: string]: string | null | undefined;
}
| null
[src]
§
ExpressionAttributeValues?: {
[key: string]: AttributeValue | null | undefined;
}
| null
[src]
§
FilterExpression?: string | null
[src]
§
IndexName?: string | null
[src]
§
Limit?: number | null
[src]
§
ProjectionExpression?: string | null
[src]
§
ReturnConsumedCapacity?: ReturnConsumedCapacity | null
[src]
§
ScanFilter?: {
[key: string]: Condition | null | undefined;
}
| null
[src]
§
Segment?: number | null
[src]
§
Select?: Select | null
[src]
§
TableName: string
[src]
§
TotalSegments?: number | null
[src]