Interface CreateBackupOptions

The options for creating an index backup.

interface CreateBackupOptions {
    description?: string;
    indexName: string;
    name?: string;
}

Properties

description?: string

A human-readable description of the backup's purpose or contents.

indexName: string

The name of the index to back up.

name?: string

An optional name for the backup. If not provided, one will be auto-generated.