{-# 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.SSMContacts.UpdateContact
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Updates the contact or escalation plan specified.
module Amazonka.SSMContacts.UpdateContact
  ( -- * Creating a Request
    UpdateContact (..),
    newUpdateContact,

    -- * Request Lenses
    updateContact_plan,
    updateContact_displayName,
    updateContact_contactId,

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

    -- * Response Lenses
    updateContactResponse_httpStatus,
  )
where

import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
import Amazonka.SSMContacts.Types

-- | /See:/ 'newUpdateContact' smart constructor.
data UpdateContact = UpdateContact'
  { -- | A list of stages. A contact has an engagement plan with stages for
    -- specified contact channels. An escalation plan uses these stages to
    -- contact specified contacts.
    UpdateContact -> Maybe Plan
plan :: Prelude.Maybe Plan,
    -- | The full name of the contact or escalation plan.
    UpdateContact -> Maybe Text
displayName :: Prelude.Maybe Prelude.Text,
    -- | The Amazon Resource Name (ARN) of the contact or escalation plan you\'re
    -- updating.
    UpdateContact -> Text
contactId :: Prelude.Text
  }
  deriving (UpdateContact -> UpdateContact -> Bool
(UpdateContact -> UpdateContact -> Bool)
-> (UpdateContact -> UpdateContact -> Bool) -> Eq UpdateContact
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]
(Int -> ReadS UpdateContact)
-> ReadS [UpdateContact]
-> ReadPrec UpdateContact
-> ReadPrec [UpdateContact]
-> Read 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
(Int -> UpdateContact -> ShowS)
-> (UpdateContact -> String)
-> ([UpdateContact] -> ShowS)
-> Show UpdateContact
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. UpdateContact -> Rep UpdateContact x)
-> (forall x. Rep UpdateContact x -> UpdateContact)
-> Generic UpdateContact
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:
--
-- 'plan', 'updateContact_plan' - A list of stages. A contact has an engagement plan with stages for
-- specified contact channels. An escalation plan uses these stages to
-- contact specified contacts.
--
-- 'displayName', 'updateContact_displayName' - The full name of the contact or escalation plan.
--
-- 'contactId', 'updateContact_contactId' - The Amazon Resource Name (ARN) of the contact or escalation plan you\'re
-- updating.
newUpdateContact ::
  -- | 'contactId'
  Prelude.Text ->
  UpdateContact
newUpdateContact :: Text -> UpdateContact
newUpdateContact Text
pContactId_ =
  UpdateContact' :: Maybe Plan -> Maybe Text -> Text -> UpdateContact
UpdateContact'
    { $sel:plan:UpdateContact' :: Maybe Plan
plan = Maybe Plan
forall a. Maybe a
Prelude.Nothing,
      $sel:displayName:UpdateContact' :: Maybe Text
displayName = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:contactId:UpdateContact' :: Text
contactId = Text
pContactId_
    }

-- | A list of stages. A contact has an engagement plan with stages for
-- specified contact channels. An escalation plan uses these stages to
-- contact specified contacts.
updateContact_plan :: Lens.Lens' UpdateContact (Prelude.Maybe Plan)
updateContact_plan :: (Maybe Plan -> f (Maybe Plan)) -> UpdateContact -> f UpdateContact
updateContact_plan = (UpdateContact -> Maybe Plan)
-> (UpdateContact -> Maybe Plan -> UpdateContact)
-> Lens UpdateContact UpdateContact (Maybe Plan) (Maybe Plan)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateContact' {Maybe Plan
plan :: Maybe Plan
$sel:plan:UpdateContact' :: UpdateContact -> Maybe Plan
plan} -> Maybe Plan
plan) (\s :: UpdateContact
s@UpdateContact' {} Maybe Plan
a -> UpdateContact
s {$sel:plan:UpdateContact' :: Maybe Plan
plan = Maybe Plan
a} :: UpdateContact)

