{-# 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 #-}
module Amazonka.SSMContacts.UpdateContact
(
UpdateContact (..),
newUpdateContact,
updateContact_plan,
updateContact_displayName,
updateContact_contactId,
UpdateContactResponse (..),
newUpdateContactResponse,
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
data UpdateContact = UpdateContact'
{
UpdateContact -> Maybe Plan
plan :: Prelude.Maybe Plan,
UpdateContact -> Maybe Text
displayName :: Prelude.Maybe Prelude.Text,
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)
newUpdateContact ::
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_
}
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)
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)
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
data UpdateContactResponse = UpdateContactResponse'
{
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)
newUpdateContactResponse ::
Prelude.Int ->
UpdateContactResponse
newUpdateContactResponse :: Int -> UpdateContactResponse
newUpdateContactResponse Int
pHttpStatus_ =
UpdateContactResponse' :: Int -> UpdateContactResponse
UpdateContactResponse' {$sel:httpStatus:UpdateContactResponse' :: Int
httpStatus = Int
pHttpStatus_}
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