OBJECT

Broadcast

A streaming event.

link GraphQL Schema definition

  • type Broadcast implements IExtraProperties {
  • # The broadcast ID.
  • id: ID!
  • # The broadcast name.
  • name: String!
  • # The parent namespace to which the broadcast belongs.
  • namespace: Namespace!
  • # The date and time at which the broadcast was created.
  • createdAt: DateTime
  • # The date and time at which the broadcast was last updated.
  • updatedAt: DateTime
  • # The date and time at which the broadcast entered a status of PREVIEW.
  • previewedAt: DateTime
  • # The date and time at which the broadcast entered a status of LIVE.
  • liveAt: DateTime
  • # The date and time at which the broadcast entered a status of STOPPED.
  • stoppedAt: DateTime
  • # The current broadcast status.
  • status: ENUM_BROADCASTSTATUS
  • # The first input to the broadcast.
  • input: BroadcastInput
  • # The list of inputs to the broadcast.
  • inputs: [BroadcastInput]
  • # The broadcast outputs.
  • outputs: [BroadcastOutput]
  • # The configuration of the encoder HDMI output.
  • displays: [BroadcastDisplay]
  • # The collection of encoders that are assigned to the broadcast.
  • broadcastEncoders: [BroadcastEncoder]
  • # The root encoding configuration.
  • transcodingConfiguration: TranscodingConfiguration
  • # A collection of user-defined name-value pairs.
  • extraProperties: [ExtraPropertyBroadcast]
  • # The most recent instance of near real-time metrics related to the broadcast.
  • # Data is collected every 10 seconds while a broadcast is active.
  • nearRealTimeData: NearRealTimeData
  • # A collection of the 100 most recent broadcast go live events.
  • broadcastGoLiveEvents: [BroadcastGoLiveEvent]
  • # A collection of the recording assets for the broadcast.
  • recordingAssets: [RecordingAsset]
  • # A collection of security secrets.
  • accessKeys: [AccessKey]
  • }