@karmaniverous/entity-client-dynamodb
    Preparing search index...

    Interface IndexParamsProtected

    IndexParams

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

    Properties

    expressionAttributeNames: Record<string, string | undefined>
    expressionAttributeValues: Record<
        string,
        NativeScalarAttributeValue
        | undefined,
    >
    filterConditions: (string | undefined)[]
    projectionAttributes?: string[]

    Optional list of attributes to project for this index.

    rangeKeyCondition?: string
    scanIndexForward?: boolean