-- | The full name of the contact or escalation plan.
updateContact_displayName :: Lens.Lens' UpdateContact (Prelude.Maybe Prelude.Text)
updateContact_displayName :: (Maybe Text -> f (Maybe Text)) -> UpdateContact -> f UpdateContact
updateContact_displayName = (UpdateContact -> Maybe Text)
-> (UpdateContact -> Maybe Text -> UpdateContact)
-> Lens UpdateContact UpdateContact (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateContact' {Maybe Text
displayName :: Maybe Text
$sel:displayName:UpdateContact' :: UpdateContact -> Maybe Text
displayName} -> Maybe Text
displayName) (\s :: UpdateContact
s@UpdateContact' {} Maybe Text
a -> UpdateContact
s {$sel:displayName:UpdateContact' :: Maybe Text
displayName = Maybe Text
a} :: UpdateContact)

-- | The Amazon Resource Name (ARN) of the contact or escalation plan you\'re
-- updating.
updateContact_contactId :: Lens.Lens' UpdateContact Prelude.Text
updateContact_contactId :: (Text -> f Text) -> UpdateContact -> f UpdateContact
updateContact_contactId = (UpdateContact -> Text)
-> (UpdateContact -> Text -> UpdateContact)
-> Lens UpdateContact UpdateContact Text Text
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 :: UpdateContact -> Request UpdateContact
request = Service -> UpdateContact -> Request UpdateContact
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy UpdateContact
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse UpdateContact)))
response =
    (Int
 -> ResponseHeaders
 -> ()
 -> Either String (AWSResponse UpdateContact))
-> Logger
-> Service
-> Proxy UpdateContact
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse UpdateContact)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
      ( \Int
s ResponseHeaders
h ()
x ->
          Int -> UpdateContactResponse
UpdateContactResponse'
            (Int -> UpdateContactResponse)
-> Either String Int -> Either String UpdateContactResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Int -> Either String Int
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (Int -> Int
forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
      )

instance Prelude.Hashable UpdateContact

instance Prelude.NFData UpdateContact

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

instance Core.ToJSON UpdateContact where
  toJSON :: UpdateContact -> Value
toJSON UpdateContact' {Maybe Text
Maybe Plan
Text
contactId :: Text
displayName :: Maybe Text
plan :: Maybe Plan
$sel:contactId:UpdateContact' :: UpdateContact -> Text
$sel:displayName:UpdateContact' :: UpdateContact -> Maybe Text
$sel:plan:UpdateContact' :: UpdateContact -> Maybe Plan
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Text
"Plan" Text -> Plan -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Plan -> Pair) -> Maybe Plan -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Plan
plan,
            (Text
"DisplayName" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
displayName,
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"ContactId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
contactId)
          ]
      )

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

instance Core.ToQuery UpdateContact where
  toQuery :: UpdateContact -> QueryString
toQuery = QueryString -> UpdateContact -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
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
(UpdateContactResponse -> UpdateContactResponse -> Bool)
-> (UpdateContactResponse -> UpdateContactResponse -> Bool)
-> Eq UpdateContactResponse
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]
(Int -> ReadS UpdateContactResponse)
-> ReadS [UpdateContactResponse]
-> ReadPrec UpdateContactResponse
-> ReadPrec [UpdateContactResponse]
-> Read 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
(Int -> UpdateContactResponse -> ShowS)
-> (UpdateContactResponse -> String)
-> ([UpdateContactResponse] -> ShowS)
-> Show UpdateContactResponse
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. UpdateContactResponse -> Rep UpdateContactResponse x)
-> (forall x. Rep UpdateContactResponse x -> UpdateContactResponse)
-> Generic UpdateContactResponse
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' :: Int -> UpdateContactResponse
UpdateContactResponse' {$sel:httpStatus:UpdateContactResponse' :: Int
httpStatus = Int
pHttpStatus_}

-- | The response's http status code.
updateContactResponse_httpStatus :: Lens.Lens' UpdateContactResponse Prelude.Int
updateContactResponse_httpStatus :: (Int -> f Int) -> UpdateContactResponse -> f UpdateContactResponse
updateContactResponse_httpStatus = (UpdateContactResponse -> Int)
-> (UpdateContactResponse -> Int -> UpdateContactResponse)
-> Lens UpdateContactResponse UpdateContactResponse Int Int
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