{-# 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 #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.DAX.UpdateParameterGroup
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Modifies the parameters of a parameter group. You can modify up to 20
-- parameters in a single request by submitting a list parameter name and
-- value pairs.
module Amazonka.DAX.UpdateParameterGroup
  ( -- * Creating a Request
    UpdateParameterGroup (..),
    newUpdateParameterGroup,

    -- * Request Lenses
    updateParameterGroup_parameterGroupName,
    updateParameterGroup_parameterNameValues,

    -- * Destructuring the Response
    UpdateParameterGroupResponse (..),
    newUpdateParameterGroupResponse,

    -- * Response Lenses
    updateParameterGroupResponse_parameterGroup,
    updateParameterGroupResponse_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

-- | /See:/ 'newUpdateParameterGroup' smart constructor.
data UpdateParameterGroup = UpdateParameterGroup'
  { -- | The name of the parameter group.
    UpdateParameterGroup -> Text
parameterGroupName :: Prelude.Text,
    -- | An array of name-value pairs for the parameters in the group. Each
    -- element in the array represents a single parameter.
    --
    -- @record-ttl-millis@ and @query-ttl-millis@ are the only supported
    -- parameter names. For more details, see
    -- <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DAX.cluster-management.html#DAX.cluster-management.custom-settings.ttl Configuring TTL Settings>.
    UpdateParameterGroup -> [ParameterNameValue]
parameterNameValues :: [ParameterNameValue]
  }
  deriving (UpdateParameterGroup -> UpdateParameterGroup -> Bool
(UpdateParameterGroup -> UpdateParameterGroup -> Bool)
-> (UpdateParameterGroup -> UpdateParameterGroup -> Bool)
-> Eq UpdateParameterGroup
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateParameterGroup -> UpdateParameterGroup -> Bool
$c/= :: UpdateParameterGroup -> UpdateParameterGroup -> Bool
== :: UpdateParameterGroup -> UpdateParameterGroup -> Bool
$c== :: UpdateParameterGroup -> UpdateParameterGroup -> Bool
Prelude.Eq, ReadPrec [UpdateParameterGroup]
ReadPrec UpdateParameterGroup
Int -> ReadS UpdateParameterGroup
ReadS [UpdateParameterGroup]
(Int -> ReadS UpdateParameterGroup)
-> ReadS [UpdateParameterGroup]
-> ReadPrec UpdateParameterGroup
-> ReadPrec [UpdateParameterGroup]
-> Read UpdateParameterGroup
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateParameterGroup]
$creadListPrec :: ReadPrec [UpdateParameterGroup]
readPrec :: ReadPrec UpdateParameterGroup
$creadPrec :: ReadPrec UpdateParameterGroup
readList :: ReadS [UpdateParameterGroup]
$creadList :: ReadS [UpdateParameterGroup]
readsPrec :: Int -> ReadS UpdateParameterGroup
$creadsPrec :: Int -> ReadS UpdateParameterGroup
Prelude.Read, Int -> UpdateParameterGroup -> ShowS
[UpdateParameterGroup] -> ShowS
UpdateParameterGroup -> String
(Int -> UpdateParameterGroup -> ShowS)
-> (UpdateParameterGroup -> String)
-> ([UpdateParameterGroup] -> ShowS)
-> Show UpdateParameterGroup
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateParameterGroup] -> ShowS
$cshowList :: [UpdateParameterGroup] -> ShowS
show :: UpdateParameterGroup -> String
$cshow :: UpdateParameterGroup -> String
showsPrec :: Int -> UpdateParameterGroup -> ShowS
$cshowsPrec :: Int -> UpdateParameterGroup -> ShowS
Prelude.Show, (forall x. UpdateParameterGroup -> Rep UpdateParameterGroup x)
-> (forall x. Rep UpdateParameterGroup x -> UpdateParameterGroup)
-> Generic UpdateParameterGroup
forall x. Rep UpdateParameterGroup x -> UpdateParameterGroup
forall x. UpdateParameterGroup -> Rep UpdateParameterGroup x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateParameterGroup x -> UpdateParameterGroup
$cfrom :: forall x. UpdateParameterGroup -> Rep UpdateParameterGroup x
Prelude.Generic)

