@dolbyio/dolbyio-rest-apis-client - v6.3.0
    Preparing search index...

    Interface CreateMediaDistributionRequest

    The allowable parameters for requesting the creation of a media distribution.

    interface CreateMediaDistributionRequest {
        default?: boolean;
        name: string;
        security?: { keys?: { key: string; name?: string | null }[] };
    }

    Hierarchy (View Summary)

    Index

    Properties

    default?: boolean

    Set this as the default media distribution that will be associated with all future media assets created without an explicit MediaDistributionId set.

    name: string

    User-friendly name for the media distribution. The '*' character is not allowed.

    security?: { keys?: { key: string; name?: string | null }[] }

    Optional. Specify security settings for your media distribution.

    Type Declaration

    • Optionalkeys?: { key: string; name?: string | null }[]

      Security keys that can be used to sign a JWT to authenticate media asset views. If no keys are provided the media distribution will be unsecured. This means any associated assets can be viewed without a token, and if a token is provided the signing key will not be validated. If a key is specified the media distribution will be secured and a valid token signed with one of the provided keys will be required to view associated media assets.