{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.SES.CloneReceiptRuleSet
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Creates a receipt rule set by cloning an existing one. All receipt rules
-- and configurations are copied to the new receipt rule set and are
-- completely independent of the source rule set.
--
-- For information about setting up rule sets, see the
-- <https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html Amazon SES Developer Guide>.
--
-- You can execute this operation no more than once per second.
module Amazonka.SES.CloneReceiptRuleSet
  ( -- * Creating a Request
    CloneReceiptRuleSet (..),
    newCloneReceiptRuleSet,

    -- * Request Lenses
    cloneReceiptRuleSet_ruleSetName,
    cloneReceiptRuleSet_originalRuleSetName,

    -- * Destructuring the Response
    CloneReceiptRuleSetResponse (..),
    newCloneReceiptRuleSetResponse,

    -- * Response Lenses
    cloneReceiptRuleSetResponse_httpStatus,
  )
where

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
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
import Amazonka.SES.Types

-- | Represents a request to create a receipt rule set by cloning an existing
-- one. You use receipt rule sets to receive email with Amazon SES. For
-- more information, see the
-- <https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html Amazon SES Developer Guide>.
--
-- /See:/ 'newCloneReceiptRuleSet' smart constructor.
data CloneReceiptRuleSet = CloneReceiptRuleSet'
  { -- | The name of the rule set to create. The name must:
    --
    -- -   This value can only contain ASCII letters (a-z, A-Z), numbers (0-9),
    --     underscores (_), or dashes (-).
    --
    -- -   Start and end with a letter or number.
    --
    -- -   Contain less than 64 characters.
    CloneReceiptRuleSet -> Text
ruleSetName :: Prelude.Text,
    -- | The name of the rule set to clone.
    CloneReceiptRuleSet -> Text
originalRuleSetName :: Prelude.Text
  }
  deriving (CloneReceiptRuleSet -> CloneReceiptRuleSet -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CloneReceiptRuleSet -> CloneReceiptRuleSet -> Bool
$c/= :: CloneReceiptRuleSet -> CloneReceiptRuleSet -> Bool
== :: CloneReceiptRuleSet -> CloneReceiptRuleSet -> Bool
$c== :: CloneReceiptRuleSet -> CloneReceiptRuleSet -> Bool
Prelude.Eq, ReadPrec [CloneReceiptRuleSet]
ReadPrec CloneReceiptRuleSet
Int -> ReadS CloneReceiptRuleSet
ReadS [CloneReceiptRuleSet]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CloneReceiptRuleSet]
$creadListPrec :: ReadPrec [CloneReceiptRuleSet]
readPrec :: ReadPrec CloneReceiptRuleSet
$creadPrec :: ReadPrec CloneReceiptRuleSet
readList :: ReadS [CloneReceiptRuleSet]
$creadList :: ReadS [CloneReceiptRuleSet]
readsPrec :: Int -> ReadS CloneReceiptRuleSet
$creadsPrec :: Int -> ReadS CloneReceiptRuleSet
Prelude.Read, Int -> CloneReceiptRuleSet -> ShowS
[CloneReceiptRuleSet] -> ShowS
CloneReceiptRuleSet -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CloneReceiptRuleSet] -> ShowS
$cshowList :: [CloneReceiptRuleSet] -> ShowS
show :: CloneReceiptRuleSet -> String
$cshow :: CloneReceiptRuleSet -> String
showsPrec :: Int -> CloneReceiptRuleSet -> ShowS
$cshowsPrec :: Int -> CloneReceiptRuleSet -> ShowS
Prelude.Show, forall x. Rep CloneReceiptRuleSet x -> CloneReceiptRuleSet
forall x. CloneReceiptRuleSet -> Rep CloneReceiptRuleSet x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CloneReceiptRuleSet x -> CloneReceiptRuleSet
$cfrom :: forall x. CloneReceiptRuleSet -> Rep CloneReceiptRuleSet x
Prelude.Generic)

-- |
-- Create a value of 'CloneReceiptRuleSet' 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:
--
-- 'ruleSetName', 'cloneReceiptRuleSet_ruleSetName' - The name of the rule set to create. The name must:
--
-- -   This value can only contain ASCII letters (a-z, A-Z), numbers (0-9),
--     underscores (_), or dashes (-).
--
-- -   Start and end with a letter or number.
--
-- -   Contain less than 64 characters.
--
-- 'originalRuleSetName', 'cloneReceiptRuleSet_originalRuleSetName' - The name of the rule set to clone.
newCloneReceiptRuleSet ::
  -- | 'ruleSetName'
  Prelude.Text ->
  -- | 'originalRuleSetName'
  Prelude.Text ->
  CloneReceiptRuleSet
newCloneReceiptRuleSet :: Text -> Text -> CloneReceiptRuleSet
newCloneReceiptRuleSet
  Text
pRuleSetName_
  Text
pOriginalRuleSetName_ =
    CloneReceiptRuleSet'
      { $sel:ruleSetName:CloneReceiptRuleSet' :: Text
ruleSetName = Text
pRuleSetName_,
        $sel:originalRuleSetName:CloneReceiptRuleSet' :: Text
originalRuleSetName = Text
pOriginalRuleSetName_
      }

