@backblaze-labs/b2-sdk - v0.2.0
    Preparing search index...

    Interface SynchronizerB2Config

    Configuration for a B2-to-B2 sync (copy direction).

    interface SynchronizerB2Config {
        bucket: Bucket;
        dest: B2SyncFolder;
        options: SyncOptions;
        prefix?: string;
        source: B2SyncFolder;
    }

    Hierarchy (View Summary)

    Index

    Properties

    bucket: Bucket

    The B2 bucket used for copy, hide, and delete operations.

    B2 destination folder.

    options: SyncOptions

    Options controlling comparison, deletion policy, and concurrency.

    prefix?: string

    Key prefix for destination-side copy, hide, and delete mutations.

    When omitted, the synchronizer uses dest.rawPrefix when the destination folder exposes one. Set this explicitly for custom B2 folders that do not expose their raw prefix.

    source: B2SyncFolder

    B2 source folder.