module Stratosphere.MediaConnect.Flow.FmtpProperty (
        FmtpProperty(..), mkFmtpProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data FmtpProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-fmtp.html>
    FmtpProperty {FmtpProperty -> ()
haddock_workaround_ :: (),
                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-fmtp.html#cfn-mediaconnect-flow-fmtp-channelorder>
                  FmtpProperty -> Maybe (Value Text)
channelOrder :: (Prelude.Maybe (Value Prelude.Text)),
                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-fmtp.html#cfn-mediaconnect-flow-fmtp-colorimetry>
                  FmtpProperty -> Maybe (Value Text)
colorimetry :: (Prelude.Maybe (Value Prelude.Text)),
                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-fmtp.html#cfn-mediaconnect-flow-fmtp-exactframerate>
                  FmtpProperty -> Maybe (Value Text)
exactFramerate :: (Prelude.Maybe (Value Prelude.Text)),
                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-fmtp.html#cfn-mediaconnect-flow-fmtp-par>
                  FmtpProperty -> Maybe (Value Text)
par :: (Prelude.Maybe (Value Prelude.Text)),
                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-fmtp.html#cfn-mediaconnect-flow-fmtp-range>
                  FmtpProperty -> Maybe (Value Text)
range :: (Prelude.Maybe (Value Prelude.Text)),
                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-fmtp.html#cfn-mediaconnect-flow-fmtp-scanmode>
                  FmtpProperty -> Maybe (Value Text)
scanMode :: (Prelude.Maybe (Value Prelude.Text)),
                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-fmtp.html#cfn-mediaconnect-flow-fmtp-tcs>
                  FmtpProperty -> Maybe (Value Text)
tcs :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (FmtpProperty -> FmtpProperty -> Bool
(FmtpProperty -> FmtpProperty -> Bool)
-> (FmtpProperty -> FmtpProperty -> Bool) -> Eq FmtpProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: FmtpProperty -> FmtpProperty -> Bool
== :: FmtpProperty -> FmtpProperty -> Bool
$c/= :: FmtpProperty -> FmtpProperty -> Bool
/= :: FmtpProperty -> FmtpProperty -> Bool
Prelude.Eq, Int -> FmtpProperty -> ShowS
[FmtpProperty] -> ShowS
FmtpProperty -> String
(Int -> FmtpProperty -> ShowS)
-> (FmtpProperty -> String)
-> ([FmtpProperty] -> ShowS)
-> Show FmtpProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> FmtpProperty -> ShowS
showsPrec :: Int -> FmtpProperty -> ShowS
$cshow :: FmtpProperty -> String
show :: FmtpProperty -> String
$cshowList :: [FmtpProperty] -> ShowS
showList :: [FmtpProperty] -> ShowS
Prelude.Show)
mkFmtpProperty :: FmtpProperty
mkFmtpProperty :: FmtpProperty
mkFmtpProperty
  = FmtpProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), channelOrder :: Maybe (Value Text)
channelOrder = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       colorimetry :: Maybe (Value Text)
colorimetry = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, exactFramerate :: Maybe (Value Text)
exactFramerate = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       par :: Maybe (Value Text)
par = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, range :: Maybe (Value Text)
range = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       scanMode :: Maybe (Value Text)
scanMode = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tcs :: Maybe (Value Text)
tcs = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties FmtpProperty where
  toResourceProperties :: FmtpProperty -> ResourceProperties
toResourceProperties FmtpProperty {Maybe (Value Text)
()
haddock_workaround_ :: FmtpProperty -> ()
channelOrder :: FmtpProperty -> Maybe (Value Text)
colorimetry :: FmtpProperty -> Maybe (Value Text)
exactFramerate :: FmtpProperty -> Maybe (Value Text)
par :: FmtpProperty -> Maybe (Value Text)
range :: FmtpProperty -> Maybe (Value Text)
scanMode :: FmtpProperty -> Maybe (Value Text)
tcs :: FmtpProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::MediaConnect::Flow.Fmtp",
         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 -> 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
"ChannelOrder" (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)
channelOrder,
                            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
"Colorimetry" (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)
colorimetry,
                            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
"ExactFramerate" (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)
exactFramerate,
                            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
"Par" (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)
par,
                            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
"Range" (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)
range,
                            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
"ScanMode" (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)
scanMode,
                            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
"Tcs" (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)
tcs])}
instance JSON.ToJSON FmtpProperty where
  toJSON :: FmtpProperty -> Value
