Interface TableDropIndexOptions

Options for dropping an index via Table.dropIndex

interface TableDropIndexOptions {
    ifExists?: boolean;
    keyspace?: string;
    timeout?: number | Pick<Partial<TimeoutDescriptor>, "tableAdminTimeoutMs" | "requestTimeoutMs">;
}

Hierarchy (view full)

Properties

ifExists?: boolean

If true, an error will not be thrown if the index attempting to be dropped does not exist.

keyspace?: string

The keyspace to use for the operation.

timeout?: number | Pick<Partial<TimeoutDescriptor>, "tableAdminTimeoutMs" | "requestTimeoutMs">

The method timeout override.

See TimeoutDescriptor for much more information.