-- |
-- Create a value of 'UpdateParameterGroup' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'parameterGroupName', 'updateParameterGroup_parameterGroupName' - The name of the parameter group.
--
-- 'parameterNameValues', 'updateParameterGroup_parameterNameValues' - An array of name-value pairs for the parameters in the group. Each
-- element in the array represents a single parameter.
--
-- @record-ttl-millis@ and @query-ttl-millis@ are the only supported
-- parameter names. For more details, see
-- <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DAX.cluster-management.html#DAX.cluster-management.custom-settings.ttl Configuring TTL Settings>.
newUpdateParameterGroup ::
  -- | 'parameterGroupName'
  Prelude.Text ->
  UpdateParameterGroup
newUpdateParameterGroup :: Text -> UpdateParameterGroup
newUpdateParameterGroup Text
pParameterGroupName_ =
  UpdateParameterGroup' :: Text -> [ParameterNameValue] -> UpdateParameterGroup
UpdateParameterGroup'
    { $sel:parameterGroupName:UpdateParameterGroup' :: Text
parameterGroupName =
        Text
pParameterGroupName_,
      $sel:parameterNameValues:UpdateParameterGroup' :: [ParameterNameValue]
parameterNameValues = [ParameterNameValue]
forall a. Monoid a => a
Prelude.mempty
    }

-- | The name of the parameter group.
updateParameterGroup_parameterGroupName :: Lens.Lens' UpdateParameterGroup Prelude.Text
updateParameterGroup_parameterGroupName :: (Text -> f Text) -> UpdateParameterGroup -> f UpdateParameterGroup
updateParameterGroup_parameterGroupName = (UpdateParameterGroup -> Text)
-> (UpdateParameterGroup -> Text -> UpdateParameterGroup)
-> Lens UpdateParameterGroup UpdateParameterGroup Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateParameterGroup' {Text
parameterGroupName :: Text
$sel:parameterGroupName:UpdateParameterGroup' :: UpdateParameterGroup -> Text
parameterGroupName} -> Text
parameterGroupName) (\s :: UpdateParameterGroup
s@UpdateParameterGroup' {} Text
a -> UpdateParameterGroup
s {$sel:parameterGroupName:UpdateParameterGroup' :: Text
parameterGroupName = Text
a} :: UpdateParameterGroup)

-- | An array of name-value pairs for the parameters in the group. Each
-- element in the array represents a single parameter.
--
-- @record-ttl-millis@ and @query-ttl-millis@ are the only supported
-- parameter names. For more details, see
-- <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DAX.cluster-management.html#DAX.cluster-management.custom-settings.ttl Configuring TTL Settings>.
updateParameterGroup_parameterNameValues :: Lens.Lens' UpdateParameterGroup [ParameterNameValue]
updateParameterGroup_parameterNameValues :: ([ParameterNameValue] -> f [ParameterNameValue])
-> UpdateParameterGroup -> f UpdateParameterGroup
updateParameterGroup_parameterNameValues = (UpdateParameterGroup -> [ParameterNameValue])
-> (UpdateParameterGroup
    -> [ParameterNameValue] -> UpdateParameterGroup)
-> Lens
     UpdateParameterGroup
     UpdateParameterGroup
     [ParameterNameValue]
     [ParameterNameValue]
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateParameterGroup' {[ParameterNameValue]
parameterNameValues :: [ParameterNameValue]
$sel:parameterNameValues:UpdateParameterGroup' :: UpdateParameterGroup -> [ParameterNameValue]
parameterNameValues} -> [ParameterNameValue]
parameterNameValues) (\s :: UpdateParameterGroup
s@UpdateParameterGroup' {} [ParameterNameValue]
a -> UpdateParameterGroup
s {$sel:parameterNameValues:UpdateParameterGroup' :: [ParameterNameValue]
parameterNameValues = [ParameterNameValue]
a} :: UpdateParameterGroup) (([ParameterNameValue] -> f [ParameterNameValue])
 -> UpdateParameterGroup -> f UpdateParameterGroup)
-> (([ParameterNameValue] -> f [ParameterNameValue])
    -> [ParameterNameValue] -> f [ParameterNameValue])
-> ([ParameterNameValue] -> f [ParameterNameValue])
-> UpdateParameterGroup
-> f UpdateParameterGroup
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. ([ParameterNameValue] -> f [ParameterNameValue])
-> [ParameterNameValue] -> f [ParameterNameValue]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

instance Core.AWSRequest UpdateParameterGroup where
  type
    AWSResponse UpdateParameterGroup =
      UpdateParameterGroupResponse
  request :: UpdateParameterGroup -> Request UpdateParameterGroup
request = Service -> UpdateParameterGroup -> Request UpdateParameterGroup
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy UpdateParameterGroup
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse UpdateParameterGroup)))
response =
    (Int
 -> ResponseHeaders
 -> Object
 -> Either String (AWSResponse UpdateParameterGroup))
