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

    Interface B2S3PutObjectOptions

    Options for an inline S3 PutObject call.

    interface B2S3PutObjectOptions {
        body: StreamingBlobPayloadInputTypes;
        bucket: string;
        contentLength?: number;
        contentType?: string;
        key: string;
        metadata?: Record<string, string>;
        serverSideEncryption?: "AES256";
    }
    Index
    body: StreamingBlobPayloadInputTypes

    Object payload accepted by the AWS SDK.

    bucket: string

    Destination bucket name.

    contentLength?: number

    Object content length in bytes.

    contentType?: string

    Object content type.

    key: string

    Destination object key.

    metadata?: Record<string, string>

    User metadata to store with the object.

    serverSideEncryption?: "AES256"

    B2-managed server-side encryption mode.