module Stratosphere.MediaLive.Channel.InputChannelLevelProperty ( InputChannelLevelProperty(..), mkInputChannelLevelProperty ) where import qualified Data.Aeson as JSON import qualified Stratosphere.Prelude as Prelude import Stratosphere.Property import Stratosphere.ResourceProperties import Stratosphere.Value data InputChannelLevelProperty = -- | See: InputChannelLevelProperty {haddock_workaround_ :: (), -- | See: gain :: (Prelude.Maybe (Value Prelude.Integer)), -- | See: inputChannel :: (Prelude.Maybe (Value Prelude.Integer))} deriving stock (Prelude.Eq, Prelude.Show) mkInputChannelLevelProperty :: InputChannelLevelProperty mkInputChannelLevelProperty = InputChannelLevelProperty {haddock_workaround_ = (), gain = Prelude.Nothing, inputChannel = Prelude.Nothing} instance ToResourceProperties InputChannelLevelProperty where toResourceProperties InputChannelLevelProperty {..} = ResourceProperties {awsType = "AWS::MediaLive::Channel.InputChannelLevel", supportsTags = Prelude.False, properties = Prelude.fromList (Prelude.catMaybes [(JSON..=) "Gain" Prelude.<$> gain, (JSON..=) "InputChannel" Prelude.<$> inputChannel])} instance JSON.ToJSON InputChannelLevelProperty where toJSON InputChannelLevelProperty {..} = JSON.object (Prelude.fromList (Prelude.catMaybes [(JSON..=) "Gain" Prelude.<$> gain, (JSON..=) "InputChannel" Prelude.<$> inputChannel])) instance Property "Gain" InputChannelLevelProperty where type PropertyType "Gain" InputChannelLevelProperty = Value Prelude.Integer set newValue InputChannelLevelProperty {..} = InputChannelLevelProperty {gain = Prelude.pure newValue, ..} instance Property "InputChannel" InputChannelLevelProperty where type PropertyType "InputChannel" InputChannelLevelProperty = Value Prelude.Integer set newValue InputChannelLevelProperty {..} = InputChannelLevelProperty {inputChannel = Prelude.pure newValue, ..}