{-# 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.Connect.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)
--
-- This API is in preview release for Amazon Connect and is subject to
-- change.
--
-- Adds or updates user-defined contact information associated with the
-- specified contact. At least one field to be updated must be present in
-- the request.
--
-- You can add or update user-defined contact information for both ongoing
-- and completed contacts.
module Amazonka.Connect.UpdateContact
  ( -- * Creating a Request
    UpdateContact (..),
    newUpdateContact,

    -- * Request Lenses
    updateContact_description,
    updateContact_name,
    updateContact_references,
    updateContact_instanceId,
    updateContact_contactId,

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

    -- * Response Lenses
    updateContactResponse_httpStatus,
  )
where

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

-- | /See:/ 'newUpdateContact' smart constructor.
data UpdateContact = UpdateContact'
  { -- | The description of the contact.
    UpdateContact -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
    -- | The name of the contact.
    UpdateContact -> Maybe Text
name :: Prelude.Maybe Prelude.Text,
    -- | Well-formed data on contact, shown to agents on Contact Control Panel
    -- (CCP).
    UpdateContact -> Maybe (HashMap Text Reference)
references :: Prelude.Maybe (Prelude.HashMap Prelude.Text Reference),
    -- | The identifier of the Amazon Connect instance. You can find the
    -- instanceId in the ARN of the instance.
    UpdateContact -> Text
instanceId :: Prelude.Text,
    -- | The identifier of the contact. This is the identifier of the contact
    -- associated with the first interaction with your contact center.
    UpdateContact -> Text
contactId :: 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:
--
-- 'description', 'updateContact_description' - The description of the contact.
--
-- 'name', 'updateContact_name' - The name of the contact.
--
-- 'references', 'updateContact_references' - Well-formed data on contact, shown to agents on Contact Control Panel
-- (CCP).
--
-- 'instanceId', 'updateContact_instanceId' - The identifier of the Amazon Connect instance. You can find the
-- instanceId in the ARN of the instance.
--
-- 'contactId', 'updateContact_contactId' - The identifier of the contact. This is the identifier of the contact
-- associated with the first interaction with your contact center.
newUpdateContact ::
  -- | 'instanceId'
  Prelude.Text ->
  -- | 'contactId'
  Prelude.Text ->
  UpdateContact
newUpdateContact :: Text -> Text -> UpdateContact
newUpdateContact Text
pInstanceId_ Text
pContactId_ =
  UpdateContact'
    { $sel:description:UpdateContact' :: Maybe Text
description = forall a. Maybe a
Prelude.Nothing,
      $sel:name:UpdateContact' :: Maybe Text
name = forall a. Maybe a
Prelude.Nothing,
      $sel:references:UpdateContact' :: Maybe (HashMap Text Reference)
references = forall a. Maybe a
Prelude.Nothing,
      $sel:instanceId:UpdateContact' :: Text
instanceId = Text
pInstanceId_,
      $sel:contactId:UpdateContact' :: Text
contactId = Text
pContactId_
    }

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

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

-- | Well-formed data on contact, shown to agents on Contact Control Panel
-- (CCP).
updateContact_references :: Lens.Lens' UpdateContact (Prelude.Maybe (Prelude.HashMap Prelude.Text Reference))
updateContact_references :: Lens' UpdateContact (Maybe (HashMap Text Reference))
updateContact_references = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateContact' {Maybe (HashMap Text Reference)
references :: Maybe (HashMap Text Reference)
$sel:references:UpdateContact' :: UpdateContact -> Maybe (HashMap Text Reference)
references} -> Maybe (HashMap Text Reference)
references) (\s :: UpdateContact
s@UpdateContact' {} Maybe (HashMap Text Reference)
a -> UpdateContact
s {$sel:references:UpdateContact' :: Maybe (HashMap Text Reference)
references = Maybe (HashMap Text Reference)
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

-- | The identifier of the Amazon Connect instance. You can find the
-- instanceId in the ARN of the instance.
updateContact_instanceId :: Lens.Lens' UpdateContact Prelude.Text
updateContact_instanceId :: Lens' UpdateContact Text
updateContact_instanceId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateContact' {Text
instanceId :: Text
$sel:instanceId:UpdateContact' :: UpdateContact -> Text
instanceId} -> Text
instanceId) (\s :: UpdateContact
s@UpdateContact' {} Text
a -> UpdateContact
s {$sel:instanceId:UpdateContact' :: Text
instanceId = Text
a} :: UpdateContact)

