Represents a Dolby Millicast cluster.

interface Cluster {
    features: {
        transcoding: boolean;
    };
    id: string;
    location: {
        city: string;
        country: string;
        region: string;
    };
    name: string;
    rtmp: string;
    srt: string;
}

Properties

features: {
    transcoding: boolean;
}

Features available in this cluster.

Type declaration

  • transcoding: boolean

    Indicates whether the Transcoder feature is supported in the corresponding cluster.

id: string

Unique identifier of the cluster.

location: {
    city: string;
    country: string;
    region: string;
}

Location of the cluster.

Type declaration

  • city: string

    City of the cluster.

  • country: string

    Country of the cluster.

  • region: string

    Region of the cluster.

name: string

Display name of the cluster.

rtmp: string

RTMP publish domain for the cluster.

srt: string

SRT publish domain for the cluster.