@backblaze-labs/b2-mcp
    Preparing search index...

    Interface B2S3CopyObjectOptions

    Options for an S3 CopyObject call.

    interface B2S3CopyObjectOptions {
        contentType?: string;
        destinationBucket: string;
        destinationKey: string;
        metadata?: Record<string, string>;
        metadataDirective?: "COPY" | "REPLACE";
        sourceBucket: string;
        sourceKey: string;
        sourceVersionId?: string;
    }
    Index
    contentType?: string

    Replacement content type when metadata is replaced.

    destinationBucket: string

    Destination bucket name.

    destinationKey: string

    Destination object key.

    metadata?: Record<string, string>

    Replacement user metadata when metadata is replaced.

    metadataDirective?: "COPY" | "REPLACE"

    Metadata handling mode for the copy operation.

    sourceBucket: string

    Source bucket name.

    sourceKey: string

    Source object key.

    sourceVersionId?: string

    Optional source version ID.