Interface DropCollectionOptions

Options for dropping a collections.

Field

keyspace - Overrides the keyspace for the collections.

Field

timeout - The timeout override for this method

See

Db.dropCollection

interface DropCollectionOptions {
    keyspace?: string;
    timeout?: number | Pick<Partial<TimeoutDescriptor>, "collectionAdminTimeoutMs" | "requestTimeoutMs">;
}

Hierarchy (view full)

Properties

Properties

keyspace?: string

The keyspace to use for the operation.

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

The method timeout override.

See TimeoutDescriptor for much more information.