amazonka-cognito-idp-2.0: gen/Amazonka/CognitoIdentityProvider/Types/AccountTakeoverActionsType.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.CognitoIdentityProvider.Types.AccountTakeoverActionsType
-- 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.CognitoIdentityProvider.Types.AccountTakeoverActionsType where
import Amazonka.CognitoIdentityProvider.Types.AccountTakeoverActionType
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
-- | Account takeover actions type.
--
-- /See:/ 'newAccountTakeoverActionsType' smart constructor.
data AccountTakeoverActionsType = AccountTakeoverActionsType'
{ -- | Action to take for a high risk.
highAction :: Prelude.Maybe AccountTakeoverActionType,
-- | Action to take for a low risk.
lowAction :: Prelude.Maybe AccountTakeoverActionType,
-- | Action to take for a medium risk.
mediumAction :: Prelude.Maybe AccountTakeoverActionType
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AccountTakeoverActionsType' 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:
--
-- 'highAction', 'accountTakeoverActionsType_highAction' - Action to take for a high risk.
--
-- 'lowAction', 'accountTakeoverActionsType_lowAction' - Action to take for a low risk.
--
-- 'mediumAction', 'accountTakeoverActionsType_mediumAction' - Action to take for a medium risk.
newAccountTakeoverActionsType ::
AccountTakeoverActionsType
newAccountTakeoverActionsType =
AccountTakeoverActionsType'
{ highAction =
Prelude.Nothing,
lowAction = Prelude.Nothing,
mediumAction = Prelude.Nothing
}
-- | Action to take for a high risk.
accountTakeoverActionsType_highAction :: Lens.Lens' AccountTakeoverActionsType (Prelude.Maybe AccountTakeoverActionType)
accountTakeoverActionsType_highAction = Lens.lens (\AccountTakeoverActionsType' {highAction} -> highAction) (\s@AccountTakeoverActionsType' {} a -> s {highAction = a} :: AccountTakeoverActionsType)
-- | Action to take for a low risk.
accountTakeoverActionsType_lowAction :: Lens.Lens' AccountTakeoverActionsType (Prelude.Maybe AccountTakeoverActionType)
accountTakeoverActionsType_lowAction = Lens.lens (\AccountTakeoverActionsType' {lowAction} -> lowAction) (\s@AccountTakeoverActionsType' {} a -> s {lowAction = a} :: AccountTakeoverActionsType)
-- | Action to take for a medium risk.
accountTakeoverActionsType_mediumAction :: Lens.Lens' AccountTakeoverActionsType (Prelude.Maybe AccountTakeoverActionType)
accountTakeoverActionsType_mediumAction = Lens.lens (\AccountTakeoverActionsType' {mediumAction} -> mediumAction) (\s@AccountTakeoverActionsType' {} a -> s {mediumAction = a} :: AccountTakeoverActionsType)
instance Data.FromJSON AccountTakeoverActionsType where
parseJSON =
Data.withObject
"AccountTakeoverActionsType"
( \x ->
AccountTakeoverActionsType'
Prelude.<$> (x Data..:? "HighAction")
Prelude.<*> (x Data..:? "LowAction")
Prelude.<*> (x Data..:? "MediumAction")
)
instance Prelude.Hashable AccountTakeoverActionsType where
hashWithSalt _salt AccountTakeoverActionsType' {..} =
_salt
`Prelude.hashWithSalt` highAction
`Prelude.hashWithSalt` lowAction
`Prelude.hashWithSalt` mediumAction
instance Prelude.NFData AccountTakeoverActionsType where
rnf AccountTakeoverActionsType' {..} =
Prelude.rnf highAction
`Prelude.seq` Prelude.rnf lowAction
`Prelude.seq` Prelude.rnf mediumAction
instance Data.ToJSON AccountTakeoverActionsType where
toJSON AccountTakeoverActionsType' {..} =
Data.object
( Prelude.catMaybes
[ ("HighAction" Data..=) Prelude.<$> highAction,
("LowAction" Data..=) Prelude.<$> lowAction,
("MediumAction" Data..=) Prelude.<$> mediumAction
]
)