MediaStoreHttpRemoteStore type

An HTTP object store that replicated segment objects are PUT to. Each segment (fragment) of a completed media-store file is uploaded as its own object under <baseUrl>/..., and the resulting URL is added to the TAMS get_urls.

Signature:

export type MediaStoreHttpRemoteStore = {
    type: "http";
    baseUrl: string;
    headers?: {
        name: string;
        value: string;
    }[];
};