amazonka-ivs-2.0: gen/Amazonka/IVS/Types/AudioConfiguration.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Amazonka.IVS.Types.AudioConfiguration
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.IVS.Types.AudioConfiguration where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude
-- | Object specifying a stream’s audio configuration, as set up by the
-- broadcaster (usually in an encoder). This is part of the
-- IngestConfiguration object and used for monitoring stream health.
--
-- /See:/ 'newAudioConfiguration' smart constructor.
data AudioConfiguration = AudioConfiguration'
{ -- | Number of audio channels.
channels :: Prelude.Maybe Prelude.Integer,
-- | Codec used for the audio encoding.
codec :: Prelude.Maybe Prelude.Text,
-- | Number of audio samples recorded per second.
sampleRate :: Prelude.Maybe Prelude.Integer,
-- | The expected ingest bitrate (bits per second). This is configured in the
-- encoder.
targetBitrate :: Prelude.Maybe Prelude.Integer
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AudioConfiguration' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'channels', 'audioConfiguration_channels' - Number of audio channels.
--
-- 'codec', 'audioConfiguration_codec' - Codec used for the audio encoding.
--
-- 'sampleRate', 'audioConfiguration_sampleRate' - Number of audio samples recorded per second.
--
-- 'targetBitrate', 'audioConfiguration_targetBitrate' - The expected ingest bitrate (bits per second). This is configured in the
-- encoder.
newAudioConfiguration ::
AudioConfiguration
newAudioConfiguration =
AudioConfiguration'
{ channels = Prelude.Nothing,
codec = Prelude.Nothing,
sampleRate = Prelude.Nothing,
targetBitrate = Prelude.Nothing
}
-- | Number of audio channels.
audioConfiguration_channels :: Lens.Lens' AudioConfiguration (Prelude.Maybe Prelude.Integer)
audioConfiguration_channels = Lens.lens (\AudioConfiguration' {channels} -> channels) (\s@AudioConfiguration' {} a -> s {channels = a} :: AudioConfiguration)
-- | Codec used for the audio encoding.
audioConfiguration_codec :: Lens.Lens' AudioConfiguration (Prelude.Maybe Prelude.Text)
audioConfiguration_codec = Lens.lens (\AudioConfiguration' {codec} -> codec) (\s@AudioConfiguration' {} a -> s {codec = a} :: AudioConfiguration)
-- | Number of audio samples recorded per second.
audioConfiguration_sampleRate :: Lens.Lens' AudioConfiguration (Prelude.Maybe Prelude.Integer)
audioConfiguration_sampleRate = Lens.lens (\AudioConfiguration' {sampleRate} -> sampleRate) (\s@AudioConfiguration' {} a -> s {sampleRate = a} :: AudioConfiguration)
-- | The expected ingest bitrate (bits per second). This is configured in the
-- encoder.
audioConfiguration_targetBitrate :: Lens.Lens' AudioConfiguration (Prelude.Maybe Prelude.Integer)
audioConfiguration_targetBitrate = Lens.lens (\AudioConfiguration' {targetBitrate} -> targetBitrate) (\s@AudioConfiguration' {} a -> s {targetBitrate = a} :: AudioConfiguration)
instance Data.FromJSON AudioConfiguration where
parseJSON =
Data.withObject
"AudioConfiguration"
( \x ->
AudioConfiguration'
Prelude.<$> (x Data..:? "channels")
Prelude.<*> (x Data..:? "codec")
Prelude.<*> (x Data..:? "sampleRate")
Prelude.<*> (x Data..:? "targetBitrate")
)
instance Prelude.Hashable AudioConfiguration where
hashWithSalt _salt AudioConfiguration' {..} =
_salt
`Prelude.hashWithSalt` channels
`Prelude.hashWithSalt` codec
`Prelude.hashWithSalt` sampleRate
`Prelude.hashWithSalt` targetBitrate
instance Prelude.NFData AudioConfiguration where
rnf AudioConfiguration' {..} =
Prelude.rnf channels
`Prelude.seq` Prelude.rnf codec
`Prelude.seq` Prelude.rnf sampleRate
`Prelude.seq` Prelude.rnf targetBitrate