{-# 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.MediaPackageVOD.Types.CmafEncryption -- 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.MediaPackageVOD.Types.CmafEncryption where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.MediaPackageVOD.Types.SpekeKeyProvider import qualified Amazonka.Prelude as Prelude -- | A CMAF encryption configuration. -- -- /See:/ 'newCmafEncryption' smart constructor. data CmafEncryption = CmafEncryption' { -- | An optional 128-bit, 16-byte hex value represented by a 32-character -- string, used in conjunction with the key for encrypting blocks. If you -- don\'t specify a value, then MediaPackage creates the constant -- initialization vector (IV). constantInitializationVector :: Prelude.Maybe Prelude.Text, spekeKeyProvider :: SpekeKeyProvider } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CmafEncryption' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'constantInitializationVector', 'cmafEncryption_constantInitializationVector' - An optional 128-bit, 16-byte hex value represented by a 32-character -- string, used in conjunction with the key for encrypting blocks. If you -- don\'t specify a value, then MediaPackage creates the constant -- initialization vector (IV). -- -- 'spekeKeyProvider', 'cmafEncryption_spekeKeyProvider' - Undocumented member. newCmafEncryption :: -- | 'spekeKeyProvider' SpekeKeyProvider -> CmafEncryption newCmafEncryption pSpekeKeyProvider_ = CmafEncryption' { constantInitializationVector = Prelude.Nothing, spekeKeyProvider = pSpekeKeyProvider_ } -- | An optional 128-bit, 16-byte hex value represented by a 32-character -- string, used in conjunction with the key for encrypting blocks. If you -- don\'t specify a value, then MediaPackage creates the constant -- initialization vector (IV). cmafEncryption_constantInitializationVector :: Lens.Lens' CmafEncryption (Prelude.Maybe Prelude.Text) cmafEncryption_constantInitializationVector = Lens.lens (\CmafEncryption' {constantInitializationVector} -> constantInitializationVector) (\s@CmafEncryption' {} a -> s {constantInitializationVector = a} :: CmafEncryption) -- | Undocumented member. cmafEncryption_spekeKeyProvider :: Lens.Lens' CmafEncryption SpekeKeyProvider cmafEncryption_spekeKeyProvider = Lens.lens (\CmafEncryption' {spekeKeyProvider} -> spekeKeyProvider) (\s@CmafEncryption' {} a -> s {spekeKeyProvider = a} :: CmafEncryption) instance Data.FromJSON CmafEncryption where parseJSON = Data.withObject "CmafEncryption" ( \x -> CmafEncryption' Prelude.<$> (x Data..:? "constantInitializationVector") Prelude.<*> (x Data..: "spekeKeyProvider") ) instance Prelude.Hashable CmafEncryption where hashWithSalt _salt CmafEncryption' {..} = _salt `Prelude.hashWithSalt` constantInitializationVector `Prelude.hashWithSalt` spekeKeyProvider instance Prelude.NFData CmafEncryption where rnf CmafEncryption' {..} = Prelude.rnf constantInitializationVector `Prelude.seq` Prelude.rnf spekeKeyProvider instance Data.ToJSON CmafEncryption where toJSON CmafEncryption' {..} = Data.object ( Prelude.catMaybes [ ("constantInitializationVector" Data..=) Prelude.<$> constantInitializationVector, Prelude.Just ("spekeKeyProvider" Data..= spekeKeyProvider) ] )