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

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.FIS.Types.ActionTarget
import qualified Amazonka.Prelude as Prelude

-- | Provides a summary of an action.
--
-- /See:/ 'newActionSummary' smart constructor.
data ActionSummary = ActionSummary'
  { -- | The description for the action.
    ActionSummary -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
    -- | The ID of the action.
    ActionSummary -> Maybe Text
id :: Prelude.Maybe Prelude.Text,
    -- | The tags for the action.
    ActionSummary -> Maybe (HashMap Text Text)
tags :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text),
    -- | The targets for the action.
    ActionSummary -> Maybe (HashMap Text ActionTarget)
targets :: Prelude.Maybe (Prelude.HashMap Prelude.Text ActionTarget)
  }
  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:
--
-- 'description', 'actionSummary_description' - The description for the action.
--
-- 'id', 'actionSummary_id' - The ID of the action.
--
-- 'tags', 'actionSummary_tags' - The tags for the action.
--
-- 'targets', 'actionSummary_targets' - The targets for the action.
newActionSummary ::
  ActionSummary
newActionSummary :: ActionSummary
newActionSummary =
  ActionSummary'
    { $sel:description:ActionSummary' :: Maybe Text
description = forall a. Maybe a
Prelude.Nothing,
      $sel:id:ActionSummary' :: Maybe Text
id = forall a. Maybe a
Prelude.Nothing,
      $sel:tags:ActionSummary' :: Maybe (HashMap Text Text)
tags = forall a. Maybe a
Prelude.Nothing,
      $sel:targets:ActionSummary' :: Maybe (HashMap Text ActionTarget)
targets = forall a. Maybe a
Prelude.Nothing
    }

-- | The description for the action.
actionSummary_description :: Lens.Lens' ActionSummary (Prelude.Maybe Prelude.Text)
actionSummary_description :: Lens' ActionSummary (Maybe Text)
actionSummary_description = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ActionSummary' {Maybe Text
description :: Maybe Text
$sel:description:ActionSummary' :: ActionSummary -> Maybe Text
description} -> Maybe Text
description) (\s :: ActionSummary
s@ActionSummary' {} Maybe Text
a -> ActionSummary
s {$sel:description:ActionSummary' :: Maybe Text
description = Maybe Text
a} :: ActionSummary)

-- | The ID of the action.
actionSummary_id :: Lens.Lens' ActionSummary (Prelude.Maybe Prelude.Text)
actionSummary_id :: Lens' ActionSummary (Maybe Text)
actionSummary_id = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ActionSummary' {Maybe Text
id :: Maybe Text
$sel:id:ActionSummary' :: ActionSummary -> Maybe Text
id} -> Maybe Text
id) (\s :: ActionSummary
s@ActionSummary' {} Maybe Text
a -> ActionSummary
s {$sel:id:ActionSummary' :: Maybe Text
id = Maybe Text
a} :: ActionSummary)

-- | The tags for the action.
actionSummary_tags :: Lens.Lens' ActionSummary (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text))
actionSummary_tags :: Lens' ActionSummary (Maybe (HashMap Text Text))
actionSummary_tags = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ActionSummary' {Maybe (HashMap Text Text)
tags :: Maybe (HashMap Text Text)
$sel:tags:ActionSummary' :: ActionSummary -> Maybe (HashMap Text Text)
tags} -> Maybe (HashMap Text Text)
tags) (\s :: ActionSummary
s@ActionSummary' {} Maybe (HashMap Text Text)
a -> ActionSummary
s {$sel:tags:ActionSummary' :: Maybe (HashMap Text Text)
tags = Maybe (HashMap Text Text)
a} :: ActionSummary) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | The targets for the action.
actionSummary_targets :: Lens.Lens' ActionSummary (Prelude.Maybe (Prelude.HashMap Prelude.Text ActionTarget))
actionSummary_targets :: Lens' ActionSummary (Maybe (HashMap Text ActionTarget))
actionSummary_targets = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ActionSummary' {Maybe (HashMap Text ActionTarget)
targets :: Maybe (HashMap Text ActionTarget)
$sel:targets:ActionSummary' :: ActionSummary -> Maybe (HashMap Text ActionTarget)
targets} -> Maybe (HashMap Text ActionTarget)
targets) (\s :: ActionSummary
s@ActionSummary' {} Maybe (HashMap Text ActionTarget)
a -> ActionSummary
s {$sel:targets:ActionSummary' :: Maybe (HashMap Text ActionTarget)
targets = Maybe (HashMap Text ActionTarget)
a} :: ActionSummary) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

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 ->
          Maybe Text
-> Maybe Text
-> Maybe (HashMap Text Text)
-> Maybe (HashMap Text ActionTarget)
-> ActionSummary
ActionSummary'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"description")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"id")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"tags" forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty)
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"targets" forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty)
      )

instance Prelude.Hashable ActionSummary where
  hashWithSalt :: Int -> ActionSummary -> Int
hashWithSalt Int
_salt ActionSummary' {Maybe Text
Maybe (HashMap Text Text)
Maybe (HashMap Text ActionTarget)
targets :: Maybe (HashMap Text ActionTarget)
tags :: Maybe (HashMap Text Text)
id :: Maybe Text
description :: Maybe Text
$sel:targets:ActionSummary' :: ActionSummary -> Maybe (HashMap Text ActionTarget)
$sel:tags:ActionSummary' :: ActionSummary -> Maybe (HashMap Text Text)
$sel:id:ActionSummary' :: ActionSummary -> Maybe Text
$sel:description:ActionSummary' :: ActionSummary -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
description
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
id
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe (HashMap Text Text)
tags
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe (HashMap Text ActionTarget)
targets

instance Prelude.NFData ActionSummary where
  rnf :: ActionSummary -> ()
rnf ActionSummary' {Maybe Text
Maybe (HashMap Text Text)
Maybe (HashMap Text ActionTarget)
targets :: Maybe (HashMap Text ActionTarget)
tags :: Maybe (HashMap Text Text)
id :: Maybe Text
description :: Maybe Text
$sel:targets:ActionSummary' :: ActionSummary -> Maybe (HashMap Text ActionTarget)
$sel:tags:ActionSummary' :: ActionSummary -> Maybe (HashMap Text Text)
$sel:id:ActionSummary' :: ActionSummary -> Maybe Text
$sel:description:ActionSummary' :: ActionSummary -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
description
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
id
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe (HashMap Text Text)
tags
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe (HashMap Text ActionTarget)
targets