@karmaniverous/entity-manager
    Preparing search index...

    Interface ParsedIndexConfig

    Parsed index definition (provider-agnostic).

    Provider adapters map these tokens to provider-specific index queries.

    interface ParsedIndexConfig {
        hashKey: string;
        projections?: string[];
        rangeKey: string;
    }
    Index

    Properties

    hashKey: string

    Index hash key token (global hash key or a sharded generated key).

    projections?: string[]

    Optional list of projected attribute names (validated to exclude key tokens).

    rangeKey: string

    Index range key token (global range key, an unsharded generated key, or a transcoded scalar).