-> Logger
-> Service
-> Proxy UpdateParameterGroup
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse UpdateParameterGroup)))
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 -> UpdateParameterGroupResponse
UpdateParameterGroupResponse'
            (Maybe ParameterGroup -> Int -> UpdateParameterGroupResponse)
-> Either String (Maybe ParameterGroup)
-> Either String (Int -> UpdateParameterGroupResponse)
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 -> UpdateParameterGroupResponse)
-> Either String Int -> Either String UpdateParameterGroupResponse
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 UpdateParameterGroup

instance Prelude.NFData UpdateParameterGroup

instance Core.ToHeaders UpdateParameterGroup where
  toHeaders :: UpdateParameterGroup -> ResponseHeaders
toHeaders =
    ResponseHeaders -> UpdateParameterGroup -> 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.UpdateParameterGroup" ::
                          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 UpdateParameterGroup where
  toJSON :: UpdateParameterGroup -> Value
toJSON UpdateParameterGroup' {[ParameterNameValue]
Text
parameterNameValues :: [ParameterNameValue]
parameterGroupName :: Text
$sel:parameterNameValues:UpdateParameterGroup' :: UpdateParameterGroup -> [ParameterNameValue]
$sel:parameterGroupName:UpdateParameterGroup' :: UpdateParameterGroup -> 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
"ParameterGroupName" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
parameterGroupName),
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
              (Text
"ParameterNameValues" Text -> [ParameterNameValue] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= [ParameterNameValue]
parameterNameValues)
          ]
      )

instance Core.ToPath UpdateParameterGroup where
  toPath :: UpdateParameterGroup -> ByteString
toPath = ByteString -> UpdateParameterGroup -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"

instance Core.ToQuery UpdateParameterGroup where
  toQuery :: UpdateParameterGroup -> QueryString
toQuery = QueryString -> UpdateParameterGroup -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty

-- | /See:/ 'newUpdateParameterGroupResponse' smart constructor.
data UpdateParameterGroupResponse = UpdateParameterGroupResponse'
  { -- | The parameter group that has been modified.
    UpdateParameterGroupResponse -> Maybe ParameterGroup
parameterGroup :: Prelude.Maybe ParameterGroup,
    -- | The response's http status code.
    UpdateParameterGroupResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (UpdateParameterGroupResponse
-> UpdateParameterGroupResponse -> Bool
(UpdateParameterGroupResponse
 -> UpdateParameterGroupResponse -> Bool)
-> (UpdateParameterGroupResponse
    -> UpdateParameterGroupResponse -> Bool)
-> Eq UpdateParameterGroupResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateParameterGroupResponse
-> UpdateParameterGroupResponse -> Bool
$c/= :: UpdateParameterGroupResponse
-> UpdateParameterGroupResponse -> Bool
== :: UpdateParameterGroupResponse
-> UpdateParameterGroupResponse -> Bool
$c== :: UpdateParameterGroupResponse
-> UpdateParameterGroupResponse -> Bool
Prelude.Eq, ReadPrec [UpdateParameterGroupResponse]
ReadPrec UpdateParameterGroupResponse
Int -> ReadS UpdateParameterGroupResponse
ReadS [UpdateParameterGroupResponse]
(Int -> ReadS UpdateParameterGroupResponse)
-> ReadS [UpdateParameterGroupResponse]
-> ReadPrec UpdateParameterGroupResponse
-> ReadPrec [UpdateParameterGroupResponse]
-> Read UpdateParameterGroupResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateParameterGroupResponse]
$creadListPrec :: ReadPrec [UpdateParameterGroupResponse]
readPrec :: ReadPrec UpdateParameterGroupResponse
$creadPrec :: ReadPrec UpdateParameterGroupResponse
readList :: ReadS [UpdateParameterGroupResponse]
$creadList :: ReadS [UpdateParameterGroupResponse]
readsPrec :: Int -> ReadS UpdateParameterGroupResponse
$creadsPrec :: Int -> ReadS UpdateParameterGroupResponse
Prelude.Read, Int -> UpdateParameterGroupResponse -> ShowS
[UpdateParameterGroupResponse] -> ShowS
UpdateParameterGroupResponse -> String
(Int -> UpdateParameterGroupResponse -> ShowS)
-> (UpdateParameterGroupResponse -> String)
-> ([UpdateParameterGroupResponse] -> ShowS)
-> Show UpdateParameterGroupResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateParameterGroupResponse] -> ShowS
$cshowList :: [UpdateParameterGroupResponse] -> ShowS
show :: UpdateParameterGroupResponse -> String
$cshow :: UpdateParameterGroupResponse -> String
showsPrec :: Int -> UpdateParameterGroupResponse -> ShowS
$cshowsPrec :: Int -> UpdateParameterGroupResponse -> ShowS
Prelude.Show, (forall x.
 UpdateParameterGroupResponse -> Rep UpdateParameterGroupResponse x)
