OBJECT

BroadcastStreamTarget

A stream target configuration

link GraphQL Schema definition

  • type BroadcastStreamTarget {
  • # The stream target ID.
  • id: ID!
  • # The destination URL.
  • url: String
  • # The streaming protocol.
  • protocol: ENUM_STREAMTARGET_PROTOCOL
  • # The user name.
  • username: String
  • # The password.
  • password: String
  • # The stream target index value. Broadcast encoders with matching
  • # streamTargetEncoderIndex values will act upon this stream target.
  • streamTargetEncoderIndex: Int
  • # The MPEG-DASH adaptive group name, which is used to group multiple broadcast
  • # outputs into a single adaptive stream set. This only applies if you're using the
  • # MPEG_DASH_FACEBOOK protocol.
  • adaptiveGroupName: String
  • # The maximum allowed latency, in milliseconds. If the latency grows beyond this
  • # value, the connection is dropped and re-estabilished. Set this to 0 if you never
  • # want to drop the connection due to latency.
  • maxLatency: Int
  • # The destination RTMP stream name.
  • streamName: String
  • # The user-defined tag that identifies this object.
  • tag: String
  • # The broadcast stream target type.
  • type: ENUM_STREAMTARGET_TYPE
  • # The provider type.
  • providerType: ENUM_STREAMTARGET_PROVIDERTYPE
  • # The provider ID for the target to which you're streaming.
  • providerId: String
  • # The provider name for the target to which you're streaming.
  • providerName: String
  • # The provider key for the target to which you're streaming.
  • providerKey: ProviderKey
  • }