{-# 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.SESV2.UpdateContact
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Updates a contact\'s preferences for a list. It is not necessary to
-- specify all existing topic preferences in the TopicPreferences object,
-- just the ones that need updating.
module Amazonka.SESV2.UpdateContact
  ( -- * Creating a Request
    UpdateContact (..),
    newUpdateContact,

    -- * Request Lenses
    updateContact_attributesData,
    updateContact_topicPreferences,
    updateContact_unsubscribeAll,
    updateContact_contactListName,
    updateContact_emailAddress,

    -- * Destructuring the Response
    UpdateContactResponse (..),
    newUpdateContactResponse,

    -- * Response Lenses
    updateContactResponse_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.SESV2.Types

-- | /See:/ 'newUpdateContact' smart constructor.
data UpdateContact = UpdateContact'
  { -- | The attribute data attached to a contact.
    UpdateContact -> Maybe Text
attributesData :: Prelude.Maybe Prelude.Text,
    -- | The contact\'s preference for being opted-in to or opted-out of a topic.
    UpdateContact -> Maybe [TopicPreference]
topicPreferences :: Prelude.Maybe [TopicPreference],
    -- | A boolean value status noting if the contact is unsubscribed from all
    -- contact list topics.
    UpdateContact -> Maybe Bool
unsubscribeAll :: Prelude.Maybe Prelude.Bool,
    -- | The name of the contact list.
    UpdateContact -> Text
contactListName :: Prelude.Text,
    -- | The contact\'s email addres.
    UpdateContact -> Text
emailAddress :: Prelude.Text
  }
  deriving (UpdateContact -> UpdateContact -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateContact -> UpdateContact -> Bool
$c/= :: UpdateContact -> UpdateContact -> Bool
== :: UpdateContact -> UpdateContact -> Bool
$c== :: UpdateContact -> UpdateContact -> Bool
Prelude.Eq, ReadPrec [UpdateContact]
ReadPrec UpdateContact
Int -> ReadS UpdateContact
ReadS [UpdateContact]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateContact]
$creadListPrec :: ReadPrec [UpdateContact]
readPrec :: ReadPrec UpdateContact
$creadPrec :: ReadPrec UpdateContact
readList :: ReadS [UpdateContact]
$creadList :: ReadS [UpdateContact]
readsPrec :: Int -> ReadS UpdateContact
$creadsPrec :: Int -> ReadS UpdateContact
Prelude.Read, Int -> UpdateContact -> ShowS
[UpdateContact] -> ShowS
UpdateContact -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateContact] -> ShowS
$cshowList :: [UpdateContact] -> ShowS
show :: UpdateContact -> String
$cshow :: UpdateContact -> String
showsPrec :: Int -> UpdateContact -> ShowS
$cshowsPrec :: Int -> UpdateContact -> ShowS
Prelude.Show, forall x. Rep UpdateContact x -> UpdateContact
forall x. UpdateContact -> Rep UpdateContact x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateContact x -> UpdateContact
$cfrom :: forall x. UpdateContact -> Rep UpdateContact x
Prelude.Generic)

-- |
-- Create a value of 'UpdateContact' 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:
--
-- 'attributesData', 'updateContact_attributesData' - The attribute data attached to a contact.
--
-- 'topicPreferences', 'updateContact_topicPreferences' - The contact\'s preference for being opted-in to or opted-out of a topic.
--
-- 'unsubscribeAll', 'updateContact_unsubscribeAll' - A boolean value status noting if the contact is unsubscribed from all
-- contact list topics.
--
-- 'contactListName', 'updateContact_contactListName' - The name of the contact list.
--
-- 'emailAddress', 'updateContact_emailAddress' - The contact\'s email addres.
newUpdateContact ::
  -- | 'contactListName'
  Prelude.Text ->
  -- | 'emailAddress'
  Prelude.Text ->
  UpdateContact
newUpdateContact :: Text -> Text -> UpdateContact
newUpdateContact Text
pContactListName_ Text
pEmailAddress_ =
  UpdateContact'
    { $sel:attributesData:UpdateContact' :: Maybe Text
attributesData = forall a. Maybe a
Prelude.Nothing,
      $sel:topicPreferences:UpdateContact' :: Maybe [TopicPreference]
topicPreferences = forall a. Maybe a
Prelude.Nothing,
      $sel:unsubscribeAll:UpdateContact' :: Maybe Bool
unsubscribeAll = forall a. Maybe a
Prelude.Nothing,
      $sel:contactListName:UpdateContact' :: Text
contactListName = Text
pContactListName_,
      $sel:emailAddress:UpdateContact' :: Text
emailAddress = Text
pEmailAddress_
    }

