{-# 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.KMS.UpdatePrimaryRegion
(
UpdatePrimaryRegion (..),
newUpdatePrimaryRegion,
updatePrimaryRegion_keyId,
updatePrimaryRegion_primaryRegion,
UpdatePrimaryRegionResponse (..),
newUpdatePrimaryRegionResponse,
)
where
import qualified Amazonka.Core as Core
import Amazonka.KMS.Types
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 UpdatePrimaryRegion = UpdatePrimaryRegion'
{
UpdatePrimaryRegion -> Text
keyId :: Prelude.Text,
UpdatePrimaryRegion -> Text
primaryRegion :: Prelude.Text
}
deriving (UpdatePrimaryRegion -> UpdatePrimaryRegion -> Bool
(UpdatePrimaryRegion -> UpdatePrimaryRegion -> Bool)
-> (UpdatePrimaryRegion -> UpdatePrimaryRegion -> Bool)
-> Eq UpdatePrimaryRegion
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdatePrimaryRegion -> UpdatePrimaryRegion -> Bool
$c/= :: UpdatePrimaryRegion -> UpdatePrimaryRegion -> Bool
== :: UpdatePrimaryRegion -> UpdatePrimaryRegion -> Bool
$c== :: UpdatePrimaryRegion -> UpdatePrimaryRegion -> Bool
Prelude.Eq, ReadPrec [UpdatePrimaryRegion]
ReadPrec UpdatePrimaryRegion
Int -> ReadS UpdatePrimaryRegion
ReadS [UpdatePrimaryRegion]
(Int -> ReadS UpdatePrimaryRegion)
-> ReadS [UpdatePrimaryRegion]
-> ReadPrec UpdatePrimaryRegion
-> ReadPrec [UpdatePrimaryRegion]
-> Read UpdatePrimaryRegion
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdatePrimaryRegion]
$creadListPrec :: ReadPrec [UpdatePrimaryRegion]
readPrec :: ReadPrec UpdatePrimaryRegion
$creadPrec :: ReadPrec UpdatePrimaryRegion
readList :: ReadS [UpdatePrimaryRegion]
$creadList :: ReadS [UpdatePrimaryRegion]
readsPrec :: Int -> ReadS UpdatePrimaryRegion
$creadsPrec :: Int -> ReadS UpdatePrimaryRegion
Prelude.Read, Int -> UpdatePrimaryRegion -> ShowS
[UpdatePrimaryRegion] -> ShowS
UpdatePrimaryRegion -> String
(Int -> UpdatePrimaryRegion -> ShowS)
-> (UpdatePrimaryRegion -> String)
-> ([UpdatePrimaryRegion] -> ShowS)
-> Show UpdatePrimaryRegion
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdatePrimaryRegion] -> ShowS
$cshowList :: [UpdatePrimaryRegion] -> ShowS
show :: UpdatePrimaryRegion -> String
$cshow :: UpdatePrimaryRegion -> String
showsPrec :: Int -> UpdatePrimaryRegion -> ShowS
$cshowsPrec :: Int -> UpdatePrimaryRegion -> ShowS
Prelude.Show, (forall x. UpdatePrimaryRegion -> Rep UpdatePrimaryRegion x)
-> (forall x. Rep UpdatePrimaryRegion x -> UpdatePrimaryRegion)
-> Generic UpdatePrimaryRegion
forall x. Rep UpdatePrimaryRegion x -> UpdatePrimaryRegion
forall x. UpdatePrimaryRegion -> Rep UpdatePrimaryRegion x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdatePrimaryRegion x -> UpdatePrimaryRegion
$cfrom :: forall x. UpdatePrimaryRegion -> Rep UpdatePrimaryRegion x
Prelude.Generic)
newUpdatePrimaryRegion ::
Prelude.Text ->
Prelude.Text ->
UpdatePrimaryRegion
newUpdatePrimaryRegion :: Text -> Text -> UpdatePrimaryRegion
newUpdatePrimaryRegion Text
pKeyId_ Text
pPrimaryRegion_ =
UpdatePrimaryRegion' :: Text -> Text -> UpdatePrimaryRegion
UpdatePrimaryRegion'
{ $sel:keyId:UpdatePrimaryRegion' :: Text
keyId = Text
pKeyId_,
$sel:primaryRegion:UpdatePrimaryRegion' :: Text
primaryRegion = Text
pPrimaryRegion_
}
updatePrimaryRegion_keyId :: Lens.Lens' UpdatePrimaryRegion Prelude.Text
updatePrimaryRegion_keyId :: (Text -> f Text) -> UpdatePrimaryRegion -> f UpdatePrimaryRegion
updatePrimaryRegion_keyId = (UpdatePrimaryRegion -> Text)
-> (UpdatePrimaryRegion -> Text -> UpdatePrimaryRegion)
-> Lens UpdatePrimaryRegion UpdatePrimaryRegion Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdatePrimaryRegion' {Text
keyId :: Text
$sel:keyId:UpdatePrimaryRegion' :: UpdatePrimaryRegion -> Text
keyId} -> Text
keyId) (\s :: UpdatePrimaryRegion
s@UpdatePrimaryRegion' {} Text
a -> UpdatePrimaryRegion
s {$sel:keyId:UpdatePrimaryRegion' :: Text
keyId = Text
a} :: UpdatePrimaryRegion)
updatePrimaryRegion_primaryRegion :: Lens.Lens' UpdatePrimaryRegion Prelude.Text
updatePrimaryRegion_primaryRegion :: (Text -> f Text) -> UpdatePrimaryRegion -> f UpdatePrimaryRegion
updatePrimaryRegion_primaryRegion = (UpdatePrimaryRegion -> Text)
-> (UpdatePrimaryRegion -> Text -> UpdatePrimaryRegion)
-> Lens UpdatePrimaryRegion UpdatePrimaryRegion Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdatePrimaryRegion' {Text
primaryRegion :: Text
$sel:primaryRegion:UpdatePrimaryRegion' :: UpdatePrimaryRegion -> Text
primaryRegion} -> Text
primaryRegion) (\s :: UpdatePrimaryRegion
s@UpdatePrimaryRegion' {} Text
a -> UpdatePrimaryRegion
s {$sel:primaryRegion:UpdatePrimaryRegion' :: Text
primaryRegion = Text
a} :: UpdatePrimaryRegion)
instance Core.AWSRequest UpdatePrimaryRegion where
type
AWSResponse UpdatePrimaryRegion =
UpdatePrimaryRegionResponse
request :: UpdatePrimaryRegion -> Request UpdatePrimaryRegion
request = Service -> UpdatePrimaryRegion -> Request UpdatePrimaryRegion
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy UpdatePrimaryRegion
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdatePrimaryRegion)))
response =
AWSResponse UpdatePrimaryRegion
-> Logger
-> Service
-> Proxy UpdatePrimaryRegion
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdatePrimaryRegion)))
forall (m :: * -> *) a.
MonadResource m =>
AWSResponse a
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveNull AWSResponse UpdatePrimaryRegion
UpdatePrimaryRegionResponse
UpdatePrimaryRegionResponse'
instance Prelude.Hashable UpdatePrimaryRegion
instance Prelude.NFData UpdatePrimaryRegion
instance Core.ToHeaders UpdatePrimaryRegion where
toHeaders :: UpdatePrimaryRegion -> [Header]
toHeaders =
[Header] -> UpdatePrimaryRegion -> [Header]
forall a b. a -> b -> a
Prelude.const
( [[Header]] -> [Header]
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ HeaderName
"X-Amz-Target"
HeaderName -> ByteString -> [Header]
forall a. ToHeader a => HeaderName -> a -> [Header]
Core.=# ( ByteString
"TrentService.UpdatePrimaryRegion" ::
Prelude.ByteString
),
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 UpdatePrimaryRegion where
toJSON :: UpdatePrimaryRegion -> Value
toJSON UpdatePrimaryRegion' {Text
primaryRegion :: Text
keyId :: Text
$sel:primaryRegion:UpdatePrimaryRegion' :: UpdatePrimaryRegion -> Text
$sel:keyId:UpdatePrimaryRegion' :: UpdatePrimaryRegion -> Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"KeyId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
keyId),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
(Text
"PrimaryRegion" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
primaryRegion)
]
)
instance Core.ToPath UpdatePrimaryRegion where
toPath :: UpdatePrimaryRegion -> ByteString
toPath = ByteString -> UpdatePrimaryRegion -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery UpdatePrimaryRegion where
toQuery :: UpdatePrimaryRegion -> QueryString
toQuery = QueryString -> UpdatePrimaryRegion -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data UpdatePrimaryRegionResponse = UpdatePrimaryRegionResponse'
{
}
deriving (UpdatePrimaryRegionResponse -> UpdatePrimaryRegionResponse -> Bool
(UpdatePrimaryRegionResponse
-> UpdatePrimaryRegionResponse -> Bool)
-> (UpdatePrimaryRegionResponse
-> UpdatePrimaryRegionResponse -> Bool)
-> Eq UpdatePrimaryRegionResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdatePrimaryRegionResponse -> UpdatePrimaryRegionResponse -> Bool
$c/= :: UpdatePrimaryRegionResponse -> UpdatePrimaryRegionResponse -> Bool
== :: UpdatePrimaryRegionResponse -> UpdatePrimaryRegionResponse -> Bool
$c== :: UpdatePrimaryRegionResponse -> UpdatePrimaryRegionResponse -> Bool
Prelude.Eq, ReadPrec [UpdatePrimaryRegionResponse]
ReadPrec UpdatePrimaryRegionResponse
Int -> ReadS UpdatePrimaryRegionResponse
ReadS [UpdatePrimaryRegionResponse]
(Int -> ReadS UpdatePrimaryRegionResponse)
-> ReadS [UpdatePrimaryRegionResponse]
-> ReadPrec UpdatePrimaryRegionResponse
-> ReadPrec [UpdatePrimaryRegionResponse]
-> Read UpdatePrimaryRegionResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdatePrimaryRegionResponse]
$creadListPrec :: ReadPrec [UpdatePrimaryRegionResponse]
readPrec :: ReadPrec UpdatePrimaryRegionResponse
$creadPrec :: ReadPrec UpdatePrimaryRegionResponse
readList :: ReadS [UpdatePrimaryRegionResponse]
$creadList :: ReadS [UpdatePrimaryRegionResponse]
readsPrec :: Int -> ReadS UpdatePrimaryRegionResponse
$creadsPrec :: Int -> ReadS UpdatePrimaryRegionResponse
Prelude.Read, Int -> UpdatePrimaryRegionResponse -> ShowS
[UpdatePrimaryRegionResponse] -> ShowS
UpdatePrimaryRegionResponse -> String
(Int -> UpdatePrimaryRegionResponse -> ShowS)
-> (UpdatePrimaryRegionResponse -> String)
-> ([UpdatePrimaryRegionResponse] -> ShowS)
-> Show UpdatePrimaryRegionResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdatePrimaryRegionResponse] -> ShowS
$cshowList :: [UpdatePrimaryRegionResponse] -> ShowS
show :: UpdatePrimaryRegionResponse -> String
$cshow :: UpdatePrimaryRegionResponse -> String
showsPrec :: Int -> UpdatePrimaryRegionResponse -> ShowS
$cshowsPrec :: Int -> UpdatePrimaryRegionResponse -> ShowS
Prelude.Show, (forall x.
UpdatePrimaryRegionResponse -> Rep UpdatePrimaryRegionResponse x)
-> (forall x.
Rep UpdatePrimaryRegionResponse x -> UpdatePrimaryRegionResponse)
-> Generic UpdatePrimaryRegionResponse
forall x.
Rep UpdatePrimaryRegionResponse x -> UpdatePrimaryRegionResponse
forall x.
UpdatePrimaryRegionResponse -> Rep UpdatePrimaryRegionResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep UpdatePrimaryRegionResponse x -> UpdatePrimaryRegionResponse
$cfrom :: forall x.
UpdatePrimaryRegionResponse -> Rep UpdatePrimaryRegionResponse x
Prelude.Generic)
newUpdatePrimaryRegionResponse ::
UpdatePrimaryRegionResponse
newUpdatePrimaryRegionResponse :: UpdatePrimaryRegionResponse
newUpdatePrimaryRegionResponse =
UpdatePrimaryRegionResponse
UpdatePrimaryRegionResponse'
instance Prelude.NFData UpdatePrimaryRegionResponse