module Stratosphere.MediaLive.Channel.RtmpGroupSettingsProperty (
RtmpGroupSettingsProperty(..), mkRtmpGroupSettingsProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data RtmpGroupSettingsProperty
=
RtmpGroupSettingsProperty {RtmpGroupSettingsProperty -> ()
haddock_workaround_ :: (),
RtmpGroupSettingsProperty -> Maybe (ValueList Text)
adMarkers :: (Prelude.Maybe (ValueList Prelude.Text)),
RtmpGroupSettingsProperty -> Maybe (Value Text)
authenticationScheme :: (Prelude.Maybe (Value Prelude.Text)),
RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheFullBehavior :: (Prelude.Maybe (Value Prelude.Text)),
RtmpGroupSettingsProperty -> Maybe (Value Integer)
cacheLength :: (Prelude.Maybe (Value Prelude.Integer)),
RtmpGroupSettingsProperty -> Maybe (Value Text)
captionData :: (Prelude.Maybe (Value Prelude.Text)),
RtmpGroupSettingsProperty -> Maybe (Value Text)
includeFillerNalUnits :: (Prelude.Maybe (Value Prelude.Text)),
RtmpGroupSettingsProperty -> Maybe (Value Text)
inputLossAction :: (Prelude.Maybe (Value Prelude.Text)),
RtmpGroupSettingsProperty -> Maybe (Value Integer)
restartDelay :: (Prelude.Maybe (Value Prelude.Integer))}
deriving stock (RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty -> Bool
(RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty -> Bool)
-> (RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty -> Bool)
-> Eq RtmpGroupSettingsProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty -> Bool
== :: RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty -> Bool
$c/= :: RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty -> Bool
/= :: RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty -> Bool
Prelude.Eq, Int -> RtmpGroupSettingsProperty -> ShowS
[RtmpGroupSettingsProperty] -> ShowS
RtmpGroupSettingsProperty -> String
(Int -> RtmpGroupSettingsProperty -> ShowS)
-> (RtmpGroupSettingsProperty -> String)
-> ([RtmpGroupSettingsProperty] -> ShowS)
-> Show RtmpGroupSettingsProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> RtmpGroupSettingsProperty -> ShowS
showsPrec :: Int -> RtmpGroupSettingsProperty -> ShowS
$cshow :: RtmpGroupSettingsProperty -> String
show :: RtmpGroupSettingsProperty -> String
$cshowList :: [RtmpGroupSettingsProperty] -> ShowS
showList :: [RtmpGroupSettingsProperty] -> ShowS
Prelude.Show)
mkRtmpGroupSettingsProperty :: RtmpGroupSettingsProperty
mkRtmpGroupSettingsProperty :: RtmpGroupSettingsProperty
mkRtmpGroupSettingsProperty
= RtmpGroupSettingsProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), adMarkers :: Maybe (ValueList Text)
adMarkers = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
authenticationScheme :: Maybe (Value Text)
authenticationScheme = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
cacheFullBehavior :: Maybe (Value Text)
cacheFullBehavior = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, cacheLength :: Maybe (Value Integer)
cacheLength = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
captionData :: Maybe (Value Text)
captionData = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
includeFillerNalUnits :: Maybe (Value Text)
includeFillerNalUnits = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
inputLossAction :: Maybe (Value Text)
inputLossAction = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, restartDelay :: Maybe (Value Integer)
restartDelay = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties RtmpGroupSettingsProperty where
toResourceProperties :: RtmpGroupSettingsProperty -> ResourceProperties
toResourceProperties RtmpGroupSettingsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RtmpGroupSettingsProperty -> ()
adMarkers :: RtmpGroupSettingsProperty -> Maybe (ValueList Text)
authenticationScheme :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheFullBehavior :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheLength :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
captionData :: RtmpGroupSettingsProperty -> Maybe (Value Text)
includeFillerNalUnits :: RtmpGroupSettingsProperty -> Maybe (Value Text)
inputLossAction :: RtmpGroupSettingsProperty -> Maybe (Value Text)
restartDelay :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::MediaLive::Channel.RtmpGroupSettings",
supportsTags :: Bool
supportsTags = Bool
Prelude.False,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AdMarkers" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
adMarkers,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AuthenticationScheme" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
authenticationScheme,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CacheFullBehavior" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
cacheFullBehavior,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CacheLength" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
cacheLength,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CaptionData" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
captionData,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IncludeFillerNalUnits"
(Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
includeFillerNalUnits,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"InputLossAction" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
inputLossAction,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RestartDelay" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
restartDelay])}
instance JSON.ToJSON RtmpGroupSettingsProperty where
toJSON :: RtmpGroupSettingsProperty -> Value
toJSON RtmpGroupSettingsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RtmpGroupSettingsProperty -> ()
adMarkers :: RtmpGroupSettingsProperty -> Maybe (ValueList Text)
authenticationScheme :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheFullBehavior :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheLength :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
captionData :: RtmpGroupSettingsProperty -> Maybe (Value Text)
includeFillerNalUnits :: RtmpGroupSettingsProperty -> Maybe (Value Text)
inputLossAction :: RtmpGroupSettingsProperty -> Maybe (Value Text)
restartDelay :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AdMarkers" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
adMarkers,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AuthenticationScheme" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
authenticationScheme,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CacheFullBehavior" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
cacheFullBehavior,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CacheLength" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
cacheLength,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CaptionData" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
captionData,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IncludeFillerNalUnits"
(Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
includeFillerNalUnits,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"InputLossAction" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
inputLossAction,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RestartDelay" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
restartDelay]))
instance Property "AdMarkers" RtmpGroupSettingsProperty where
type PropertyType "AdMarkers" RtmpGroupSettingsProperty = ValueList Prelude.Text
set :: PropertyType "AdMarkers" RtmpGroupSettingsProperty
-> RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty
set PropertyType "AdMarkers" RtmpGroupSettingsProperty
newValue RtmpGroupSettingsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RtmpGroupSettingsProperty -> ()
adMarkers :: RtmpGroupSettingsProperty -> Maybe (ValueList Text)
authenticationScheme :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheFullBehavior :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheLength :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
captionData :: RtmpGroupSettingsProperty -> Maybe (Value Text)
includeFillerNalUnits :: RtmpGroupSettingsProperty -> Maybe (Value Text)
inputLossAction :: RtmpGroupSettingsProperty -> Maybe (Value Text)
restartDelay :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
= RtmpGroupSettingsProperty {adMarkers :: Maybe (ValueList Text)
adMarkers = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AdMarkers" RtmpGroupSettingsProperty
ValueList Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
haddock_workaround_ :: ()
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
instance Property "AuthenticationScheme" RtmpGroupSettingsProperty where
type PropertyType "AuthenticationScheme" RtmpGroupSettingsProperty = Value Prelude.Text
set :: PropertyType "AuthenticationScheme" RtmpGroupSettingsProperty
-> RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty
set PropertyType "AuthenticationScheme" RtmpGroupSettingsProperty
newValue RtmpGroupSettingsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RtmpGroupSettingsProperty -> ()
adMarkers :: RtmpGroupSettingsProperty -> Maybe (ValueList Text)
authenticationScheme :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheFullBehavior :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheLength :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
captionData :: RtmpGroupSettingsProperty -> Maybe (Value Text)
includeFillerNalUnits :: RtmpGroupSettingsProperty -> Maybe (Value Text)
inputLossAction :: RtmpGroupSettingsProperty -> Maybe (Value Text)
restartDelay :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
= RtmpGroupSettingsProperty
{authenticationScheme :: Maybe (Value Text)
authenticationScheme = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AuthenticationScheme" RtmpGroupSettingsProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
instance Property "CacheFullBehavior" RtmpGroupSettingsProperty where
type PropertyType "CacheFullBehavior" RtmpGroupSettingsProperty = Value Prelude.Text
set :: PropertyType "CacheFullBehavior" RtmpGroupSettingsProperty
-> RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty
set PropertyType "CacheFullBehavior" RtmpGroupSettingsProperty
newValue RtmpGroupSettingsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RtmpGroupSettingsProperty -> ()
adMarkers :: RtmpGroupSettingsProperty -> Maybe (ValueList Text)
authenticationScheme :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheFullBehavior :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheLength :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
captionData :: RtmpGroupSettingsProperty -> Maybe (Value Text)
includeFillerNalUnits :: RtmpGroupSettingsProperty -> Maybe (Value Text)
inputLossAction :: RtmpGroupSettingsProperty -> Maybe (Value Text)
restartDelay :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
= RtmpGroupSettingsProperty
{cacheFullBehavior :: Maybe (Value Text)
cacheFullBehavior = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CacheFullBehavior" RtmpGroupSettingsProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
instance Property "CacheLength" RtmpGroupSettingsProperty where
type PropertyType "CacheLength" RtmpGroupSettingsProperty = Value Prelude.Integer
set :: PropertyType "CacheLength" RtmpGroupSettingsProperty
-> RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty
set PropertyType "CacheLength" RtmpGroupSettingsProperty
newValue RtmpGroupSettingsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RtmpGroupSettingsProperty -> ()
adMarkers :: RtmpGroupSettingsProperty -> Maybe (ValueList Text)
authenticationScheme :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheFullBehavior :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheLength :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
captionData :: RtmpGroupSettingsProperty -> Maybe (Value Text)
includeFillerNalUnits :: RtmpGroupSettingsProperty -> Maybe (Value Text)
inputLossAction :: RtmpGroupSettingsProperty -> Maybe (Value Text)
restartDelay :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
= RtmpGroupSettingsProperty
{cacheLength :: Maybe (Value Integer)
cacheLength = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CacheLength" RtmpGroupSettingsProperty
Value Integer
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
instance Property "CaptionData" RtmpGroupSettingsProperty where
type PropertyType "CaptionData" RtmpGroupSettingsProperty = Value Prelude.Text
set :: PropertyType "CaptionData" RtmpGroupSettingsProperty
-> RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty
set PropertyType "CaptionData" RtmpGroupSettingsProperty
newValue RtmpGroupSettingsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RtmpGroupSettingsProperty -> ()
adMarkers :: RtmpGroupSettingsProperty -> Maybe (ValueList Text)
authenticationScheme :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheFullBehavior :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheLength :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
captionData :: RtmpGroupSettingsProperty -> Maybe (Value Text)
includeFillerNalUnits :: RtmpGroupSettingsProperty -> Maybe (Value Text)
inputLossAction :: RtmpGroupSettingsProperty -> Maybe (Value Text)
restartDelay :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
= RtmpGroupSettingsProperty
{captionData :: Maybe (Value Text)
captionData = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CaptionData" RtmpGroupSettingsProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
instance Property "IncludeFillerNalUnits" RtmpGroupSettingsProperty where
type PropertyType "IncludeFillerNalUnits" RtmpGroupSettingsProperty = Value Prelude.Text
set :: PropertyType "IncludeFillerNalUnits" RtmpGroupSettingsProperty
-> RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty
set PropertyType "IncludeFillerNalUnits" RtmpGroupSettingsProperty
newValue RtmpGroupSettingsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RtmpGroupSettingsProperty -> ()
adMarkers :: RtmpGroupSettingsProperty -> Maybe (ValueList Text)
authenticationScheme :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheFullBehavior :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheLength :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
captionData :: RtmpGroupSettingsProperty -> Maybe (Value Text)
includeFillerNalUnits :: RtmpGroupSettingsProperty -> Maybe (Value Text)
inputLossAction :: RtmpGroupSettingsProperty -> Maybe (Value Text)
restartDelay :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
= RtmpGroupSettingsProperty
{includeFillerNalUnits :: Maybe (Value Text)
includeFillerNalUnits = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "IncludeFillerNalUnits" RtmpGroupSettingsProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
instance Property "InputLossAction" RtmpGroupSettingsProperty where
type PropertyType "InputLossAction" RtmpGroupSettingsProperty = Value Prelude.Text
set :: PropertyType "InputLossAction" RtmpGroupSettingsProperty
-> RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty
set PropertyType "InputLossAction" RtmpGroupSettingsProperty
newValue RtmpGroupSettingsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RtmpGroupSettingsProperty -> ()
adMarkers :: RtmpGroupSettingsProperty -> Maybe (ValueList Text)
authenticationScheme :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheFullBehavior :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheLength :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
captionData :: RtmpGroupSettingsProperty -> Maybe (Value Text)
includeFillerNalUnits :: RtmpGroupSettingsProperty -> Maybe (Value Text)
inputLossAction :: RtmpGroupSettingsProperty -> Maybe (Value Text)
restartDelay :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
= RtmpGroupSettingsProperty
{inputLossAction :: Maybe (Value Text)
inputLossAction = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "InputLossAction" RtmpGroupSettingsProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
instance Property "RestartDelay" RtmpGroupSettingsProperty where
type PropertyType "RestartDelay" RtmpGroupSettingsProperty = Value Prelude.Integer
set :: PropertyType "RestartDelay" RtmpGroupSettingsProperty
-> RtmpGroupSettingsProperty -> RtmpGroupSettingsProperty
set PropertyType "RestartDelay" RtmpGroupSettingsProperty
newValue RtmpGroupSettingsProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: RtmpGroupSettingsProperty -> ()
adMarkers :: RtmpGroupSettingsProperty -> Maybe (ValueList Text)
authenticationScheme :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheFullBehavior :: RtmpGroupSettingsProperty -> Maybe (Value Text)
cacheLength :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
captionData :: RtmpGroupSettingsProperty -> Maybe (Value Text)
includeFillerNalUnits :: RtmpGroupSettingsProperty -> Maybe (Value Text)
inputLossAction :: RtmpGroupSettingsProperty -> Maybe (Value Text)
restartDelay :: RtmpGroupSettingsProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
restartDelay :: Maybe (Value Integer)
..}
= RtmpGroupSettingsProperty
{restartDelay :: Maybe (Value Integer)
restartDelay = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RestartDelay" RtmpGroupSettingsProperty
Value Integer
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
haddock_workaround_ :: ()
adMarkers :: Maybe (ValueList Text)
authenticationScheme :: Maybe (Value Text)
cacheFullBehavior :: Maybe (Value Text)
cacheLength :: Maybe (Value Integer)
captionData :: Maybe (Value Text)
includeFillerNalUnits :: Maybe (Value Text)
inputLossAction :: Maybe (Value Text)
..}