{-# 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.MediaPackage.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.MediaPackage.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.MediaPackage.Types.CmafEncryptionMethod import Amazonka.MediaPackage.Types.SpekeKeyProvider import qualified Amazonka.Prelude as Prelude -- | A Common Media Application Format (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, encryptionMethod :: Prelude.Maybe CmafEncryptionMethod, -- | Time (in seconds) between each encryption key rotation. keyRotationIntervalSeconds :: Prelude.Maybe Prelude.Int, 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). -- -- 'encryptionMethod', 'cmafEncryption_encryptionMethod' - Undocumented member. -- -- 'keyRotationIntervalSeconds', 'cmafEncryption_keyRotationIntervalSeconds' - Time (in seconds) between each encryption key rotation. -- -- 'spekeKeyProvider', 'cmafEncryption_spekeKeyProvider' - Undocumented member. newCmafEncryption :: -- | 'spekeKeyProvider' SpekeKeyProvider -> CmafEncryption newCmafEncryption pSpekeKeyProvider_ = CmafEncryption' { constantInitializationVector = Prelude.Nothing, encryptionMethod = Prelude.Nothing, keyRotationIntervalSeconds = 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_encryptionMethod :: Lens.Lens' CmafEncryption (Prelude.Maybe CmafEncryptionMethod) cmafEncryption_encryptionMethod = Lens.lens (\CmafEncryption' {encryptionMethod} -> encryptionMethod) (\s@CmafEncryption' {} a -> s {encryptionMethod = a} :: CmafEncryption) -- | Time (in seconds) between each encryption key rotation. cmafEncryption_keyRotationIntervalSeconds :: Lens.Lens' CmafEncryption (Prelude.Maybe Prelude.Int) cmafEncryption_keyRotationIntervalSeconds = Lens.lens (\CmafEncryption' {keyRotationIntervalSeconds} -> keyRotationIntervalSeconds) (\s@CmafEncryption' {} a -> s {keyRotationIntervalSeconds = 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..:? "encryptionMethod") Prelude.<*> (x Data..:? "keyRotationIntervalSeconds") Prelude.<*> (x Data..: "spekeKeyProvider") ) instance Prelude.Hashable CmafEncryption where hashWithSalt _salt CmafEncryption' {..} = _salt `Prelude.hashWithSalt` constantInitializationVector `Prelude.hashWithSalt` encryptionMethod `Prelude.hashWithSalt` keyRotationIntervalSeconds `Prelude.hashWithSalt` spekeKeyProvider instance Prelude.NFData CmafEncryption where rnf CmafEncryption' {..} = Prelude.rnf constantInitializationVector `Prelude.seq` Prelude.rnf encryptionMethod `Prelude.seq` Prelude.rnf keyRotationIntervalSeconds `Prelude.seq` Prelude.rnf spekeKeyProvider instance Data.ToJSON CmafEncryption where toJSON CmafEncryption' {..} = Data.object ( Prelude.catMaybes [ ("constantInitializationVector" Data..=) Prelude.<$> constantInitializationVector, ("encryptionMethod" Data..=) Prelude.<$> encryptionMethod, ("keyRotationIntervalSeconds" Data..=) Prelude.<$> keyRotationIntervalSeconds, Prelude.Just ("spekeKeyProvider" Data..= spekeKeyProvider) ] )