toJSON FmtpProperty {Maybe (Value Text)
()
haddock_workaround_ :: FmtpProperty -> ()
channelOrder :: FmtpProperty -> Maybe (Value Text)
colorimetry :: FmtpProperty -> Maybe (Value Text)
exactFramerate :: FmtpProperty -> Maybe (Value Text)
par :: FmtpProperty -> Maybe (Value Text)
range :: FmtpProperty -> Maybe (Value Text)
scanMode :: FmtpProperty -> Maybe (Value Text)
tcs :: FmtpProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
    = [(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 -> 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
"ChannelOrder" (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)
channelOrder,
               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
"Colorimetry" (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)
colorimetry,
               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
"ExactFramerate" (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)
exactFramerate,
               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
"Par" (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)
par,
               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
"Range" (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)
range,
               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
"ScanMode" (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)
scanMode,
               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
"Tcs" (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)
tcs]))
instance Property "ChannelOrder" FmtpProperty where
  type PropertyType "ChannelOrder" FmtpProperty = Value Prelude.Text
  set :: PropertyType "ChannelOrder" FmtpProperty
-> FmtpProperty -> FmtpProperty
set PropertyType "ChannelOrder" FmtpProperty
newValue FmtpProperty {Maybe (Value Text)
()
haddock_workaround_ :: FmtpProperty -> ()
channelOrder :: FmtpProperty -> Maybe (Value Text)
colorimetry :: FmtpProperty -> Maybe (Value Text)
exactFramerate :: FmtpProperty -> Maybe (Value Text)
par :: FmtpProperty -> Maybe (Value Text)
range :: FmtpProperty -> Maybe (Value Text)
scanMode :: FmtpProperty -> Maybe (Value Text)
tcs :: FmtpProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
    = FmtpProperty {channelOrder :: Maybe (Value Text)
channelOrder = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ChannelOrder" FmtpProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
haddock_workaround_ :: ()
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
instance Property "Colorimetry" FmtpProperty where
  type PropertyType "Colorimetry" FmtpProperty = Value Prelude.Text
  set :: PropertyType "Colorimetry" FmtpProperty
-> FmtpProperty -> FmtpProperty
set PropertyType "Colorimetry" FmtpProperty
newValue FmtpProperty {Maybe (Value Text)
()
haddock_workaround_ :: FmtpProperty -> ()
channelOrder :: FmtpProperty -> Maybe (Value Text)
colorimetry :: FmtpProperty -> Maybe (Value Text)
exactFramerate :: FmtpProperty -> Maybe (Value Text)
par :: FmtpProperty -> Maybe (Value Text)
range :: FmtpProperty -> Maybe (Value Text)
scanMode :: FmtpProperty -> Maybe (Value Text)
tcs :: FmtpProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
    = FmtpProperty {colorimetry :: Maybe (Value Text)
colorimetry = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Colorimetry" FmtpProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
instance Property "ExactFramerate" FmtpProperty where
  type PropertyType "ExactFramerate" FmtpProperty = Value Prelude.Text
  set :: PropertyType "ExactFramerate" FmtpProperty
-> FmtpProperty -> FmtpProperty
set PropertyType "ExactFramerate" FmtpProperty
newValue FmtpProperty {Maybe (Value Text)
()
haddock_workaround_ :: FmtpProperty -> ()
channelOrder :: FmtpProperty -> Maybe (Value Text)
colorimetry :: FmtpProperty -> Maybe (Value Text)
exactFramerate :: FmtpProperty -> Maybe (Value Text)
par :: FmtpProperty -> Maybe (Value Text)
range :: FmtpProperty -> Maybe (Value Text)
scanMode :: FmtpProperty -> Maybe (Value Text)
tcs :: FmtpProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
    = FmtpProperty {exactFramerate :: Maybe (Value Text)
exactFramerate = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ExactFramerate" FmtpProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
instance Property "Par" FmtpProperty where
  type PropertyType "Par" FmtpProperty = Value Prelude.Text
  set :: PropertyType "Par" FmtpProperty -> FmtpProperty -> FmtpProperty
set PropertyType "Par" FmtpProperty
newValue FmtpProperty {Maybe (Value Text)
()
haddock_workaround_ :: FmtpProperty -> ()
channelOrder :: FmtpProperty -> Maybe (Value Text)
colorimetry :: FmtpProperty -> Maybe (Value Text)
exactFramerate :: FmtpProperty -> Maybe (Value Text)
par :: FmtpProperty -> Maybe (Value Text)
range :: FmtpProperty -> Maybe (Value Text)
scanMode :: FmtpProperty -> Maybe (Value Text)
tcs :: FmtpProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
    = FmtpProperty {par :: Maybe (Value Text)
par = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Par" FmtpProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
instance Property "Range" FmtpProperty where
  type PropertyType "Range" FmtpProperty = Value Prelude.Text
  set :: PropertyType "Range" FmtpProperty -> FmtpProperty -> FmtpProperty
set PropertyType "Range" FmtpProperty
newValue FmtpProperty {Maybe (Value Text)
()
haddock_workaround_ :: FmtpProperty -> ()
channelOrder :: FmtpProperty -> Maybe (Value Text)
colorimetry :: FmtpProperty -> Maybe (Value Text)
exactFramerate :: FmtpProperty -> Maybe (Value Text)
par :: FmtpProperty -> Maybe (Value Text)
range :: FmtpProperty -> Maybe (Value Text)
scanMode :: FmtpProperty -> Maybe (Value Text)
tcs :: FmtpProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
    = FmtpProperty {range :: Maybe (Value Text)
range = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Range" FmtpProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
instance Property "ScanMode" FmtpProperty where
  type PropertyType "ScanMode" FmtpProperty = Value Prelude.Text
  set :: PropertyType "ScanMode" FmtpProperty
-> FmtpProperty -> FmtpProperty
set PropertyType "ScanMode" FmtpProperty
newValue FmtpProperty {Maybe (Value Text)
()
haddock_workaround_ :: FmtpProperty -> ()
channelOrder :: FmtpProperty -> Maybe (Value Text)
colorimetry :: FmtpProperty -> Maybe (Value Text)
exactFramerate :: FmtpProperty -> Maybe (Value Text)
par :: FmtpProperty -> Maybe (Value Text)
range :: FmtpProperty -> Maybe (Value Text)
scanMode :: FmtpProperty -> Maybe (Value Text)
tcs :: FmtpProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
    = FmtpProperty {scanMode :: Maybe (Value Text)
scanMode = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ScanMode" FmtpProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
tcs :: Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
instance Property "Tcs" FmtpProperty where
  type PropertyType "Tcs" FmtpProperty = Value Prelude.Text
  set :: PropertyType "Tcs" FmtpProperty -> FmtpProperty -> FmtpProperty
set PropertyType "Tcs" FmtpProperty
newValue FmtpProperty {Maybe (Value Text)
()
haddock_workaround_ :: FmtpProperty -> ()
channelOrder :: FmtpProperty -> Maybe (Value Text)
colorimetry :: FmtpProperty -> Maybe (Value Text)
exactFramerate :: FmtpProperty -> Maybe (Value Text)
par :: FmtpProperty -> Maybe (Value Text)
range :: FmtpProperty -> Maybe (Value Text)
scanMode :: FmtpProperty -> Maybe (Value Text)
tcs :: FmtpProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
tcs :: Maybe (Value Text)
..}
    = FmtpProperty {tcs :: Maybe (Value Text)
tcs = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Tcs" FmtpProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
haddock_workaround_ :: ()
channelOrder :: Maybe (Value Text)
colorimetry :: Maybe (Value Text)
exactFramerate :: Maybe (Value Text)
par :: Maybe (Value Text)
range :: Maybe (Value Text)
scanMode :: Maybe (Value Text)
..}