Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RtmpOutputSettings

import type { RtmpOutputSettings } from "https://aws-api.deno.dev/v0.3/services/medialive.ts?docs=full";

Rtmp Output Settings

interface RtmpOutputSettings {
CertificateMode?: RtmpOutputCertificateMode | null;
ConnectionRetryInterval?: number | null;
Destination: OutputLocationRef;
NumRetries?: number | null;
}

§Properties

§
CertificateMode?: RtmpOutputCertificateMode | null
[src]

If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA). This will cause rtmps outputs with self-signed certificates to fail.

§
ConnectionRetryInterval?: number | null
[src]

Number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.

§

The RTMP endpoint excluding the stream name (eg. rtmp://host/appname). For connection to Akamai, a username and password must be supplied. URI fields accept format identifiers.

§
NumRetries?: number | null
[src]

Number of retry attempts.