Type alias IndexStatsDescription

IndexStatsDescription: {
    dimension?: number;
    indexFullness?: number;
    namespaces?: {
        [key: string]: IndexStatsNamespaceSummary;
    };
    totalRecordCount?: number;
}

An index description returned from describeIndexStats

Type declaration

  • Optional dimension?: number

    The dimension of the index.

  • Optional indexFullness?: number

    A number indicating the percentage of available storage consumed by your index.

  • Optional namespaces?: {
        [key: string]: IndexStatsNamespaceSummary;
    }

    A map whose keys are the names of namespaces and whose values are a namespace summary including the total record count in that namespace.

  • Optional totalRecordCount?: number

    The total number of records that have been upserted to your index.