IndexParams

interface IndexParams {
    expressionAttributeNames: Record<string, undefined | string>;
    expressionAttributeValues: Record<string, undefined | string>;
    filterConditions: (undefined | string)[];
    rangeKeyCondition?: string;
    scanIndexForward?: boolean;
}

Properties

expressionAttributeNames: Record<string, undefined | string>
expressionAttributeValues: Record<string, undefined | string>
filterConditions: (undefined | string)[]
rangeKeyCondition?: string
scanIndexForward?: boolean