{-# 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.CloudFront.CreatePublicKey
(
CreatePublicKey (..),
newCreatePublicKey,
createPublicKey_publicKeyConfig,
CreatePublicKeyResponse (..),
newCreatePublicKeyResponse,
createPublicKeyResponse_eTag,
createPublicKeyResponse_location,
createPublicKeyResponse_publicKey,
createPublicKeyResponse_httpStatus,
)
where
import Amazonka.CloudFront.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 CreatePublicKey = CreatePublicKey'
{
CreatePublicKey -> PublicKeyConfig
publicKeyConfig :: PublicKeyConfig
}
deriving (CreatePublicKey -> CreatePublicKey -> Bool
(CreatePublicKey -> CreatePublicKey -> Bool)
-> (CreatePublicKey -> CreatePublicKey -> Bool)
-> Eq CreatePublicKey
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreatePublicKey -> CreatePublicKey -> Bool
$c/= :: CreatePublicKey -> CreatePublicKey -> Bool
== :: CreatePublicKey -> CreatePublicKey -> Bool
$c== :: CreatePublicKey -> CreatePublicKey -> Bool
Prelude.Eq, ReadPrec [CreatePublicKey]
ReadPrec CreatePublicKey
Int -> ReadS CreatePublicKey
ReadS [CreatePublicKey]
(Int -> ReadS CreatePublicKey)
-> ReadS [CreatePublicKey]
-> ReadPrec CreatePublicKey
-> ReadPrec [CreatePublicKey]
-> Read CreatePublicKey
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreatePublicKey]
$creadListPrec :: ReadPrec [CreatePublicKey]
readPrec :: ReadPrec CreatePublicKey
$creadPrec :: ReadPrec CreatePublicKey
readList :: ReadS [CreatePublicKey]
$creadList :: ReadS [CreatePublicKey]
readsPrec :: Int -> ReadS CreatePublicKey
$creadsPrec :: Int -> ReadS CreatePublicKey
Prelude.Read, Int -> CreatePublicKey -> ShowS
[CreatePublicKey] -> ShowS
CreatePublicKey -> String
(Int -> CreatePublicKey -> ShowS)
-> (CreatePublicKey -> String)
-> ([CreatePublicKey] -> ShowS)
-> Show CreatePublicKey
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreatePublicKey] -> ShowS
$cshowList :: [CreatePublicKey] -> ShowS
show :: CreatePublicKey -> String
$cshow :: CreatePublicKey -> String
showsPrec :: Int -> CreatePublicKey -> ShowS
$cshowsPrec :: Int -> CreatePublicKey -> ShowS
Prelude.Show, (forall x. CreatePublicKey -> Rep CreatePublicKey x)
-> (forall x. Rep CreatePublicKey x -> CreatePublicKey)
-> Generic CreatePublicKey
forall x. Rep CreatePublicKey x -> CreatePublicKey
forall x. CreatePublicKey -> Rep CreatePublicKey x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreatePublicKey x -> CreatePublicKey
$cfrom :: forall x. CreatePublicKey -> Rep CreatePublicKey x
Prelude.Generic)
newCreatePublicKey ::
PublicKeyConfig ->
CreatePublicKey
newCreatePublicKey :: PublicKeyConfig -> CreatePublicKey
newCreatePublicKey PublicKeyConfig
pPublicKeyConfig_ =
CreatePublicKey' :: PublicKeyConfig -> CreatePublicKey
CreatePublicKey'
{ $sel:publicKeyConfig:CreatePublicKey' :: PublicKeyConfig
publicKeyConfig =
PublicKeyConfig
pPublicKeyConfig_
}
createPublicKey_publicKeyConfig :: Lens.Lens' CreatePublicKey PublicKeyConfig
createPublicKey_publicKeyConfig :: (PublicKeyConfig -> f PublicKeyConfig)
-> CreatePublicKey -> f CreatePublicKey
createPublicKey_publicKeyConfig = (CreatePublicKey -> PublicKeyConfig)
-> (CreatePublicKey -> PublicKeyConfig -> CreatePublicKey)
-> Lens
CreatePublicKey CreatePublicKey PublicKeyConfig PublicKeyConfig
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePublicKey' {PublicKeyConfig
publicKeyConfig :: PublicKeyConfig
$sel:publicKeyConfig:CreatePublicKey' :: CreatePublicKey -> PublicKeyConfig
publicKeyConfig} -> PublicKeyConfig
publicKeyConfig) (\s :: CreatePublicKey
s@CreatePublicKey' {} PublicKeyConfig
a -> CreatePublicKey
s {$sel:publicKeyConfig:CreatePublicKey' :: PublicKeyConfig
publicKeyConfig = PublicKeyConfig
a} :: CreatePublicKey)
instance Core.AWSRequest CreatePublicKey where
type
AWSResponse CreatePublicKey =
CreatePublicKeyResponse
request :: CreatePublicKey -> Request CreatePublicKey
request = Service -> CreatePublicKey -> Request CreatePublicKey
forall a. (ToRequest a, ToElement a) => Service -> a -> Request a
Request.postXML Service
defaultService
response :: Logger
-> Service
-> Proxy CreatePublicKey
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreatePublicKey)))
response =
(Int
-> ResponseHeaders
-> [Node]
-> Either String (AWSResponse CreatePublicKey))
-> Logger
-> Service
-> Proxy CreatePublicKey
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreatePublicKey)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> [Node] -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveXML
( \Int
s ResponseHeaders
h [Node]
x ->
Maybe Text
-> Maybe Text -> Maybe PublicKey -> Int -> CreatePublicKeyResponse
CreatePublicKeyResponse'
(Maybe Text
-> Maybe Text -> Maybe PublicKey -> Int -> CreatePublicKeyResponse)
-> Either String (Maybe Text)
-> Either
String
(Maybe Text -> Maybe PublicKey -> Int -> CreatePublicKeyResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (ResponseHeaders
h ResponseHeaders -> HeaderName -> Either String (Maybe Text)
forall a.
FromText a =>
ResponseHeaders -> HeaderName -> Either String (Maybe a)
Core..#? HeaderName
"ETag")
Either
String
(Maybe Text -> Maybe PublicKey -> Int -> CreatePublicKeyResponse)
-> Either String (Maybe Text)
-> Either
String (Maybe PublicKey -> Int -> CreatePublicKeyResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (ResponseHeaders
h ResponseHeaders -> HeaderName -> Either String (Maybe Text)
forall a.
FromText a =>
ResponseHeaders -> HeaderName -> Either String (Maybe a)
Core..#? HeaderName
"Location")
Either String (Maybe PublicKey -> Int -> CreatePublicKeyResponse)
-> Either String (Maybe PublicKey)
-> Either String (Int -> CreatePublicKeyResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ([Node] -> Either String (Maybe PublicKey)
forall a. FromXML a => [Node] -> Either String a
Core.parseXML [Node]
x)
Either String (Int -> CreatePublicKeyResponse)
-> Either String Int -> Either String CreatePublicKeyResponse
forall (f :: * -> *) a b. Applicative f => 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 CreatePublicKey
instance Prelude.NFData CreatePublicKey
instance Core.ToElement CreatePublicKey where
toElement :: CreatePublicKey -> Element
toElement CreatePublicKey' {PublicKeyConfig
publicKeyConfig :: PublicKeyConfig
$sel:publicKeyConfig:CreatePublicKey' :: CreatePublicKey -> PublicKeyConfig
..} =
Name -> PublicKeyConfig -> Element
forall a. ToXML a => Name -> a -> Element
Core.mkElement
Name
"{http://cloudfront.amazonaws.com/doc/2020-05-31/}PublicKeyConfig"
PublicKeyConfig
publicKeyConfig
instance Core.ToHeaders CreatePublicKey where
toHeaders :: CreatePublicKey -> ResponseHeaders
toHeaders = ResponseHeaders -> CreatePublicKey -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty
instance Core.ToPath CreatePublicKey where
toPath :: CreatePublicKey -> ByteString
toPath = ByteString -> CreatePublicKey -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/2020-05-31/public-key"
instance Core.ToQuery CreatePublicKey where
toQuery :: CreatePublicKey -> QueryString
toQuery = QueryString -> CreatePublicKey -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data CreatePublicKeyResponse = CreatePublicKeyResponse'
{
CreatePublicKeyResponse -> Maybe Text
eTag :: Prelude.Maybe Prelude.Text,
CreatePublicKeyResponse -> Maybe Text
location :: Prelude.Maybe Prelude.Text,
CreatePublicKeyResponse -> Maybe PublicKey
publicKey :: Prelude.Maybe PublicKey,
CreatePublicKeyResponse -> Int
httpStatus :: Prelude.Int
}
deriving (CreatePublicKeyResponse -> CreatePublicKeyResponse -> Bool
(CreatePublicKeyResponse -> CreatePublicKeyResponse -> Bool)
-> (CreatePublicKeyResponse -> CreatePublicKeyResponse -> Bool)
-> Eq CreatePublicKeyResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreatePublicKeyResponse -> CreatePublicKeyResponse -> Bool
$c/= :: CreatePublicKeyResponse -> CreatePublicKeyResponse -> Bool
== :: CreatePublicKeyResponse -> CreatePublicKeyResponse -> Bool
$c== :: CreatePublicKeyResponse -> CreatePublicKeyResponse -> Bool
Prelude.Eq, ReadPrec [CreatePublicKeyResponse]
ReadPrec CreatePublicKeyResponse
Int -> ReadS CreatePublicKeyResponse
ReadS [CreatePublicKeyResponse]
(Int -> ReadS CreatePublicKeyResponse)
-> ReadS [CreatePublicKeyResponse]
-> ReadPrec CreatePublicKeyResponse
-> ReadPrec [CreatePublicKeyResponse]
-> Read CreatePublicKeyResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreatePublicKeyResponse]
$creadListPrec :: ReadPrec [CreatePublicKeyResponse]
readPrec :: ReadPrec CreatePublicKeyResponse
$creadPrec :: ReadPrec CreatePublicKeyResponse
readList :: ReadS [CreatePublicKeyResponse]
$creadList :: ReadS [CreatePublicKeyResponse]
readsPrec :: Int -> ReadS CreatePublicKeyResponse
$creadsPrec :: Int -> ReadS CreatePublicKeyResponse
Prelude.Read, Int -> CreatePublicKeyResponse -> ShowS
[CreatePublicKeyResponse] -> ShowS
CreatePublicKeyResponse -> String
(Int -> CreatePublicKeyResponse -> ShowS)
-> (CreatePublicKeyResponse -> String)
-> ([CreatePublicKeyResponse] -> ShowS)
-> Show CreatePublicKeyResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreatePublicKeyResponse] -> ShowS
$cshowList :: [CreatePublicKeyResponse] -> ShowS
show :: CreatePublicKeyResponse -> String
$cshow :: CreatePublicKeyResponse -> String
showsPrec :: Int -> CreatePublicKeyResponse -> ShowS
$cshowsPrec :: Int -> CreatePublicKeyResponse -> ShowS
Prelude.Show, (forall x.
CreatePublicKeyResponse -> Rep CreatePublicKeyResponse x)
-> (forall x.
Rep CreatePublicKeyResponse x -> CreatePublicKeyResponse)
-> Generic CreatePublicKeyResponse
forall x. Rep CreatePublicKeyResponse x -> CreatePublicKeyResponse
forall x. CreatePublicKeyResponse -> Rep CreatePublicKeyResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreatePublicKeyResponse x -> CreatePublicKeyResponse
$cfrom :: forall x. CreatePublicKeyResponse -> Rep CreatePublicKeyResponse x
Prelude.Generic)
newCreatePublicKeyResponse ::
Prelude.Int ->
CreatePublicKeyResponse
newCreatePublicKeyResponse :: Int -> CreatePublicKeyResponse
newCreatePublicKeyResponse Int
pHttpStatus_ =
CreatePublicKeyResponse' :: Maybe Text
-> Maybe Text -> Maybe PublicKey -> Int -> CreatePublicKeyResponse
CreatePublicKeyResponse'
{ $sel:eTag:CreatePublicKeyResponse' :: Maybe Text
eTag = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:location:CreatePublicKeyResponse' :: Maybe Text
location = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:publicKey:CreatePublicKeyResponse' :: Maybe PublicKey
publicKey = Maybe PublicKey
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:CreatePublicKeyResponse' :: Int
httpStatus = Int
pHttpStatus_
}
createPublicKeyResponse_eTag :: Lens.Lens' CreatePublicKeyResponse (Prelude.Maybe Prelude.Text)
createPublicKeyResponse_eTag :: (Maybe Text -> f (Maybe Text))
-> CreatePublicKeyResponse -> f CreatePublicKeyResponse
createPublicKeyResponse_eTag = (CreatePublicKeyResponse -> Maybe Text)
-> (CreatePublicKeyResponse
-> Maybe Text -> CreatePublicKeyResponse)
-> Lens
CreatePublicKeyResponse
CreatePublicKeyResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePublicKeyResponse' {Maybe Text
eTag :: Maybe Text
$sel:eTag:CreatePublicKeyResponse' :: CreatePublicKeyResponse -> Maybe Text
eTag} -> Maybe Text
eTag) (\s :: CreatePublicKeyResponse
s@CreatePublicKeyResponse' {} Maybe Text
a -> CreatePublicKeyResponse
s {$sel:eTag:CreatePublicKeyResponse' :: Maybe Text
eTag = Maybe Text
a} :: CreatePublicKeyResponse)
createPublicKeyResponse_location :: Lens.Lens' CreatePublicKeyResponse (Prelude.Maybe Prelude.Text)
createPublicKeyResponse_location :: (Maybe Text -> f (Maybe Text))
-> CreatePublicKeyResponse -> f CreatePublicKeyResponse
createPublicKeyResponse_location = (CreatePublicKeyResponse -> Maybe Text)
-> (CreatePublicKeyResponse
-> Maybe Text -> CreatePublicKeyResponse)
-> Lens
CreatePublicKeyResponse
CreatePublicKeyResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePublicKeyResponse' {Maybe Text
location :: Maybe Text
$sel:location:CreatePublicKeyResponse' :: CreatePublicKeyResponse -> Maybe Text
location} -> Maybe Text
location) (\s :: CreatePublicKeyResponse
s@CreatePublicKeyResponse' {} Maybe Text
a -> CreatePublicKeyResponse
s {$sel:location:CreatePublicKeyResponse' :: Maybe Text
location = Maybe Text
a} :: CreatePublicKeyResponse)
createPublicKeyResponse_publicKey :: Lens.Lens' CreatePublicKeyResponse (Prelude.Maybe PublicKey)
createPublicKeyResponse_publicKey :: (Maybe PublicKey -> f (Maybe PublicKey))
-> CreatePublicKeyResponse -> f CreatePublicKeyResponse
createPublicKeyResponse_publicKey = (CreatePublicKeyResponse -> Maybe PublicKey)
-> (CreatePublicKeyResponse
-> Maybe PublicKey -> CreatePublicKeyResponse)
-> Lens
CreatePublicKeyResponse
CreatePublicKeyResponse
(Maybe PublicKey)
(Maybe PublicKey)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePublicKeyResponse' {Maybe PublicKey
publicKey :: Maybe PublicKey
$sel:publicKey:CreatePublicKeyResponse' :: CreatePublicKeyResponse -> Maybe PublicKey
publicKey} -> Maybe PublicKey
publicKey) (\s :: CreatePublicKeyResponse
s@CreatePublicKeyResponse' {} Maybe PublicKey
a -> CreatePublicKeyResponse
s {$sel:publicKey:CreatePublicKeyResponse' :: Maybe PublicKey
publicKey = Maybe PublicKey
a} :: CreatePublicKeyResponse)
createPublicKeyResponse_httpStatus :: Lens.Lens' CreatePublicKeyResponse Prelude.Int
createPublicKeyResponse_httpStatus :: (Int -> f Int)
-> CreatePublicKeyResponse -> f CreatePublicKeyResponse
createPublicKeyResponse_httpStatus = (CreatePublicKeyResponse -> Int)
-> (CreatePublicKeyResponse -> Int -> CreatePublicKeyResponse)
-> Lens CreatePublicKeyResponse CreatePublicKeyResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePublicKeyResponse' {Int
httpStatus :: Int
$sel:httpStatus:CreatePublicKeyResponse' :: CreatePublicKeyResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: CreatePublicKeyResponse
s@CreatePublicKeyResponse' {} Int
a -> CreatePublicKeyResponse
s {$sel:httpStatus:CreatePublicKeyResponse' :: Int
httpStatus = Int
a} :: CreatePublicKeyResponse)
instance Prelude.NFData CreatePublicKeyResponse