-- | The name of the rule set to create. The name must:
--
-- -   This value can only contain ASCII letters (a-z, A-Z), numbers (0-9),
--     underscores (_), or dashes (-).
--
-- -   Start and end with a letter or number.
--
-- -   Contain less than 64 characters.
cloneReceiptRuleSet_ruleSetName :: Lens.Lens' CloneReceiptRuleSet Prelude.Text
cloneReceiptRuleSet_ruleSetName :: Lens' CloneReceiptRuleSet Text
cloneReceiptRuleSet_ruleSetName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CloneReceiptRuleSet' {Text
ruleSetName :: Text
$sel:ruleSetName:CloneReceiptRuleSet' :: CloneReceiptRuleSet -> Text
ruleSetName} -> Text
ruleSetName) (\s :: CloneReceiptRuleSet
s@CloneReceiptRuleSet' {} Text
a -> CloneReceiptRuleSet
s {$sel:ruleSetName:CloneReceiptRuleSet' :: Text
ruleSetName = Text
a} :: CloneReceiptRuleSet)

-- | The name of the rule set to clone.
cloneReceiptRuleSet_originalRuleSetName :: Lens.Lens' CloneReceiptRuleSet Prelude.Text
cloneReceiptRuleSet_originalRuleSetName :: Lens' CloneReceiptRuleSet Text
cloneReceiptRuleSet_originalRuleSetName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CloneReceiptRuleSet' {Text
originalRuleSetName :: Text
$sel:originalRuleSetName:CloneReceiptRuleSet' :: CloneReceiptRuleSet -> Text
originalRuleSetName} -> Text
originalRuleSetName) (\s :: CloneReceiptRuleSet
s@CloneReceiptRuleSet' {} Text
a -> CloneReceiptRuleSet
s {$sel:originalRuleSetName:CloneReceiptRuleSet' :: Text
originalRuleSetName = Text
a} :: CloneReceiptRuleSet)

instance Core.AWSRequest CloneReceiptRuleSet where
  type
    AWSResponse CloneReceiptRuleSet =
      CloneReceiptRuleSetResponse
  request :: (Service -> Service)
-> CloneReceiptRuleSet -> Request CloneReceiptRuleSet
request Service -> Service
overrides =
    forall a. ToRequest a => Service -> a -> Request a
Request.postQuery (Service -> Service
overrides Service
defaultService)
  response :: forall (m :: * -> *).
MonadResource m =>
(ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy CloneReceiptRuleSet
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse CloneReceiptRuleSet)))
response =
    forall (m :: * -> *) a.
MonadResource m =>
Text
-> (Int
    -> ResponseHeaders -> [Node] -> Either String (AWSResponse a))
-> (ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveXMLWrapper
      Text
"CloneReceiptRuleSetResult"
      ( \Int
s ResponseHeaders
h [Node]
x ->
          Int -> CloneReceiptRuleSetResponse
CloneReceiptRuleSetResponse'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
      )

instance Prelude.Hashable CloneReceiptRuleSet where
  hashWithSalt :: Int -> CloneReceiptRuleSet -> Int
hashWithSalt Int
_salt CloneReceiptRuleSet' {Text
originalRuleSetName :: Text
ruleSetName :: Text
$sel:originalRuleSetName:CloneReceiptRuleSet' :: CloneReceiptRuleSet -> Text
$sel:ruleSetName:CloneReceiptRuleSet' :: CloneReceiptRuleSet -> Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
ruleSetName
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
originalRuleSetName

instance Prelude.NFData CloneReceiptRuleSet where
  rnf :: CloneReceiptRuleSet -> ()
rnf CloneReceiptRuleSet' {Text
originalRuleSetName :: Text
ruleSetName :: Text
$sel:originalRuleSetName:CloneReceiptRuleSet' :: CloneReceiptRuleSet -> Text
$sel:ruleSetName:CloneReceiptRuleSet' :: CloneReceiptRuleSet -> Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Text
ruleSetName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
originalRuleSetName

instance Data.ToHeaders CloneReceiptRuleSet where
  toHeaders :: CloneReceiptRuleSet -> ResponseHeaders
toHeaders = forall a b. a -> b -> a
Prelude.const forall a. Monoid a => a
Prelude.mempty

instance Data.ToPath CloneReceiptRuleSet where
  toPath :: CloneReceiptRuleSet -> ByteString
toPath = forall a b. a -> b -> a
Prelude.const ByteString
"/"

instance Data.ToQuery CloneReceiptRuleSet where
  toQuery :: CloneReceiptRuleSet -> QueryString
toQuery CloneReceiptRuleSet' {Text
originalRuleSetName :: Text
ruleSetName :: Text
$sel:originalRuleSetName:CloneReceiptRuleSet' :: CloneReceiptRuleSet -> Text
$sel:ruleSetName:CloneReceiptRuleSet' :: CloneReceiptRuleSet -> Text
..} =
    forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ ByteString
"Action"
          forall a. ToQuery a => ByteString -> a -> QueryString