-- | The attribute data attached to a contact.
updateContact_attributesData :: Lens.Lens' UpdateContact (Prelude.Maybe Prelude.Text)
updateContact_attributesData :: Lens' UpdateContact (Maybe Text)
updateContact_attributesData = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateContact' {Maybe Text
attributesData :: Maybe Text
$sel:attributesData:UpdateContact' :: UpdateContact -> Maybe Text
attributesData} -> Maybe Text
attributesData) (\s :: UpdateContact
s@UpdateContact' {} Maybe Text
a -> UpdateContact
s {$sel:attributesData:UpdateContact' :: Maybe Text
attributesData = Maybe Text
a} :: UpdateContact)

-- | The contact\'s preference for being opted-in to or opted-out of a topic.
updateContact_topicPreferences :: Lens.Lens' UpdateContact (Prelude.Maybe [TopicPreference])
updateContact_topicPreferences :: Lens' UpdateContact (Maybe [TopicPreference])
updateContact_topicPreferences = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateContact' {Maybe [TopicPreference]
topicPreferences :: Maybe [TopicPreference]
$sel:topicPreferences:UpdateContact' :: UpdateContact -> Maybe [TopicPreference]
topicPreferences} -> Maybe [TopicPreference]
topicPreferences) (\s :: UpdateContact
s@UpdateContact' {} Maybe [TopicPreference]
a -> UpdateContact
s {$sel:topicPreferences:UpdateContact' :: Maybe [TopicPreference]
topicPreferences = Maybe [TopicPreference]
a} :: UpdateContact) 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

-- | A boolean value status noting if the contact is unsubscribed from all
-- contact list topics.
updateContact_unsubscribeAll :: Lens.Lens' UpdateContact (Prelude.Maybe Prelude.Bool)
updateContact_unsubscribeAll :: Lens' UpdateContact (Maybe Bool)
updateContact_unsubscribeAll = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateContact' {Maybe Bool
unsubscribeAll :: Maybe Bool
$sel:unsubscribeAll:UpdateContact' :: UpdateContact -> Maybe Bool
unsubscribeAll} -> Maybe Bool
unsubscribeAll) (\s :: UpdateContact
s@UpdateContact' {} Maybe Bool
a -> UpdateContact
s {$sel:unsubscribeAll:UpdateContact' :: Maybe Bool
unsubscribeAll = Maybe Bool
a} :: UpdateContact)

-- | The name of the contact list.
updateContact_contactListName :: Lens.Lens' UpdateContact Prelude.Text
updateContact_contactListName :: Lens' UpdateContact Text
updateContact_contactListName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateContact' {Text
contactListName :: Text
$sel:contactListName:UpdateContact' :: UpdateContact -> Text
contactListName} -> Text
contactListName) (\s :: UpdateContact
s@UpdateContact' {} Text
a -> UpdateContact
s {$sel:contactListName:UpdateContact' :: Text
contactListName = Text
a} :: UpdateContact)

-- | The contact\'s email addres.
updateContact_emailAddress :: Lens.Lens' UpdateContact Prelude.Text
updateContact_emailAddress :: Lens' UpdateContact Text
updateContact_emailAddress = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateContact' {Text
emailAddress :: Text
$sel:emailAddress:UpdateContact' :: UpdateContact -> Text
emailAddress} -> Text
emailAddress) (\s :: UpdateContact
s@UpdateContact' {} Text
a -> UpdateContact
s {$sel:emailAddress:UpdateContact' :: Text
emailAddress = Text
a} :: UpdateContact)

instance Core.AWSRequest UpdateContact where
  type
    AWSResponse UpdateContact =
      UpdateContactResponse
  request :: (Service -> Service) -> UpdateContact -> Request UpdateContact
request Service -> Service
overrides =
    forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.putJSON (Service -> Service
overrides Service
defaultService)
  response :: forall (m :: * -> *).
