Amazon MediaLive · JSON Structure

Medialive Api Rtmp Output Settings Structure

Rtmp Output Settings

Type: object Properties: 4 Required: 1
BroadcastingMedia ProcessingMedia

RtmpOutputSettings is a JSON Structure definition published by Amazon MediaLive, describing 4 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

CertificateMode ConnectionRetryInterval Destination NumRetries

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-medialive/refs/heads/main/json-structure/medialive-api-rtmp-output-settings-structure.json",
  "name": "RtmpOutputSettings",
  "type": "object",
  "description": "Rtmp Output Settings",
  "properties": {
    "CertificateMode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RtmpOutputCertificateMode"
        },
        {
          "xml": {
            "name": "certificateMode"
          },
          "description": "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": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin1"
        },
        {
          "xml": {
            "name": "connectionRetryInterval"
          },
          "description": "Number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost."
        }
      ]
    },
    "Destination": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OutputLocationRef"
        },
        {
          "xml": {
            "name": "destination"
          },
          "description": "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": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin0"
        },
        {
          "xml": {
            "name": "numRetries"
          },
          "description": "Number of retry attempts."
        }
      ]
    }
  },
  "required": [
    "Destination"
  ]
}