async scan(
tnmInput: TynamoScanInput<TSource> = {}
): Promise<TynamoScanOutput<TSource>>
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;
}
export interface TynamoScanOutput<TSource> {
Items?: TSource[];
LastEvaluatedKey?: TSource;
// Derived from DynamoDB.
$response: AWS.Response<ScanOutput, AWS.AWSError>;
Count?: Integer;
ScannedCount?: Integer;
ConsumedCapacity?: ConsumedCapacity;
}
@DynamoEntity()
class Cat {
@DynamoProperty({ keyType: KeyType.hash })
id!: number;
@DynamoProperty({ keyType: KeyType.attr })
name!: string;
constructor(id: number, name: string) {
this.id = id;
this.name = name;
}
}
const tynamo: Tynamo = new Tynamo({
region: "ap-northeast-2",
endpoint: "http://localhost:8000"
});
const tynamoTable = tynamo.getTableOf(Cat);
const step1 = await tynamoTable.scan();
const step2 = await tynamoTable.scan({ ExclusiveStartKey: step1.LastEvaluatedKey })