{-# 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.DLM.Types.Action
-- 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.DLM.Types.Action where

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import Amazonka.DLM.Types.CrossRegionCopyAction
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude

-- | __[Event-based policies only]__ Specifies an action for an event-based
-- policy.
--
-- /See:/ 'newAction' smart constructor.
data Action = Action'
  { -- | A descriptive name for the action.
    Action -> Text
name :: Prelude.Text,
    -- | The rule for copying shared snapshots across Regions.
    Action -> [CrossRegionCopyAction]
crossRegionCopy :: [CrossRegionCopyAction]
  }
  deriving (Action -> Action -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Action -> Action -> Bool
$c/= :: Action -> Action -> Bool
== :: Action -> Action -> Bool
$c== :: Action -> Action -> Bool
Prelude.Eq, ReadPrec [Action]
ReadPrec Action
Int -> ReadS Action
ReadS [Action]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [Action]
$creadListPrec :: ReadPrec [Action]
readPrec :: ReadPrec Action
$creadPrec :: ReadPrec Action
readList :: ReadS [Action]
$creadList :: ReadS [Action]
readsPrec :: Int -> ReadS Action
$creadsPrec :: Int -> ReadS Action
Prelude.Read, Int -> Action -> ShowS
[Action] -> ShowS
Action -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Action] -> ShowS
$cshowList :: [Action] -> ShowS
show :: Action -> String
$cshow :: Action -> String
showsPrec :: Int -> Action -> ShowS
$cshowsPrec :: Int -> Action -> ShowS
Prelude.Show, forall x. Rep Action x -> Action
forall x. Action -> Rep Action x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep Action x -> Action
$cfrom :: forall x. Action -> Rep Action x
Prelude.Generic)

-- |
-- Create a value of 'Action' 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:
--
-- 'name', 'action_name' - A descriptive name for the action.
--
-- 'crossRegionCopy', 'action_crossRegionCopy' - The rule for copying shared snapshots across Regions.
newAction ::
  -- | 'name'
  Prelude.Text ->
  Action
newAction :: Text -> Action
newAction Text
pName_ =
  Action'
    { $sel:name:Action' :: Text
name = Text
pName_,
      $sel:crossRegionCopy:Action' :: [CrossRegionCopyAction]
crossRegionCopy = forall a. Monoid a => a
Prelude.mempty
    }

-- | A descriptive name for the action.
action_name :: Lens.Lens' Action Prelude.Text
action_name :: Lens' Action Text
action_name = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Action' {Text
name :: Text
$sel:name:Action' :: Action -> Text
name} -> Text
name) (\s :: Action
s@Action' {} Text
a -> Action
s {$sel:name:Action' :: Text
name = Text
a} :: Action)

-- | The rule for copying shared snapshots across Regions.
action_crossRegionCopy :: Lens.Lens' Action [CrossRegionCopyAction]
action_crossRegionCopy :: Lens' Action [CrossRegionCopyAction]
action_crossRegionCopy = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Action' {[CrossRegionCopyAction]
crossRegionCopy :: [CrossRegionCopyAction]
$sel:crossRegionCopy:Action' :: Action -> [CrossRegionCopyAction]
crossRegionCopy} -> [CrossRegionCopyAction]
crossRegionCopy) (\s :: Action
s@Action' {} [CrossRegionCopyAction]
a -> Action
s {$sel:crossRegionCopy:Action' :: [CrossRegionCopyAction]
crossRegionCopy = [CrossRegionCopyAction]
a} :: Action) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

instance Data.FromJSON Action where
  parseJSON :: Value -> Parser Action
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"Action"
      ( \Object
x ->
          Text -> [CrossRegionCopyAction] -> Action
Action'
            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
"Name")
            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
"CrossRegionCopy"
                            forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty
                        )
      )

instance Prelude.Hashable Action where
  hashWithSalt :: Int -> Action -> Int
hashWithSalt Int
_salt Action' {[CrossRegionCopyAction]
Text
crossRegionCopy :: [CrossRegionCopyAction]
name :: Text
$sel:crossRegionCopy:Action' :: Action -> [CrossRegionCopyAction]
$sel:name:Action' :: Action -> Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
name
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` [CrossRegionCopyAction]
crossRegionCopy

instance Prelude.NFData Action where
  rnf :: Action -> ()
rnf Action' {[CrossRegionCopyAction]
Text
crossRegionCopy :: [CrossRegionCopyAction]
name :: Text
$sel:crossRegionCopy:Action' :: Action -> [CrossRegionCopyAction]
$sel:name:Action' :: Action -> Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Text
name
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf [CrossRegionCopyAction]
crossRegionCopy

instance Data.ToJSON Action where
  toJSON :: Action -> Value
toJSON Action' {[CrossRegionCopyAction]
Text
crossRegionCopy :: [CrossRegionCopyAction]
name :: Text
$sel:crossRegionCopy:Action' :: Action -> [CrossRegionCopyAction]
$sel:name:Action' :: Action -> Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ forall a. a -> Maybe a
Prelude.Just (Key
"Name" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
name),
            forall a. a -> Maybe a
Prelude.Just
              (Key
"CrossRegionCopy" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= [CrossRegionCopyAction]
crossRegionCopy)
          ]
      )