scan
Spec
async scan(
tnmInput: TynamoScanInput<TSource> = {}
): Promise<TynamoScanOutput<TSource>>Input
export interface TynamoScanInput<TSource> {
ExclusiveStartKey?: TSource;
ExpressionAttributeValues?: any;
// Derived from DynamoDB.
IndexName?: IndexName;
Limit?: PositiveIntegerObject;
Select?: Select;
ReturnConsumedCapacity?: ReturnConsumedCapacity;
TotalSegments?: ScanTotalSegments;
Segment?: ScanSegment;
ProjectionExpression?: ProjectionExpression;
FilterExpression?: ConditionExpression;
ExpressionAttributeNames?: ExpressionAttributeNameMap;
ConsistentRead?: ConsistentRead;
}Output
Example
Last updated