{-# 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.DAX.CreateParameterGroup
(
CreateParameterGroup (..),
newCreateParameterGroup,
createParameterGroup_description,
createParameterGroup_parameterGroupName,
CreateParameterGroupResponse (..),
newCreateParameterGroupResponse,
createParameterGroupResponse_parameterGroup,
createParameterGroupResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import Amazonka.DAX.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 CreateParameterGroup = CreateParameterGroup'
{
CreateParameterGroup -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
CreateParameterGroup -> Text
parameterGroupName :: Prelude.Text
}
deriving (CreateParameterGroup -> CreateParameterGroup -> Bool
(CreateParameterGroup -> CreateParameterGroup -> Bool)
-> (CreateParameterGroup -> CreateParameterGroup -> Bool)
-> Eq CreateParameterGroup
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreateParameterGroup -> CreateParameterGroup -> Bool
$c/= :: CreateParameterGroup -> CreateParameterGroup -> Bool
== :: CreateParameterGroup -> CreateParameterGroup -> Bool
$c== :: CreateParameterGroup -> CreateParameterGroup -> Bool
Prelude.Eq, ReadPrec [CreateParameterGroup]
ReadPrec CreateParameterGroup
Int -> ReadS CreateParameterGroup
ReadS [CreateParameterGroup]
(Int -> ReadS CreateParameterGroup)
-> ReadS [CreateParameterGroup]
-> ReadPrec CreateParameterGroup
-> ReadPrec [CreateParameterGroup]
-> Read CreateParameterGroup
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreateParameterGroup]
$creadListPrec :: ReadPrec [CreateParameterGroup]
readPrec :: ReadPrec CreateParameterGroup
$creadPrec :: ReadPrec CreateParameterGroup
readList :: ReadS [CreateParameterGroup]
$creadList :: ReadS [CreateParameterGroup]
readsPrec :: Int -> ReadS CreateParameterGroup
$creadsPrec :: Int -> ReadS CreateParameterGroup
Prelude.Read, Int -> CreateParameterGroup -> ShowS
[CreateParameterGroup] -> ShowS
CreateParameterGroup -> String
(Int -> CreateParameterGroup -> ShowS)
-> (CreateParameterGroup -> String)
-> ([CreateParameterGroup] -> ShowS)
-> Show CreateParameterGroup
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreateParameterGroup] -> ShowS
$cshowList :: [CreateParameterGroup] -> ShowS
show :: CreateParameterGroup -> String
$cshow :: CreateParameterGroup -> String
showsPrec :: Int -> CreateParameterGroup -> ShowS
$cshowsPrec :: Int -> CreateParameterGroup -> ShowS
Prelude.Show, (forall x. CreateParameterGroup -> Rep CreateParameterGroup x)
-> (forall x. Rep CreateParameterGroup x -> CreateParameterGroup)
-> Generic CreateParameterGroup
forall x. Rep CreateParameterGroup x -> CreateParameterGroup
forall x. CreateParameterGroup -> Rep CreateParameterGroup x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreateParameterGroup x -> CreateParameterGroup
$cfrom :: forall x. CreateParameterGroup -> Rep CreateParameterGroup x
Prelude.Generic)
newCreateParameterGroup ::
Prelude.Text ->
CreateParameterGroup
newCreateParameterGroup :: Text -> CreateParameterGroup
newCreateParameterGroup Text
pParameterGroupName_ =
CreateParameterGroup' :: Maybe Text -> Text -> CreateParameterGroup
CreateParameterGroup'
{ $sel:description:CreateParameterGroup' :: Maybe Text
description =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:parameterGroupName:CreateParameterGroup' :: Text
parameterGroupName = Text
pParameterGroupName_
}
createParameterGroup_description :: Lens.Lens' CreateParameterGroup (Prelude.Maybe Prelude.Text)
createParameterGroup_description :: (Maybe Text -> f (Maybe Text))
-> CreateParameterGroup -> f CreateParameterGroup
createParameterGroup_description = (CreateParameterGroup -> Maybe Text)
-> (CreateParameterGroup -> Maybe Text -> CreateParameterGroup)
-> Lens
CreateParameterGroup CreateParameterGroup (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateParameterGroup' {Maybe Text
description :: Maybe Text
$sel:description:CreateParameterGroup' :: CreateParameterGroup -> Maybe Text
description} -> Maybe Text
description) (\s :: CreateParameterGroup
s@CreateParameterGroup' {} Maybe Text
a -> CreateParameterGroup
s {$sel:description:CreateParameterGroup' :: Maybe Text
description = Maybe Text
a} :: CreateParameterGroup)
createParameterGroup_parameterGroupName :: Lens.Lens' CreateParameterGroup Prelude.Text
createParameterGroup_parameterGroupName :: (Text -> f Text) -> CreateParameterGroup -> f CreateParameterGroup
createParameterGroup_parameterGroupName = (CreateParameterGroup -> Text)
-> (CreateParameterGroup -> Text -> CreateParameterGroup)
-> Lens CreateParameterGroup CreateParameterGroup Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateParameterGroup' {Text
parameterGroupName :: Text
$sel:parameterGroupName:CreateParameterGroup' :: CreateParameterGroup -> Text
parameterGroupName} -> Text
parameterGroupName) (\s :: CreateParameterGroup
s@CreateParameterGroup' {} Text
a -> CreateParameterGroup
s {$sel:parameterGroupName:CreateParameterGroup' :: Text
parameterGroupName = Text
a} :: CreateParameterGroup)
instance Core.AWSRequest CreateParameterGroup where
type
AWSResponse CreateParameterGroup =
CreateParameterGroupResponse
request :: CreateParameterGroup -> Request CreateParameterGroup
request = Service -> CreateParameterGroup -> Request CreateParameterGroup
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy CreateParameterGroup
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse CreateParameterGroup)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse CreateParameterGroup))
-> Logger
-> Service
-> Proxy CreateParameterGroup
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse CreateParameterGroup)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
( \Int
s ResponseHeaders
h Object
x ->
Maybe ParameterGroup -> Int -> CreateParameterGroupResponse
CreateParameterGroupResponse'
(Maybe ParameterGroup -> Int -> CreateParameterGroupResponse)
-> Either String (Maybe ParameterGroup)
-> Either String (Int -> CreateParameterGroupResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe ParameterGroup)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"ParameterGroup")
Either String (Int -> CreateParameterGroupResponse)
-> Either String Int -> Either String CreateParameterGroupResponse
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 CreateParameterGroup
instance Prelude.NFData CreateParameterGroup
instance Core.ToHeaders CreateParameterGroup where
toHeaders :: CreateParameterGroup -> ResponseHeaders
toHeaders =
ResponseHeaders -> CreateParameterGroup -> 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
"AmazonDAXV3.CreateParameterGroup" ::
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 CreateParameterGroup where
toJSON :: CreateParameterGroup -> Value
toJSON CreateParameterGroup' {Maybe Text
Text
parameterGroupName :: Text
description :: Maybe Text
$sel:parameterGroupName:CreateParameterGroup' :: CreateParameterGroup -> Text
$sel:description:CreateParameterGroup' :: CreateParameterGroup -> Maybe Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"Description" 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
description,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
(Text
"ParameterGroupName" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
parameterGroupName)
]
)
instance Core.ToPath CreateParameterGroup where
toPath :: CreateParameterGroup -> ByteString
toPath = ByteString -> CreateParameterGroup -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery CreateParameterGroup where
toQuery :: CreateParameterGroup -> QueryString
toQuery = QueryString -> CreateParameterGroup -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data CreateParameterGroupResponse = CreateParameterGroupResponse'
{
CreateParameterGroupResponse -> Maybe ParameterGroup
parameterGroup :: Prelude.Maybe ParameterGroup,
CreateParameterGroupResponse -> Int
httpStatus :: Prelude.Int
}
deriving (CreateParameterGroupResponse
-> CreateParameterGroupResponse -> Bool
(CreateParameterGroupResponse
-> CreateParameterGroupResponse -> Bool)
-> (CreateParameterGroupResponse
-> CreateParameterGroupResponse -> Bool)
-> Eq CreateParameterGroupResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreateParameterGroupResponse
-> CreateParameterGroupResponse -> Bool
$c/= :: CreateParameterGroupResponse
-> CreateParameterGroupResponse -> Bool
== :: CreateParameterGroupResponse
-> CreateParameterGroupResponse -> Bool
$c== :: CreateParameterGroupResponse
-> CreateParameterGroupResponse -> Bool
Prelude.Eq, ReadPrec [CreateParameterGroupResponse]
ReadPrec CreateParameterGroupResponse
Int -> ReadS CreateParameterGroupResponse
ReadS [CreateParameterGroupResponse]
(Int -> ReadS CreateParameterGroupResponse)
-> ReadS [CreateParameterGroupResponse]
-> ReadPrec CreateParameterGroupResponse
-> ReadPrec [CreateParameterGroupResponse]
-> Read CreateParameterGroupResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreateParameterGroupResponse]
$creadListPrec :: ReadPrec [CreateParameterGroupResponse]
readPrec :: ReadPrec CreateParameterGroupResponse
$creadPrec :: ReadPrec CreateParameterGroupResponse
readList :: ReadS [CreateParameterGroupResponse]
$creadList :: ReadS [CreateParameterGroupResponse]
readsPrec :: Int -> ReadS CreateParameterGroupResponse
$creadsPrec :: Int -> ReadS CreateParameterGroupResponse
Prelude.Read, Int -> CreateParameterGroupResponse -> ShowS
[CreateParameterGroupResponse] -> ShowS
CreateParameterGroupResponse -> String
(Int -> CreateParameterGroupResponse -> ShowS)
-> (CreateParameterGroupResponse -> String)
-> ([CreateParameterGroupResponse] -> ShowS)
-> Show CreateParameterGroupResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreateParameterGroupResponse] -> ShowS
$cshowList :: [CreateParameterGroupResponse] -> ShowS
show :: CreateParameterGroupResponse -> String
$cshow :: CreateParameterGroupResponse -> String
showsPrec :: Int -> CreateParameterGroupResponse -> ShowS
$cshowsPrec :: Int -> CreateParameterGroupResponse -> ShowS
Prelude.Show, (forall x.
CreateParameterGroupResponse -> Rep CreateParameterGroupResponse x)
-> (forall x.
Rep CreateParameterGroupResponse x -> CreateParameterGroupResponse)
-> Generic CreateParameterGroupResponse
forall x.
Rep CreateParameterGroupResponse x -> CreateParameterGroupResponse
forall x.
CreateParameterGroupResponse -> Rep CreateParameterGroupResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep CreateParameterGroupResponse x -> CreateParameterGroupResponse
$cfrom :: forall x.
CreateParameterGroupResponse -> Rep CreateParameterGroupResponse x
Prelude.Generic)
newCreateParameterGroupResponse ::
Prelude.Int ->
CreateParameterGroupResponse
newCreateParameterGroupResponse :: Int -> CreateParameterGroupResponse
newCreateParameterGroupResponse Int
pHttpStatus_ =
CreateParameterGroupResponse' :: Maybe ParameterGroup -> Int -> CreateParameterGroupResponse
CreateParameterGroupResponse'
{ $sel:parameterGroup:CreateParameterGroupResponse' :: Maybe ParameterGroup
parameterGroup =
Maybe ParameterGroup
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:CreateParameterGroupResponse' :: Int
httpStatus = Int
pHttpStatus_
}
createParameterGroupResponse_parameterGroup :: Lens.Lens' CreateParameterGroupResponse (Prelude.Maybe ParameterGroup)
createParameterGroupResponse_parameterGroup :: (Maybe ParameterGroup -> f (Maybe ParameterGroup))
-> CreateParameterGroupResponse -> f CreateParameterGroupResponse
createParameterGroupResponse_parameterGroup = (CreateParameterGroupResponse -> Maybe ParameterGroup)
-> (CreateParameterGroupResponse
-> Maybe ParameterGroup -> CreateParameterGroupResponse)
-> Lens
CreateParameterGroupResponse
CreateParameterGroupResponse
(Maybe ParameterGroup)
(Maybe ParameterGroup)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateParameterGroupResponse' {Maybe ParameterGroup
parameterGroup :: Maybe ParameterGroup
$sel:parameterGroup:CreateParameterGroupResponse' :: CreateParameterGroupResponse -> Maybe ParameterGroup
parameterGroup} -> Maybe ParameterGroup
parameterGroup) (\s :: CreateParameterGroupResponse
s@CreateParameterGroupResponse' {} Maybe ParameterGroup
a -> CreateParameterGroupResponse
s {$sel:parameterGroup:CreateParameterGroupResponse' :: Maybe ParameterGroup
parameterGroup = Maybe ParameterGroup
a} :: CreateParameterGroupResponse)
createParameterGroupResponse_httpStatus :: Lens.Lens' CreateParameterGroupResponse Prelude.Int
createParameterGroupResponse_httpStatus :: (Int -> f Int)
-> CreateParameterGroupResponse -> f CreateParameterGroupResponse
createParameterGroupResponse_httpStatus = (CreateParameterGroupResponse -> Int)
-> (CreateParameterGroupResponse
-> Int -> CreateParameterGroupResponse)
-> Lens
CreateParameterGroupResponse CreateParameterGroupResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateParameterGroupResponse' {Int
httpStatus :: Int
$sel:httpStatus:CreateParameterGroupResponse' :: CreateParameterGroupResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: CreateParameterGroupResponse
s@CreateParameterGroupResponse' {} Int
a -> CreateParameterGroupResponse
s {$sel:httpStatus:CreateParameterGroupResponse' :: Int
httpStatus = Int
a} :: CreateParameterGroupResponse)
instance Prelude.NFData CreateParameterGroupResponse