module Stratosphere.MediaLive.Channel.PassThroughSettingsProperty (
        PassThroughSettingsProperty(..), mkPassThroughSettingsProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.ResourceProperties
data PassThroughSettingsProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-passthroughsettings.html>
    PassThroughSettingsProperty {PassThroughSettingsProperty -> ()
haddock_workaround_ :: ()}
  deriving stock (PassThroughSettingsProperty -> PassThroughSettingsProperty -> Bool
(PassThroughSettingsProperty
 -> PassThroughSettingsProperty -> Bool)
-> (PassThroughSettingsProperty
    -> PassThroughSettingsProperty -> Bool)
-> Eq PassThroughSettingsProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: PassThroughSettingsProperty -> PassThroughSettingsProperty -> Bool
== :: PassThroughSettingsProperty -> PassThroughSettingsProperty -> Bool
$c/= :: PassThroughSettingsProperty -> PassThroughSettingsProperty -> Bool
/= :: PassThroughSettingsProperty -> PassThroughSettingsProperty -> Bool
Prelude.Eq, Int -> PassThroughSettingsProperty -> ShowS
[PassThroughSettingsProperty] -> ShowS
PassThroughSettingsProperty -> String
(Int -> PassThroughSettingsProperty -> ShowS)
-> (PassThroughSettingsProperty -> String)
-> ([PassThroughSettingsProperty] -> ShowS)
-> Show PassThroughSettingsProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> PassThroughSettingsProperty -> ShowS
showsPrec :: Int -> PassThroughSettingsProperty -> ShowS
$cshow :: PassThroughSettingsProperty -> String
show :: PassThroughSettingsProperty -> String
$cshowList :: [PassThroughSettingsProperty] -> ShowS
showList :: [PassThroughSettingsProperty] -> ShowS
Prelude.Show)
mkPassThroughSettingsProperty :: PassThroughSettingsProperty
mkPassThroughSettingsProperty :: PassThroughSettingsProperty
mkPassThroughSettingsProperty
  = PassThroughSettingsProperty {haddock_workaround_ :: ()
haddock_workaround_ = ()}
instance ToResourceProperties PassThroughSettingsProperty where
  toResourceProperties :: PassThroughSettingsProperty -> ResourceProperties
toResourceProperties PassThroughSettingsProperty {}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::MediaLive::Channel.PassThroughSettings",
         supportsTags :: Bool
supportsTags = Bool
Prelude.False, properties :: Object
properties = []}
instance JSON.ToJSON PassThroughSettingsProperty where
  toJSON :: PassThroughSettingsProperty -> Value
toJSON PassThroughSettingsProperty {} = [Pair] -> Value
JSON.object []