Data.=: (ByteString
"CloneReceiptRuleSet" :: Prelude.ByteString),
        ByteString
"Version"
          forall a. ToQuery a => ByteString -> a -> QueryString
Data.=: (ByteString
"2010-12-01" :: Prelude.ByteString),
        ByteString
"RuleSetName" forall a. ToQuery a => ByteString -> a -> QueryString
Data.=: Text
ruleSetName,
        ByteString
"OriginalRuleSetName" forall a. ToQuery a => ByteString -> a -> QueryString
Data.=: Text
originalRuleSetName
      ]

-- | An empty element returned on a successful request.
--
-- /See:/ 'newCloneReceiptRuleSetResponse' smart constructor.
data CloneReceiptRuleSetResponse = CloneReceiptRuleSetResponse'
  { -- | The response's http status code.
    CloneReceiptRuleSetResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (CloneReceiptRuleSetResponse -> CloneReceiptRuleSetResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CloneReceiptRuleSetResponse -> CloneReceiptRuleSetResponse -> Bool
$c/= :: CloneReceiptRuleSetResponse -> CloneReceiptRuleSetResponse -> Bool
== :: CloneReceiptRuleSetResponse -> CloneReceiptRuleSetResponse -> Bool
$c== :: CloneReceiptRuleSetResponse -> CloneReceiptRuleSetResponse -> Bool
Prelude.Eq, ReadPrec [CloneReceiptRuleSetResponse]
ReadPrec CloneReceiptRuleSetResponse
Int -> ReadS CloneReceiptRuleSetResponse
ReadS [CloneReceiptRuleSetResponse]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CloneReceiptRuleSetResponse]
$creadListPrec :: ReadPrec [CloneReceiptRuleSetResponse]
readPrec :: ReadPrec CloneReceiptRuleSetResponse
$creadPrec :: ReadPrec CloneReceiptRuleSetResponse
readList :: ReadS [CloneReceiptRuleSetResponse]
$creadList :: ReadS [CloneReceiptRuleSetResponse]
readsPrec :: Int -> ReadS CloneReceiptRuleSetResponse
$creadsPrec :: Int -> ReadS CloneReceiptRuleSetResponse
Prelude.Read, Int -> CloneReceiptRuleSetResponse -> ShowS
[CloneReceiptRuleSetResponse] -> ShowS
CloneReceiptRuleSetResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CloneReceiptRuleSetResponse] -> ShowS
$cshowList :: [CloneReceiptRuleSetResponse] -> ShowS
show :: CloneReceiptRuleSetResponse -> String
$cshow :: CloneReceiptRuleSetResponse -> String
showsPrec :: Int -> CloneReceiptRuleSetResponse -> ShowS
$cshowsPrec :: Int -> CloneReceiptRuleSetResponse -> ShowS
Prelude.Show, forall x.
Rep CloneReceiptRuleSetResponse x -> CloneReceiptRuleSetResponse
forall x.
CloneReceiptRuleSetResponse -> Rep CloneReceiptRuleSetResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep CloneReceiptRuleSetResponse x -> CloneReceiptRuleSetResponse
$cfrom :: forall x.
CloneReceiptRuleSetResponse -> Rep CloneReceiptRuleSetResponse x
Prelude.Generic)

-- |
-- Create a value of 'CloneReceiptRuleSetResponse' 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:
--
-- 'httpStatus', 'cloneReceiptRuleSetResponse_httpStatus' - The response's http status code.
newCloneReceiptRuleSetResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  CloneReceiptRuleSetResponse
newCloneReceiptRuleSetResponse :: Int -> CloneReceiptRuleSetResponse
newCloneReceiptRuleSetResponse Int
pHttpStatus_ =
  CloneReceiptRuleSetResponse'
    { $sel:httpStatus:CloneReceiptRuleSetResponse' :: Int
httpStatus =
        Int
pHttpStatus_
    }

-- | The response's http status code.
cloneReceiptRuleSetResponse_httpStatus :: Lens.Lens' CloneReceiptRuleSetResponse Prelude.Int
cloneReceiptRuleSetResponse_httpStatus :: Lens' CloneReceiptRuleSetResponse Int
cloneReceiptRuleSetResponse_httpStatus = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CloneReceiptRuleSetResponse' {Int
httpStatus :: Int
$sel:httpStatus:CloneReceiptRuleSetResponse' :: CloneReceiptRuleSetResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: CloneReceiptRuleSetResponse
s@CloneReceiptRuleSetResponse' {} Int
a -> CloneReceiptRuleSetResponse
s {$sel:httpStatus:CloneReceiptRuleSetResponse' :: Int
httpStatus = Int
a} :: CloneReceiptRuleSetResponse)

instance Prelude.NFData CloneReceiptRuleSetResponse where
  rnf :: CloneReceiptRuleSetResponse -> ()
rnf CloneReceiptRuleSetResponse' {Int
httpStatus :: Int
$sel:httpStatus:CloneReceiptRuleSetResponse' :: CloneReceiptRuleSetResponse -> Int
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Int
httpStatus