Package version:

Interface SearchIndexerLimits

interface SearchIndexerLimits {
    maxDocumentContentCharactersToExtract?: number;
    maxDocumentExtractionSize?: number;
    maxRunTime?: string;
}

Properties

maxDocumentContentCharactersToExtract?: number

The maximum number of characters that will be extracted from a document picked up for indexing. NOTE: This property will not be serialized. It can only be populated by the server.

maxDocumentExtractionSize?: number

The maximum size of a document, in bytes, which will be considered valid for indexing. NOTE: This property will not be serialized. It can only be populated by the server.

maxRunTime?: string

The maximum duration that the indexer is permitted to run for one execution. NOTE: This property will not be serialized. It can only be populated by the server.