{-# 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.Account.PutAlternateContact
(
PutAlternateContact (..),
newPutAlternateContact,
putAlternateContact_accountId,
putAlternateContact_alternateContactType,
putAlternateContact_emailAddress,
putAlternateContact_name,
putAlternateContact_phoneNumber,
putAlternateContact_title,
PutAlternateContactResponse (..),
newPutAlternateContactResponse,
)
where
import Amazonka.Account.Types
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
data PutAlternateContact = PutAlternateContact'
{
PutAlternateContact -> Maybe Text
accountId :: Prelude.Maybe Prelude.Text,
PutAlternateContact -> AlternateContactType
alternateContactType :: AlternateContactType,
PutAlternateContact -> Sensitive Text
emailAddress :: Core.Sensitive Prelude.Text,
PutAlternateContact -> Sensitive Text
name :: Core.Sensitive Prelude.Text,
PutAlternateContact -> Sensitive Text
phoneNumber :: Core.Sensitive Prelude.Text,
PutAlternateContact -> Sensitive Text
title :: Core.Sensitive Prelude.Text
}
deriving (PutAlternateContact -> PutAlternateContact -> Bool
(PutAlternateContact -> PutAlternateContact -> Bool)
-> (PutAlternateContact -> PutAlternateContact -> Bool)
-> Eq PutAlternateContact
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: PutAlternateContact -> PutAlternateContact -> Bool
$c/= :: PutAlternateContact -> PutAlternateContact -> Bool
== :: PutAlternateContact -> PutAlternateContact -> Bool
$c== :: PutAlternateContact -> PutAlternateContact -> Bool
Prelude.Eq, Int -> PutAlternateContact -> ShowS
[PutAlternateContact] -> ShowS
PutAlternateContact -> String
(Int -> PutAlternateContact -> ShowS)
-> (PutAlternateContact -> String)
-> ([PutAlternateContact] -> ShowS)
-> Show PutAlternateContact
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [PutAlternateContact] -> ShowS
$cshowList :: [PutAlternateContact] -> ShowS
show :: PutAlternateContact -> String
$cshow :: PutAlternateContact -> String
showsPrec :: Int -> PutAlternateContact -> ShowS
$cshowsPrec :: Int -> PutAlternateContact -> ShowS
Prelude.Show, (forall x. PutAlternateContact -> Rep PutAlternateContact x)
-> (forall x. Rep PutAlternateContact x -> PutAlternateContact)
-> Generic PutAlternateContact
forall x. Rep PutAlternateContact x -> PutAlternateContact
forall x. PutAlternateContact -> Rep PutAlternateContact x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep PutAlternateContact x -> PutAlternateContact
$cfrom :: forall x. PutAlternateContact -> Rep PutAlternateContact x
Prelude.Generic)
newPutAlternateContact ::
AlternateContactType ->
Prelude.Text ->
Prelude.Text ->
Prelude.Text ->
Prelude.Text ->
PutAlternateContact
newPutAlternateContact :: AlternateContactType
-> Text -> Text -> Text -> Text -> PutAlternateContact
newPutAlternateContact
AlternateContactType
pAlternateContactType_
Text
pEmailAddress_
Text
pName_
Text
pPhoneNumber_
Text
pTitle_ =
PutAlternateContact' :: Maybe Text
-> AlternateContactType
-> Sensitive Text
-> Sensitive Text
-> Sensitive Text
-> Sensitive Text
-> PutAlternateContact
PutAlternateContact'
{ $sel:accountId:PutAlternateContact' :: Maybe Text
accountId = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:alternateContactType:PutAlternateContact' :: AlternateContactType
alternateContactType = AlternateContactType
pAlternateContactType_,
$sel:emailAddress:PutAlternateContact' :: Sensitive Text
emailAddress = Tagged Text (Identity Text)
-> Tagged (Sensitive Text) (Identity (Sensitive Text))
forall a. Iso' (Sensitive a) a
Core._Sensitive (Tagged Text (Identity Text)
-> Tagged (Sensitive Text) (Identity (Sensitive Text)))
-> Text -> Sensitive Text
forall t b. AReview t b -> b -> t
Lens.# Text
pEmailAddress_,
$sel:name:PutAlternateContact' :: Sensitive Text
name = Tagged Text (Identity Text)
-> Tagged (Sensitive Text) (Identity (Sensitive Text))
forall a. Iso' (Sensitive a) a
Core._Sensitive (Tagged Text (Identity Text)
-> Tagged (Sensitive Text) (Identity (Sensitive Text)))
-> Text -> Sensitive Text
forall t b. AReview t b -> b -> t
Lens.# Text
pName_,
$sel:phoneNumber:PutAlternateContact' :: Sensitive Text
phoneNumber = Tagged Text (Identity Text)
-> Tagged (Sensitive Text) (Identity (Sensitive Text))
forall a. Iso' (Sensitive a) a
Core._Sensitive (Tagged Text (Identity Text)
-> Tagged (Sensitive Text) (Identity (Sensitive Text)))
-> Text -> Sensitive Text
forall t b. AReview t b -> b -> t
Lens.# Text
pPhoneNumber_,
$sel:title:PutAlternateContact' :: Sensitive Text
title = Tagged Text (Identity Text)
-> Tagged (Sensitive Text) (Identity (Sensitive Text))
forall a. Iso' (Sensitive a) a
Core._Sensitive (Tagged Text (Identity Text)
-> Tagged (Sensitive Text) (Identity (Sensitive Text)))
-> Text -> Sensitive Text
forall t b. AReview t b -> b -> t
Lens.# Text
pTitle_
}
putAlternateContact_accountId :: Lens.Lens' PutAlternateContact (Prelude.Maybe Prelude.Text)
putAlternateContact_accountId :: (Maybe Text -> f (Maybe Text))
-> PutAlternateContact -> f PutAlternateContact
putAlternateContact_accountId = (PutAlternateContact -> Maybe Text)
-> (PutAlternateContact -> Maybe Text -> PutAlternateContact)
-> Lens
PutAlternateContact PutAlternateContact (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\PutAlternateContact' {Maybe Text
accountId :: Maybe Text
$sel:accountId:PutAlternateContact' :: PutAlternateContact -> Maybe Text
accountId} -> Maybe Text
accountId) (\s :: PutAlternateContact
s@PutAlternateContact' {} Maybe Text
a -> PutAlternateContact
s {$sel:accountId:PutAlternateContact' :: Maybe Text
accountId = Maybe Text
a} :: PutAlternateContact)
putAlternateContact_alternateContactType :: Lens.Lens' PutAlternateContact AlternateContactType
putAlternateContact_alternateContactType :: (AlternateContactType -> f AlternateContactType)
-> PutAlternateContact -> f PutAlternateContact
putAlternateContact_alternateContactType = (PutAlternateContact -> AlternateContactType)
-> (PutAlternateContact
-> AlternateContactType -> PutAlternateContact)
-> Lens
PutAlternateContact
PutAlternateContact
AlternateContactType
AlternateContactType
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\PutAlternateContact' {AlternateContactType
alternateContactType :: AlternateContactType
$sel:alternateContactType:PutAlternateContact' :: PutAlternateContact -> AlternateContactType
alternateContactType} -> AlternateContactType
alternateContactType) (\s :: PutAlternateContact
s@PutAlternateContact' {} AlternateContactType
a -> PutAlternateContact
s {$sel:alternateContactType:PutAlternateContact' :: AlternateContactType
alternateContactType = AlternateContactType
a} :: PutAlternateContact)
putAlternateContact_emailAddress :: Lens.Lens' PutAlternateContact Prelude.Text
putAlternateContact_emailAddress :: (Text -> f Text) -> PutAlternateContact -> f PutAlternateContact
putAlternateContact_emailAddress = (PutAlternateContact -> Sensitive Text)
-> (PutAlternateContact -> Sensitive Text -> PutAlternateContact)
-> Lens
PutAlternateContact
PutAlternateContact
(Sensitive Text)
(Sensitive Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\PutAlternateContact' {Sensitive Text
emailAddress :: Sensitive Text
$sel:emailAddress:PutAlternateContact' :: PutAlternateContact -> Sensitive Text
emailAddress} -> Sensitive Text
emailAddress) (\s :: PutAlternateContact
s@PutAlternateContact' {} Sensitive Text
a -> PutAlternateContact
s {$sel:emailAddress:PutAlternateContact' :: Sensitive Text
emailAddress = Sensitive Text
a} :: PutAlternateContact) ((Sensitive Text -> f (Sensitive Text))
-> PutAlternateContact -> f PutAlternateContact)
-> ((Text -> f Text) -> Sensitive Text -> f (Sensitive Text))
-> (Text -> f Text)
-> PutAlternateContact
-> f PutAlternateContact
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (Text -> f Text) -> Sensitive Text -> f (Sensitive Text)
forall a. Iso' (Sensitive a) a
Core._Sensitive
putAlternateContact_name :: Lens.Lens' PutAlternateContact Prelude.Text
putAlternateContact_name :: (Text -> f Text) -> PutAlternateContact -> f PutAlternateContact
putAlternateContact_name = (PutAlternateContact -> Sensitive Text)
-> (PutAlternateContact -> Sensitive Text -> PutAlternateContact)
-> Lens
PutAlternateContact
PutAlternateContact
(Sensitive Text)
(Sensitive Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\PutAlternateContact' {Sensitive Text
name :: Sensitive Text
$sel:name:PutAlternateContact' :: PutAlternateContact -> Sensitive Text
name} -> Sensitive Text
name) (\s :: PutAlternateContact
s@PutAlternateContact' {} Sensitive Text
a -> PutAlternateContact
s {$sel:name:PutAlternateContact' :: Sensitive Text
name = Sensitive Text
a} :: PutAlternateContact) ((Sensitive Text -> f (Sensitive Text))
-> PutAlternateContact -> f PutAlternateContact)
-> ((Text -> f Text) -> Sensitive Text -> f (Sensitive Text))
-> (Text -> f Text)
-> PutAlternateContact
-> f PutAlternateContact
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (Text -> f Text) -> Sensitive Text -> f (Sensitive Text)
forall a. Iso' (Sensitive a) a
Core._Sensitive
putAlternateContact_phoneNumber :: Lens.Lens' PutAlternateContact Prelude.Text
putAlternateContact_phoneNumber :: (Text -> f Text) -> PutAlternateContact -> f PutAlternateContact
putAlternateContact_phoneNumber = (PutAlternateContact -> Sensitive Text)
-> (PutAlternateContact -> Sensitive Text -> PutAlternateContact)
-> Lens
PutAlternateContact
PutAlternateContact
(Sensitive Text)
(Sensitive Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\PutAlternateContact' {Sensitive Text
phoneNumber :: Sensitive Text
$sel:phoneNumber:PutAlternateContact' :: PutAlternateContact -> Sensitive Text
phoneNumber} -> Sensitive Text
phoneNumber) (\s :: PutAlternateContact
s@PutAlternateContact' {} Sensitive Text
a -> PutAlternateContact
s {$sel:phoneNumber:PutAlternateContact' :: Sensitive Text
phoneNumber = Sensitive Text
a} :: PutAlternateContact) ((Sensitive Text -> f (Sensitive Text))
-> PutAlternateContact -> f PutAlternateContact)
-> ((Text -> f Text) -> Sensitive Text -> f (Sensitive Text))
-> (Text -> f Text)
-> PutAlternateContact
-> f PutAlternateContact
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (Text -> f Text) -> Sensitive Text -> f (Sensitive Text)
forall a. Iso' (Sensitive a) a
Core._Sensitive
putAlternateContact_title :: Lens.Lens' PutAlternateContact Prelude.Text
putAlternateContact_title :: (Text -> f Text) -> PutAlternateContact -> f PutAlternateContact
putAlternateContact_title = (PutAlternateContact -> Sensitive Text)
-> (PutAlternateContact -> Sensitive Text -> PutAlternateContact)
-> Lens
PutAlternateContact
PutAlternateContact
(Sensitive Text)
(Sensitive Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\PutAlternateContact' {Sensitive Text
title :: Sensitive Text
$sel:title:PutAlternateContact' :: PutAlternateContact -> Sensitive Text
title} -> Sensitive Text
title) (\s :: PutAlternateContact
s@PutAlternateContact' {} Sensitive Text
a -> PutAlternateContact
s {$sel:title:PutAlternateContact' :: Sensitive Text
title = Sensitive Text
a} :: PutAlternateContact) ((Sensitive Text -> f (Sensitive Text))
-> PutAlternateContact -> f PutAlternateContact)
-> ((Text -> f Text) -> Sensitive Text -> f (Sensitive Text))
-> (Text -> f Text)
-> PutAlternateContact
-> f PutAlternateContact
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (Text -> f Text) -> Sensitive Text -> f (Sensitive Text)
forall a. Iso' (Sensitive a) a
Core._Sensitive
instance Core.AWSRequest PutAlternateContact where
type
AWSResponse PutAlternateContact =
PutAlternateContactResponse
request :: PutAlternateContact -> Request PutAlternateContact
request = Service -> PutAlternateContact -> Request PutAlternateContact
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy PutAlternateContact
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse PutAlternateContact)))
response =
AWSResponse PutAlternateContact
-> Logger
-> Service
-> Proxy PutAlternateContact
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse PutAlternateContact)))
forall (m :: * -> *) a.
MonadResource m =>
AWSResponse a
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveNull AWSResponse PutAlternateContact
PutAlternateContactResponse
PutAlternateContactResponse'
instance Prelude.Hashable PutAlternateContact
instance Prelude.NFData PutAlternateContact
instance Core.ToHeaders PutAlternateContact where
toHeaders :: PutAlternateContact -> [Header]
toHeaders =
[Header] -> PutAlternateContact -> [Header]
forall a b. a -> b -> a
Prelude.const
( [[Header]] -> [Header]
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ HeaderName
"Content-Type"
HeaderName -> ByteString -> [Header]
forall a. ToHeader a => HeaderName -> a -> [Header]
Core.=# ( ByteString
"application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Core.ToJSON PutAlternateContact where
toJSON :: PutAlternateContact -> Value
toJSON PutAlternateContact' {Maybe Text
Sensitive Text
AlternateContactType
title :: Sensitive Text
phoneNumber :: Sensitive Text
name :: Sensitive Text
emailAddress :: Sensitive Text
alternateContactType :: AlternateContactType
accountId :: Maybe Text
$sel:title:PutAlternateContact' :: PutAlternateContact -> Sensitive Text
$sel:phoneNumber:PutAlternateContact' :: PutAlternateContact -> Sensitive Text
$sel:name:PutAlternateContact' :: PutAlternateContact -> Sensitive Text
$sel:emailAddress:PutAlternateContact' :: PutAlternateContact -> Sensitive Text
$sel:alternateContactType:PutAlternateContact' :: PutAlternateContact -> AlternateContactType
$sel:accountId:PutAlternateContact' :: PutAlternateContact -> Maybe Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"AccountId" 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
accountId,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
( Text
"AlternateContactType"
Text -> AlternateContactType -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= AlternateContactType
alternateContactType
),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"EmailAddress" Text -> Sensitive Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Sensitive Text
emailAddress),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Name" Text -> Sensitive Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Sensitive Text
name),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"PhoneNumber" Text -> Sensitive Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Sensitive Text
phoneNumber),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Title" Text -> Sensitive Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Sensitive Text
title)
]
)
instance Core.ToPath PutAlternateContact where
toPath :: PutAlternateContact -> ByteString
toPath = ByteString -> PutAlternateContact -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/putAlternateContact"
instance Core.ToQuery PutAlternateContact where
toQuery :: PutAlternateContact -> QueryString
toQuery = QueryString -> PutAlternateContact -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data PutAlternateContactResponse = PutAlternateContactResponse'
{
}
deriving (PutAlternateContactResponse -> PutAlternateContactResponse -> Bool
(PutAlternateContactResponse
-> PutAlternateContactResponse -> Bool)
-> (PutAlternateContactResponse
-> PutAlternateContactResponse -> Bool)
-> Eq PutAlternateContactResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: PutAlternateContactResponse -> PutAlternateContactResponse -> Bool
$c/= :: PutAlternateContactResponse -> PutAlternateContactResponse -> Bool
== :: PutAlternateContactResponse -> PutAlternateContactResponse -> Bool
$c== :: PutAlternateContactResponse -> PutAlternateContactResponse -> Bool
Prelude.Eq, ReadPrec [PutAlternateContactResponse]
ReadPrec PutAlternateContactResponse
Int -> ReadS PutAlternateContactResponse
ReadS [PutAlternateContactResponse]
(Int -> ReadS PutAlternateContactResponse)
-> ReadS [PutAlternateContactResponse]
-> ReadPrec PutAlternateContactResponse
-> ReadPrec [PutAlternateContactResponse]
-> Read PutAlternateContactResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [PutAlternateContactResponse]
$creadListPrec :: ReadPrec [PutAlternateContactResponse]
readPrec :: ReadPrec PutAlternateContactResponse
$creadPrec :: ReadPrec PutAlternateContactResponse
readList :: ReadS [PutAlternateContactResponse]
$creadList :: ReadS [PutAlternateContactResponse]
readsPrec :: Int -> ReadS PutAlternateContactResponse
$creadsPrec :: Int -> ReadS PutAlternateContactResponse
Prelude.Read, Int -> PutAlternateContactResponse -> ShowS
[PutAlternateContactResponse] -> ShowS
PutAlternateContactResponse -> String
(Int -> PutAlternateContactResponse -> ShowS)
-> (PutAlternateContactResponse -> String)
-> ([PutAlternateContactResponse] -> ShowS)
-> Show PutAlternateContactResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [PutAlternateContactResponse] -> ShowS
$cshowList :: [PutAlternateContactResponse] -> ShowS
show :: PutAlternateContactResponse -> String
$cshow :: PutAlternateContactResponse -> String
showsPrec :: Int -> PutAlternateContactResponse -> ShowS
$cshowsPrec :: Int -> PutAlternateContactResponse -> ShowS
Prelude.Show, (forall x.
PutAlternateContactResponse -> Rep PutAlternateContactResponse x)
-> (forall x.
Rep PutAlternateContactResponse x -> PutAlternateContactResponse)
-> Generic PutAlternateContactResponse
forall x.
Rep PutAlternateContactResponse x -> PutAlternateContactResponse
forall x.
PutAlternateContactResponse -> Rep PutAlternateContactResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep PutAlternateContactResponse x -> PutAlternateContactResponse
$cfrom :: forall x.
PutAlternateContactResponse -> Rep PutAlternateContactResponse x
Prelude.Generic)
newPutAlternateContactResponse ::
PutAlternateContactResponse
newPutAlternateContactResponse :: PutAlternateContactResponse
newPutAlternateContactResponse =
PutAlternateContactResponse
PutAlternateContactResponse'
instance Prelude.NFData PutAlternateContactResponse