MonadResource m =>
(ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy UpdateContact
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse UpdateContact)))
response =
    forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> (ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
      ( \Int
s ResponseHeaders
h ()
x ->
          Int -> UpdateContactResponse
UpdateContactResponse'
            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 UpdateContact where
  hashWithSalt :: Int -> UpdateContact -> Int
hashWithSalt Int
_salt UpdateContact' {Maybe Bool
Maybe [TopicPreference]
Maybe Text
Text
emailAddress :: Text
contactListName :: Text
unsubscribeAll :: Maybe Bool
topicPreferences :: Maybe [TopicPreference]
attributesData :: Maybe Text
$sel:emailAddress:UpdateContact' :: UpdateContact -> Text
$sel:contactListName:UpdateContact' :: UpdateContact -> Text
$sel:unsubscribeAll:UpdateContact' :: UpdateContact -> Maybe Bool
$sel:topicPreferences:UpdateContact' :: UpdateContact -> Maybe [TopicPreference]
$sel:attributesData:UpdateContact' :: UpdateContact -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
attributesData
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe [TopicPreference]
topicPreferences
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Bool
unsubscribeAll
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
contactListName
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
emailAddress

instance Prelude.NFData UpdateContact where
  rnf :: UpdateContact -> ()
rnf UpdateContact' {Maybe Bool
Maybe [TopicPreference]
Maybe Text
Text
emailAddress :: Text
contactListName :: Text
unsubscribeAll :: Maybe Bool
topicPreferences :: Maybe [TopicPreference]
attributesData :: Maybe Text
$sel:emailAddress:UpdateContact' :: UpdateContact -> Text
$sel:contactListName:UpdateContact' :: UpdateContact -> Text
$sel:unsubscribeAll:UpdateContact' :: UpdateContact -> Maybe Bool
$sel:topicPreferences:UpdateContact' :: UpdateContact -> Maybe [TopicPreference]
$sel:attributesData:UpdateContact' :: UpdateContact -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
attributesData
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe [TopicPreference]
topicPreferences
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Bool
unsubscribeAll
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
contactListName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
emailAddress

instance Data.ToHeaders UpdateContact where
  toHeaders :: UpdateContact -> ResponseHeaders
toHeaders =
    forall a b. a -> b -> a
Prelude.const
      ( forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ HeaderName
"Content-Type"
              forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Data.=# ( ByteString
"application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

instance Data.ToJSON UpdateContact where
  toJSON :: UpdateContact -> Value
toJSON UpdateContact' {Maybe Bool
Maybe [TopicPreference]
Maybe Text
Text
emailAddress :: Text
contactListName :: Text
unsubscribeAll :: Maybe Bool
topicPreferences :: Maybe [TopicPreference]
attributesData :: Maybe Text
$sel:emailAddress:UpdateContact' :: UpdateContact -> Text
$sel:contactListName:UpdateContact' :: UpdateContact -> Text
$sel:unsubscribeAll:UpdateContact' :: UpdateContact -> Maybe Bool
$sel:topicPreferences:UpdateContact' :: UpdateContact -> Maybe [TopicPreference]
$sel:attributesData:UpdateContact' :: UpdateContact -> Maybe Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Key
"AttributesData" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=)
              forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
attributesData,
            (Key
"TopicPreferences" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=)
              forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [TopicPreference]
topicPreferences,
            (Key
"UnsubscribeAll" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=)
              forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Bool
unsubscribeAll
          ]
      )

instance Data.ToPath UpdateContact where
  toPath :: UpdateContact -> ByteString
toPath UpdateContact' {Maybe Bool
Maybe [TopicPreference]
Maybe Text
Text
emailAddress :: Text
contactListName :: Text
unsubscribeAll :: Maybe Bool
topicPreferences :: Maybe [TopicPreference]
attributesData :: Maybe Text
$sel:emailAddress:UpdateContact' :: UpdateContact -> Text
$sel:contactListName:UpdateContact' :: UpdateContact -> Text
$sel:unsubscribeAll:UpdateContact' :: UpdateContact -> Maybe Bool
$sel:topicPreferences:UpdateContact' :: UpdateContact -> Maybe [TopicPreference]
$sel:attributesData:UpdateContact' :: UpdateContact -> Maybe Text
..} =
    forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ ByteString
"/v2/email/contact-lists/",
        forall a. ToByteString a => a -> ByteString
Data.toBS Text
contactListName,
        ByteString
"/contacts/",
        forall a. ToByteString a => a -> ByteString
Data.toBS Text
emailAddress
      ]

instance Data.ToQuery UpdateContact where
  toQuery :: UpdateContact -> QueryString
toQuery = forall a b. a -> b -> a
Prelude.const forall a. Monoid a => a
Prelude.mempty

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

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

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

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