Stratal API Reference
    Preparing search index...

    Interface UploadOptions

    Upload options for streaming uploads

    interface UploadOptions {
        metadata?: Record<string, string>;
        mimeType?: string;
        size: number;
        tagging?: string;
    }
    Index

    Properties

    metadata?: Record<string, string>

    Custom metadata to store with the object (S3-specific) Stored as S3 object metadata headers

    mimeType?: string

    MIME type of the content

    size: number

    Size of the content in bytes

    tagging?: string

    Object tagging for lifecycle policies (S3-specific) Format: key=value (e.g., "Tus-Completed=true")