INPUT_OBJECT

UpdateVideoStreamSettingsInput

UpdateVideoStreamSettingsInput updates the broadcaster's stream settings such as stream delay length seconds or stream key.

link GraphQL Schema definition

1input UpdateVideoStreamSettingsInput {
5
2# ChannelID of the broadcaster. This has to be same as authenticated user's
3# userID.
4channelID: ID!
9
6# The number of seconds delay for a stream. When this is set, a stream will be
7# ingested with specified delay in seconds. Maximum is set to 900 seconds.
8delaySeconds: Int
12
10# Whether or not a stream should be started as a low latency stream.
11isLowLatency: Boolean
15
13# Whether or not the broadcaster prefers to archive the vod for a stream.
14shouldArchiveVODs: Boolean
18
16# Whether or not to show the disconnect slate.
17shouldShowDisconnectSlate: Boolean
19}