{-# 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.Connect.Types.ActionSummary
-- 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.Connect.Types.ActionSummary where

import Amazonka.Connect.Types.ActionType
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

-- | Information about an action.
--
-- /See:/ 'newActionSummary' smart constructor.
data ActionSummary = ActionSummary'
  { -- | The action type.
    ActionSummary -> ActionType
actionType :: ActionType
  }
  deriving (ActionSummary -> ActionSummary -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ActionSummary -> ActionSummary -> Bool
$c/= :: ActionSummary -> ActionSummary -> Bool
== :: ActionSummary -> ActionSummary -> Bool
$c== :: ActionSummary -> ActionSummary -> Bool
Prelude.Eq, ReadPrec [ActionSummary]
ReadPrec ActionSummary
Int -> ReadS ActionSummary
ReadS [ActionSummary]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ActionSummary]
$creadListPrec :: ReadPrec [ActionSummary]
readPrec :: ReadPrec ActionSummary
$creadPrec :: ReadPrec ActionSummary
readList :: ReadS [ActionSummary]
$creadList :: ReadS [ActionSummary]
readsPrec :: Int -> ReadS ActionSummary
$creadsPrec :: Int -> ReadS ActionSummary
Prelude.Read, Int -> ActionSummary -> ShowS
[ActionSummary] -> ShowS
ActionSummary -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ActionSummary] -> ShowS
$cshowList :: [ActionSummary] -> ShowS
show :: ActionSummary -> String
$cshow :: ActionSummary -> String
showsPrec :: Int -> ActionSummary -> ShowS
$cshowsPrec :: Int -> ActionSummary -> ShowS
Prelude.Show, forall x. Rep ActionSummary x -> ActionSummary
forall x. ActionSummary -> Rep ActionSummary x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ActionSummary x -> ActionSummary
$cfrom :: forall x. ActionSummary -> Rep ActionSummary x
Prelude.Generic)

-- |
-- Create a value of 'ActionSummary' 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:
--
-- 'actionType', 'actionSummary_actionType' - The action type.
newActionSummary ::
  -- | 'actionType'
  ActionType ->
  ActionSummary
newActionSummary :: ActionType -> ActionSummary
newActionSummary ActionType
pActionType_ =
  ActionSummary' {$sel:actionType:ActionSummary' :: ActionType
actionType = ActionType
pActionType_}

-- | The action type.
actionSummary_actionType :: Lens.Lens' ActionSummary ActionType
actionSummary_actionType :: Lens' ActionSummary ActionType
actionSummary_actionType = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ActionSummary' {ActionType
actionType :: ActionType
$sel:actionType:ActionSummary' :: ActionSummary -> ActionType
actionType} -> ActionType
actionType) (\s :: ActionSummary
s@ActionSummary' {} ActionType
a -> ActionSummary
s {$sel:actionType:ActionSummary' :: ActionType
actionType = ActionType
a} :: ActionSummary)

instance Data.FromJSON ActionSummary where
  parseJSON :: Value -> Parser ActionSummary
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"ActionSummary"
      ( \Object
x ->
          ActionType -> ActionSummary
ActionSummary' forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"ActionType")
      )

instance Prelude.Hashable ActionSummary where
  hashWithSalt :: Int -> ActionSummary -> Int
hashWithSalt Int
_salt ActionSummary' {ActionType
actionType :: ActionType
$sel:actionType:ActionSummary' :: ActionSummary -> ActionType
..} =
    Int
_salt forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` ActionType
actionType

instance Prelude.NFData ActionSummary where
  rnf :: ActionSummary -> ()
rnf ActionSummary' {ActionType
actionType :: ActionType
$sel:actionType:ActionSummary' :: ActionSummary -> ActionType
..} = forall a. NFData a => a -> ()
Prelude.rnf ActionType
actionType