/** Bulk delete volume snapshots either all or a selection of ids */
export interface BulkDeleteSnapshots {
    /** Delete all snapshots related to a volume, cannot be used along side a list of IDs */
    deleteAll: boolean;
    /** Snapshot IDs to delete, cannot be used along side the deleteAll boolean set to true */
    snapshotIds?: string[];
}
//# sourceMappingURL=BulkDeleteSnapshots.d.ts.map