-- | The identifier of the contact. This is the identifier of the contact
-- associated with the first interaction with your contact center.
updateContact_contactId :: Lens.Lens' UpdateContact Prelude.Text
updateContact_contactId :: Lens' UpdateContact Text
updateContact_contactId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateContact' {Text
contactId :: Text
$sel:contactId:UpdateContact' :: UpdateContact -> Text
contactId} -> Text
contactId) (\s :: UpdateContact
s@UpdateContact' {} Text
a -> UpdateContact
s {$sel:contactId:UpdateContact' :: Text
contactId = 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.postJSON (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 Text
Maybe (HashMap Text Reference)
Text
contactId :: Text
instanceId :: Text
references :: Maybe (HashMap Text Reference)
name :: Maybe Text
description :: Maybe Text
$sel:contactId:UpdateContact' :: UpdateContact -> Text
$sel:instanceId:UpdateContact' :: UpdateContact -> Text
$sel:references:UpdateContact' :: UpdateContact -> Maybe (HashMap Text Reference)
$sel:name:UpdateContact' :: UpdateContact -> Maybe Text
$sel:description:UpdateContact' :: UpdateContact -> 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
name
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe (HashMap Text Reference)
references
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
instanceId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
contactId

instance Prelude.NFData UpdateContact where
  rnf :: UpdateContact -> ()
rnf UpdateContact' {Maybe Text
Maybe (HashMap Text Reference)
Text
contactId :: Text
instanceId :: Text
references :: Maybe (HashMap Text Reference)
name :: Maybe Text
description :: Maybe Text
$sel:contactId:UpdateContact' :: UpdateContact -> Text
$sel:instanceId:UpdateContact' :: UpdateContact -> Text
$sel:references:UpdateContact' :: UpdateContact -> Maybe (HashMap Text Reference)
$sel:name:UpdateContact' :: UpdateContact -> Maybe Text
$sel:description:UpdateContact' :: UpdateContact -> 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
name
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe (HashMap Text Reference)
references
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
instanceId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
contactId

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 Text
Maybe (HashMap Text Reference)
Text
contactId :: Text
instanceId :: Text
references :: Maybe (HashMap Text Reference)
name :: Maybe Text
description :: Maybe Text
$sel:contactId:UpdateContact' :: UpdateContact -> Text
$sel:instanceId:UpdateContact' :: UpdateContact -> Text
$sel:references:UpdateContact' :: UpdateContact -> Maybe (HashMap Text Reference)
$sel:name:UpdateContact' :: UpdateContact -> Maybe Text
$sel:description:UpdateContact' :: UpdateContact -> Maybe Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Key
"Description" 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
description,
            (Key
"Name" 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
name,
            (Key
"References" 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 (HashMap Text Reference)
references
          ]
      )

instance Data.ToPath UpdateContact where
  toPath :: UpdateContact -> ByteString
toPath UpdateContact' {Maybe Text
Maybe (HashMap Text Reference)
Text
contactId :: Text
instanceId :: Text
references :: Maybe (HashMap Text Reference)
name :: Maybe Text
description :: Maybe Text
$sel:contactId:UpdateContact' :: UpdateContact -> Text
$sel:instanceId:UpdateContact' :: UpdateContact -> Text
$sel:references:UpdateContact' :: UpdateContact -> Maybe (HashMap Text Reference)
$sel:name:UpdateContact' :: UpdateContact -> Maybe Text
$sel:description:UpdateContact' :: UpdateContact -> Maybe Text
..} =
    forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ ByteString
"/contacts/",
        forall a. ToByteString a => a -> ByteString
Data.toBS Text
instanceId,
        ByteString
"/",
        forall a. ToByteString a => a -> ByteString
Data.toBS Text
contactId
      ]

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