-> (forall x.
    Rep UpdateParameterGroupResponse x -> UpdateParameterGroupResponse)
-> Generic UpdateParameterGroupResponse
forall x.
Rep UpdateParameterGroupResponse x -> UpdateParameterGroupResponse
forall x.
UpdateParameterGroupResponse -> Rep UpdateParameterGroupResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep UpdateParameterGroupResponse x -> UpdateParameterGroupResponse
$cfrom :: forall x.
UpdateParameterGroupResponse -> Rep UpdateParameterGroupResponse x
Prelude.Generic)

-- |
-- Create a value of 'UpdateParameterGroupResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'parameterGroup', 'updateParameterGroupResponse_parameterGroup' - The parameter group that has been modified.
--
-- 'httpStatus', 'updateParameterGroupResponse_httpStatus' - The response's http status code.
newUpdateParameterGroupResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  UpdateParameterGroupResponse
newUpdateParameterGroupResponse :: Int -> UpdateParameterGroupResponse
newUpdateParameterGroupResponse Int
pHttpStatus_ =
  UpdateParameterGroupResponse' :: Maybe ParameterGroup -> Int -> UpdateParameterGroupResponse
UpdateParameterGroupResponse'
    { $sel:parameterGroup:UpdateParameterGroupResponse' :: Maybe ParameterGroup
parameterGroup =
        Maybe ParameterGroup
forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:UpdateParameterGroupResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | The parameter group that has been modified.
updateParameterGroupResponse_parameterGroup :: Lens.Lens' UpdateParameterGroupResponse (Prelude.Maybe ParameterGroup)
updateParameterGroupResponse_parameterGroup :: (Maybe ParameterGroup -> f (Maybe ParameterGroup))
-> UpdateParameterGroupResponse -> f UpdateParameterGroupResponse
updateParameterGroupResponse_parameterGroup = (UpdateParameterGroupResponse -> Maybe ParameterGroup)
-> (UpdateParameterGroupResponse
    -> Maybe ParameterGroup -> UpdateParameterGroupResponse)
-> Lens
     UpdateParameterGroupResponse
     UpdateParameterGroupResponse
     (Maybe ParameterGroup)
     (Maybe ParameterGroup)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateParameterGroupResponse' {Maybe ParameterGroup
parameterGroup :: Maybe ParameterGroup
$sel:parameterGroup:UpdateParameterGroupResponse' :: UpdateParameterGroupResponse -> Maybe ParameterGroup
parameterGroup} -> Maybe ParameterGroup
parameterGroup) (\s :: UpdateParameterGroupResponse
s@UpdateParameterGroupResponse' {} Maybe ParameterGroup
a -> UpdateParameterGroupResponse
s {$sel:parameterGroup:UpdateParameterGroupResponse' :: Maybe ParameterGroup
parameterGroup = Maybe ParameterGroup
a} :: UpdateParameterGroupResponse)

-- | The response's http status code.
updateParameterGroupResponse_httpStatus :: Lens.Lens' UpdateParameterGroupResponse Prelude.Int
updateParameterGroupResponse_httpStatus :: (Int -> f Int)
-> UpdateParameterGroupResponse -> f UpdateParameterGroupResponse
updateParameterGroupResponse_httpStatus = (UpdateParameterGroupResponse -> Int)
-> (UpdateParameterGroupResponse
    -> Int -> UpdateParameterGroupResponse)
-> Lens
     UpdateParameterGroupResponse UpdateParameterGroupResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateParameterGroupResponse' {Int
httpStatus :: Int
$sel:httpStatus:UpdateParameterGroupResponse' :: UpdateParameterGroupResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: UpdateParameterGroupResponse
s@UpdateParameterGroupResponse' {} Int
a -> UpdateParameterGroupResponse
s {$sel:httpStatus:UpdateParameterGroupResponse' :: Int
httpStatus = Int
a} :: UpdateParameterGroupResponse)

instance Prelude.NFData UpdateParameterGroupResponse