{-# 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.Connect.UpdateQueueMaxContacts
(
UpdateQueueMaxContacts (..),
newUpdateQueueMaxContacts,
updateQueueMaxContacts_maxContacts,
updateQueueMaxContacts_instanceId,
updateQueueMaxContacts_queueId,
UpdateQueueMaxContactsResponse (..),
newUpdateQueueMaxContactsResponse,
)
where
import Amazonka.Connect.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 UpdateQueueMaxContacts = UpdateQueueMaxContacts'
{
UpdateQueueMaxContacts -> Maybe Natural
maxContacts :: Prelude.Maybe Prelude.Natural,
UpdateQueueMaxContacts -> Text
instanceId :: Prelude.Text,
UpdateQueueMaxContacts -> Text
queueId :: Prelude.Text
}
deriving (UpdateQueueMaxContacts -> UpdateQueueMaxContacts -> Bool
(UpdateQueueMaxContacts -> UpdateQueueMaxContacts -> Bool)
-> (UpdateQueueMaxContacts -> UpdateQueueMaxContacts -> Bool)
-> Eq UpdateQueueMaxContacts
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateQueueMaxContacts -> UpdateQueueMaxContacts -> Bool
$c/= :: UpdateQueueMaxContacts -> UpdateQueueMaxContacts -> Bool
== :: UpdateQueueMaxContacts -> UpdateQueueMaxContacts -> Bool
$c== :: UpdateQueueMaxContacts -> UpdateQueueMaxContacts -> Bool
Prelude.Eq, ReadPrec [UpdateQueueMaxContacts]
ReadPrec UpdateQueueMaxContacts
Int -> ReadS UpdateQueueMaxContacts
ReadS [UpdateQueueMaxContacts]
(Int -> ReadS UpdateQueueMaxContacts)
-> ReadS [UpdateQueueMaxContacts]
-> ReadPrec UpdateQueueMaxContacts
-> ReadPrec [UpdateQueueMaxContacts]
-> Read UpdateQueueMaxContacts
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateQueueMaxContacts]
$creadListPrec :: ReadPrec [UpdateQueueMaxContacts]
readPrec :: ReadPrec UpdateQueueMaxContacts
$creadPrec :: ReadPrec UpdateQueueMaxContacts
readList :: ReadS [UpdateQueueMaxContacts]
$creadList :: ReadS [UpdateQueueMaxContacts]
readsPrec :: Int -> ReadS UpdateQueueMaxContacts
$creadsPrec :: Int -> ReadS UpdateQueueMaxContacts
Prelude.Read, Int -> UpdateQueueMaxContacts -> ShowS
[UpdateQueueMaxContacts] -> ShowS
UpdateQueueMaxContacts -> String
(Int -> UpdateQueueMaxContacts -> ShowS)
-> (UpdateQueueMaxContacts -> String)
-> ([UpdateQueueMaxContacts] -> ShowS)
-> Show UpdateQueueMaxContacts
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateQueueMaxContacts] -> ShowS
$cshowList :: [UpdateQueueMaxContacts] -> ShowS
show :: UpdateQueueMaxContacts -> String
$cshow :: UpdateQueueMaxContacts -> String
showsPrec :: Int -> UpdateQueueMaxContacts -> ShowS
$cshowsPrec :: Int -> UpdateQueueMaxContacts -> ShowS
Prelude.Show, (forall x. UpdateQueueMaxContacts -> Rep UpdateQueueMaxContacts x)
-> (forall x.
Rep UpdateQueueMaxContacts x -> UpdateQueueMaxContacts)
-> Generic UpdateQueueMaxContacts
forall x. Rep UpdateQueueMaxContacts x -> UpdateQueueMaxContacts
forall x. UpdateQueueMaxContacts -> Rep UpdateQueueMaxContacts x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateQueueMaxContacts x -> UpdateQueueMaxContacts
$cfrom :: forall x. UpdateQueueMaxContacts -> Rep UpdateQueueMaxContacts x
Prelude.Generic)
newUpdateQueueMaxContacts ::
Prelude.Text ->
Prelude.Text ->
UpdateQueueMaxContacts
newUpdateQueueMaxContacts :: Text -> Text -> UpdateQueueMaxContacts
newUpdateQueueMaxContacts Text
pInstanceId_ Text
pQueueId_ =
UpdateQueueMaxContacts' :: Maybe Natural -> Text -> Text -> UpdateQueueMaxContacts
UpdateQueueMaxContacts'
{ $sel:maxContacts:UpdateQueueMaxContacts' :: Maybe Natural
maxContacts =
Maybe Natural
forall a. Maybe a
Prelude.Nothing,
$sel:instanceId:UpdateQueueMaxContacts' :: Text
instanceId = Text
pInstanceId_,
$sel:queueId:UpdateQueueMaxContacts' :: Text
queueId = Text
pQueueId_
}
updateQueueMaxContacts_maxContacts :: Lens.Lens' UpdateQueueMaxContacts (Prelude.Maybe Prelude.Natural)
updateQueueMaxContacts_maxContacts :: (Maybe Natural -> f (Maybe Natural))
-> UpdateQueueMaxContacts -> f UpdateQueueMaxContacts
updateQueueMaxContacts_maxContacts = (UpdateQueueMaxContacts -> Maybe Natural)
-> (UpdateQueueMaxContacts
-> Maybe Natural -> UpdateQueueMaxContacts)
-> Lens
UpdateQueueMaxContacts
UpdateQueueMaxContacts
(Maybe Natural)
(Maybe Natural)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateQueueMaxContacts' {Maybe Natural
maxContacts :: Maybe Natural
$sel:maxContacts:UpdateQueueMaxContacts' :: UpdateQueueMaxContacts -> Maybe Natural
maxContacts} -> Maybe Natural
maxContacts) (\s :: UpdateQueueMaxContacts
s@UpdateQueueMaxContacts' {} Maybe Natural
a -> UpdateQueueMaxContacts
s {$sel:maxContacts:UpdateQueueMaxContacts' :: Maybe Natural
maxContacts = Maybe Natural
a} :: UpdateQueueMaxContacts)
updateQueueMaxContacts_instanceId :: Lens.Lens' UpdateQueueMaxContacts Prelude.Text
updateQueueMaxContacts_instanceId :: (Text -> f Text)
-> UpdateQueueMaxContacts -> f UpdateQueueMaxContacts
updateQueueMaxContacts_instanceId = (UpdateQueueMaxContacts -> Text)
-> (UpdateQueueMaxContacts -> Text -> UpdateQueueMaxContacts)
-> Lens UpdateQueueMaxContacts UpdateQueueMaxContacts Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateQueueMaxContacts' {Text
instanceId :: Text
$sel:instanceId:UpdateQueueMaxContacts' :: UpdateQueueMaxContacts -> Text
instanceId} -> Text
instanceId) (\s :: UpdateQueueMaxContacts
s@UpdateQueueMaxContacts' {} Text
a -> UpdateQueueMaxContacts
s {$sel:instanceId:UpdateQueueMaxContacts' :: Text
instanceId = Text
a} :: UpdateQueueMaxContacts)
updateQueueMaxContacts_queueId :: Lens.Lens' UpdateQueueMaxContacts Prelude.Text
updateQueueMaxContacts_queueId :: (Text -> f Text)
-> UpdateQueueMaxContacts -> f UpdateQueueMaxContacts
updateQueueMaxContacts_queueId = (UpdateQueueMaxContacts -> Text)
-> (UpdateQueueMaxContacts -> Text -> UpdateQueueMaxContacts)
-> Lens UpdateQueueMaxContacts UpdateQueueMaxContacts Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateQueueMaxContacts' {Text
queueId :: Text
$sel:queueId:UpdateQueueMaxContacts' :: UpdateQueueMaxContacts -> Text
queueId} -> Text
queueId) (\s :: UpdateQueueMaxContacts
s@UpdateQueueMaxContacts' {} Text
a -> UpdateQueueMaxContacts
s {$sel:queueId:UpdateQueueMaxContacts' :: Text
queueId = Text
a} :: UpdateQueueMaxContacts)
instance Core.AWSRequest UpdateQueueMaxContacts where
type
AWSResponse UpdateQueueMaxContacts =
UpdateQueueMaxContactsResponse
request :: UpdateQueueMaxContacts -> Request UpdateQueueMaxContacts
request = Service -> UpdateQueueMaxContacts -> Request UpdateQueueMaxContacts
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy UpdateQueueMaxContacts
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdateQueueMaxContacts)))
response =
AWSResponse UpdateQueueMaxContacts
-> Logger
-> Service
-> Proxy UpdateQueueMaxContacts
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdateQueueMaxContacts)))
forall (m :: * -> *) a.
MonadResource m =>
AWSResponse a
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveNull
AWSResponse UpdateQueueMaxContacts
UpdateQueueMaxContactsResponse
UpdateQueueMaxContactsResponse'
instance Prelude.Hashable UpdateQueueMaxContacts
instance Prelude.NFData UpdateQueueMaxContacts
instance Core.ToHeaders UpdateQueueMaxContacts where
toHeaders :: UpdateQueueMaxContacts -> [Header]
toHeaders =
[Header] -> UpdateQueueMaxContacts -> [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 UpdateQueueMaxContacts where
toJSON :: UpdateQueueMaxContacts -> Value
toJSON UpdateQueueMaxContacts' {Maybe Natural
Text
queueId :: Text
instanceId :: Text
maxContacts :: Maybe Natural
$sel:queueId:UpdateQueueMaxContacts' :: UpdateQueueMaxContacts -> Text
$sel:instanceId:UpdateQueueMaxContacts' :: UpdateQueueMaxContacts -> Text
$sel:maxContacts:UpdateQueueMaxContacts' :: UpdateQueueMaxContacts -> Maybe Natural
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[(Text
"MaxContacts" Text -> Natural -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Natural -> Pair) -> Maybe Natural -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Natural
maxContacts]
)
instance Core.ToPath UpdateQueueMaxContacts where
toPath :: UpdateQueueMaxContacts -> ByteString
toPath UpdateQueueMaxContacts' {Maybe Natural
Text
queueId :: Text
instanceId :: Text
maxContacts :: Maybe Natural
$sel:queueId:UpdateQueueMaxContacts' :: UpdateQueueMaxContacts -> Text
$sel:instanceId:UpdateQueueMaxContacts' :: UpdateQueueMaxContacts -> Text
$sel:maxContacts:UpdateQueueMaxContacts' :: UpdateQueueMaxContacts -> Maybe Natural
..} =
[ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ ByteString
"/queues/",
Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
instanceId,
ByteString
"/",
Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
queueId,
ByteString
"/max-contacts"
]
instance Core.ToQuery UpdateQueueMaxContacts where
toQuery :: UpdateQueueMaxContacts -> QueryString
toQuery = QueryString -> UpdateQueueMaxContacts -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data UpdateQueueMaxContactsResponse = UpdateQueueMaxContactsResponse'
{
}
deriving (UpdateQueueMaxContactsResponse
-> UpdateQueueMaxContactsResponse -> Bool
(UpdateQueueMaxContactsResponse
-> UpdateQueueMaxContactsResponse -> Bool)
-> (UpdateQueueMaxContactsResponse
-> UpdateQueueMaxContactsResponse -> Bool)
-> Eq UpdateQueueMaxContactsResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateQueueMaxContactsResponse
-> UpdateQueueMaxContactsResponse -> Bool
$c/= :: UpdateQueueMaxContactsResponse
-> UpdateQueueMaxContactsResponse -> Bool
== :: UpdateQueueMaxContactsResponse
-> UpdateQueueMaxContactsResponse -> Bool
$c== :: UpdateQueueMaxContactsResponse
-> UpdateQueueMaxContactsResponse -> Bool
Prelude.Eq, ReadPrec [UpdateQueueMaxContactsResponse]
ReadPrec UpdateQueueMaxContactsResponse
Int -> ReadS UpdateQueueMaxContactsResponse
ReadS [UpdateQueueMaxContactsResponse]
(Int -> ReadS UpdateQueueMaxContactsResponse)
-> ReadS [UpdateQueueMaxContactsResponse]
-> ReadPrec UpdateQueueMaxContactsResponse
-> ReadPrec [UpdateQueueMaxContactsResponse]
-> Read UpdateQueueMaxContactsResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateQueueMaxContactsResponse]
$creadListPrec :: ReadPrec [UpdateQueueMaxContactsResponse]
readPrec :: ReadPrec UpdateQueueMaxContactsResponse
$creadPrec :: ReadPrec UpdateQueueMaxContactsResponse
readList :: ReadS [UpdateQueueMaxContactsResponse]
$creadList :: ReadS [UpdateQueueMaxContactsResponse]
readsPrec :: Int -> ReadS UpdateQueueMaxContactsResponse
$creadsPrec :: Int -> ReadS UpdateQueueMaxContactsResponse
Prelude.Read, Int -> UpdateQueueMaxContactsResponse -> ShowS
[UpdateQueueMaxContactsResponse] -> ShowS
UpdateQueueMaxContactsResponse -> String
(Int -> UpdateQueueMaxContactsResponse -> ShowS)
-> (UpdateQueueMaxContactsResponse -> String)
-> ([UpdateQueueMaxContactsResponse] -> ShowS)
-> Show UpdateQueueMaxContactsResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateQueueMaxContactsResponse] -> ShowS
$cshowList :: [UpdateQueueMaxContactsResponse] -> ShowS
show :: UpdateQueueMaxContactsResponse -> String
$cshow :: UpdateQueueMaxContactsResponse -> String
showsPrec :: Int -> UpdateQueueMaxContactsResponse -> ShowS
$cshowsPrec :: Int -> UpdateQueueMaxContactsResponse -> ShowS
Prelude.Show, (forall x.
UpdateQueueMaxContactsResponse
-> Rep UpdateQueueMaxContactsResponse x)
-> (forall x.
Rep UpdateQueueMaxContactsResponse x
-> UpdateQueueMaxContactsResponse)
-> Generic UpdateQueueMaxContactsResponse
forall x.
Rep UpdateQueueMaxContactsResponse x
-> UpdateQueueMaxContactsResponse
forall x.
UpdateQueueMaxContactsResponse
-> Rep UpdateQueueMaxContactsResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep UpdateQueueMaxContactsResponse x
-> UpdateQueueMaxContactsResponse
$cfrom :: forall x.
UpdateQueueMaxContactsResponse
-> Rep UpdateQueueMaxContactsResponse x
Prelude.Generic)
newUpdateQueueMaxContactsResponse ::
UpdateQueueMaxContactsResponse
newUpdateQueueMaxContactsResponse :: UpdateQueueMaxContactsResponse
newUpdateQueueMaxContactsResponse =
UpdateQueueMaxContactsResponse
UpdateQueueMaxContactsResponse'
instance
Prelude.NFData
UpdateQueueMaxContactsResponse