{-# 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.ConnectParticipant.SendEvent
-- 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)
--
-- Sends an event. Note that ConnectionToken is used for invoking this API
-- instead of ParticipantToken.
--
-- The Amazon Connect Participant Service APIs do not use
-- <https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html Signature Version 4 authentication>.
module Amazonka.ConnectParticipant.SendEvent
  ( -- * Creating a Request
    SendEvent (..),
    newSendEvent,

    -- * Request Lenses
    sendEvent_clientToken,
    sendEvent_content,
    sendEvent_contentType,
    sendEvent_connectionToken,

    -- * Destructuring the Response
    SendEventResponse (..),
    newSendEventResponse,

    -- * Response Lenses
    sendEventResponse_absoluteTime,
    sendEventResponse_id,
    sendEventResponse_httpStatus,
  )
where

import Amazonka.ConnectParticipant.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

-- | /See:/ 'newSendEvent' smart constructor.
data SendEvent = SendEvent'
  { -- | A unique, case-sensitive identifier that you provide to ensure the
    -- idempotency of the request.
    SendEvent -> Maybe Text
clientToken :: Prelude.Maybe Prelude.Text,
    -- | The content of the event to be sent (for example, message text). This is
    -- not yet supported.
    SendEvent -> Maybe Text
content :: Prelude.Maybe Prelude.Text,
    -- | The content type of the request. Supported types are:
    --
    -- -   application\/vnd.amazonaws.connect.event.typing
    --
    -- -   application\/vnd.amazonaws.connect.event.connection.acknowledged
    SendEvent -> Text
contentType :: Prelude.Text,
    -- | The authentication token associated with the participant\'s connection.
    SendEvent -> Text
connectionToken :: Prelude.Text
  }
  deriving (SendEvent -> SendEvent -> Bool
(SendEvent -> SendEvent -> Bool)
-> (SendEvent -> SendEvent -> Bool) -> Eq SendEvent
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: SendEvent -> SendEvent -> Bool
$c/= :: SendEvent -> SendEvent -> Bool
== :: SendEvent -> SendEvent -> Bool
$c== :: SendEvent -> SendEvent -> Bool
Prelude.Eq, ReadPrec [SendEvent]
ReadPrec SendEvent
Int -> ReadS SendEvent
ReadS [SendEvent]
(Int -> ReadS SendEvent)
-> ReadS [SendEvent]
-> ReadPrec SendEvent
-> ReadPrec [SendEvent]
-> Read SendEvent
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [SendEvent]
$creadListPrec :: ReadPrec [SendEvent]
readPrec :: ReadPrec SendEvent
$creadPrec :: ReadPrec SendEvent
readList :: ReadS [SendEvent]
$creadList :: ReadS [SendEvent]
readsPrec :: Int -> ReadS SendEvent
$creadsPrec :: Int -> ReadS SendEvent
Prelude.Read, Int -> SendEvent -> ShowS
[SendEvent] -> ShowS
SendEvent -> String
(Int -> SendEvent -> ShowS)
-> (SendEvent -> String)
-> ([SendEvent] -> ShowS)
-> Show SendEvent
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [SendEvent] -> ShowS
$cshowList :: [SendEvent] -> ShowS
show :: SendEvent -> String
$cshow :: SendEvent -> String
showsPrec :: Int -> SendEvent -> ShowS
$cshowsPrec :: Int -> SendEvent -> ShowS
Prelude.Show, (forall x. SendEvent -> Rep SendEvent x)
-> (forall x. Rep SendEvent x -> SendEvent) -> Generic SendEvent
forall x. Rep SendEvent x -> SendEvent
forall x. SendEvent -> Rep SendEvent x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep SendEvent x -> SendEvent
$cfrom :: forall x. SendEvent -> Rep SendEvent x
Prelude.Generic)

-- |
-- Create a value of 'SendEvent' 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:
--
-- 'clientToken', 'sendEvent_clientToken' - A unique, case-sensitive identifier that you provide to ensure the
-- idempotency of the request.
--
-- 'content', 'sendEvent_content' - The content of the event to be sent (for example, message text). This is
-- not yet supported.
--
-- 'contentType', 'sendEvent_contentType' - The content type of the request. Supported types are:
--
-- -   application\/vnd.amazonaws.connect.event.typing
--
-- -   application\/vnd.amazonaws.connect.event.connection.acknowledged
--
-- 'connectionToken', 'sendEvent_connectionToken' - The authentication token associated with the participant\'s connection.
newSendEvent ::
  -- | 'contentType'
  Prelude.Text ->
  -- | 'connectionToken'
  Prelude.Text ->
  SendEvent
newSendEvent :: Text -> Text -> SendEvent
newSendEvent Text
pContentType_ Text
pConnectionToken_ =
  SendEvent' :: Maybe Text -> Maybe Text -> Text -> Text -> SendEvent
SendEvent'
    { $sel:clientToken:SendEvent' :: Maybe Text
clientToken = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:content:SendEvent' :: Maybe Text
content = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:contentType:SendEvent' :: Text
contentType = Text
pContentType_,
      $sel:connectionToken:SendEvent' :: Text
connectionToken = Text
pConnectionToken_
    }

-- | A unique, case-sensitive identifier that you provide to ensure the
-- idempotency of the request.
sendEvent_clientToken :: Lens.Lens' SendEvent (Prelude.Maybe Prelude.Text)
sendEvent_clientToken :: (Maybe Text -> f (Maybe Text)) -> SendEvent -> f SendEvent
sendEvent_clientToken = (SendEvent -> Maybe Text)
-> (SendEvent -> Maybe Text -> SendEvent)
-> Lens SendEvent SendEvent (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SendEvent' {Maybe Text
clientToken :: Maybe Text
$sel:clientToken:SendEvent' :: SendEvent -> Maybe Text
clientToken} -> Maybe Text
clientToken) (\s :: SendEvent
s@SendEvent' {} Maybe Text
a -> SendEvent
s {$sel:clientToken:SendEvent' :: Maybe Text
clientToken = Maybe Text
a} :: SendEvent)

-- | The content of the event to be sent (for example, message text). This is
-- not yet supported.
sendEvent_content :: Lens.Lens' SendEvent (Prelude.Maybe Prelude.Text)
sendEvent_content :: (Maybe Text -> f (Maybe Text)) -> SendEvent -> f SendEvent
sendEvent_content = (SendEvent -> Maybe Text)
-> (SendEvent -> Maybe Text -> SendEvent)
-> Lens SendEvent SendEvent (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SendEvent' {Maybe Text
content :: Maybe Text
$sel:content:SendEvent' :: SendEvent -> Maybe Text
content} -> Maybe Text
content) (\s :: SendEvent
s@SendEvent' {} Maybe Text
a -> SendEvent
s {$sel:content:SendEvent' :: Maybe Text
content = Maybe Text
a} :: SendEvent)

-- | The content type of the request. Supported types are:
--
-- -   application\/vnd.amazonaws.connect.event.typing
--
-- -   application\/vnd.amazonaws.connect.event.connection.acknowledged
sendEvent_contentType :: Lens.Lens' SendEvent Prelude.Text
sendEvent_contentType :: (Text -> f Text) -> SendEvent -> f SendEvent
sendEvent_contentType = (SendEvent -> Text)
-> (SendEvent -> Text -> SendEvent)
-> Lens SendEvent SendEvent Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SendEvent' {Text
contentType :: Text
$sel:contentType:SendEvent' :: SendEvent -> Text
contentType} -> Text
contentType) (\s :: SendEvent
s@SendEvent' {} Text
a -> SendEvent
s {$sel:contentType:SendEvent' :: Text
contentType = Text
a} :: SendEvent)

-- | The authentication token associated with the participant\'s connection.
sendEvent_connectionToken :: Lens.Lens' SendEvent Prelude.Text
sendEvent_connectionToken :: (Text -> f Text) -> SendEvent -> f SendEvent
sendEvent_connectionToken = (SendEvent -> Text)
-> (SendEvent -> Text -> SendEvent)
-> Lens SendEvent SendEvent Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SendEvent' {Text
connectionToken :: Text
$sel:connectionToken:SendEvent' :: SendEvent -> Text
connectionToken} -> Text
connectionToken) (\s :: SendEvent
s@SendEvent' {} Text
a -> SendEvent
s {$sel:connectionToken:SendEvent' :: Text
connectionToken = Text
a} :: SendEvent)

instance Core.AWSRequest SendEvent where
  type AWSResponse SendEvent = SendEventResponse
  request :: SendEvent -> Request SendEvent
request = Service -> SendEvent -> Request SendEvent
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy SendEvent
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse SendEvent)))
response =
    (Int
 -> ResponseHeaders
 -> Object
 -> Either String (AWSResponse SendEvent))
-> Logger
-> Service
-> Proxy SendEvent
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse SendEvent)))
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 Text -> Maybe Text -> Int -> SendEventResponse
SendEventResponse'
            (Maybe Text -> Maybe Text -> Int -> SendEventResponse)
-> Either String (Maybe Text)
-> Either String (Maybe Text -> Int -> SendEventResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe Text)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"AbsoluteTime")
            Either String (Maybe Text -> Int -> SendEventResponse)
-> Either String (Maybe Text)
-> Either String (Int -> SendEventResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String (Maybe Text)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"Id")
            Either String (Int -> SendEventResponse)
-> Either String Int -> Either String SendEventResponse
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 SendEvent

instance Prelude.NFData SendEvent

instance Core.ToHeaders SendEvent where
  toHeaders :: SendEvent -> ResponseHeaders
toHeaders SendEvent' {Maybe Text
Text
connectionToken :: Text
contentType :: Text
content :: Maybe Text
clientToken :: Maybe Text
$sel:connectionToken:SendEvent' :: SendEvent -> Text
$sel:contentType:SendEvent' :: SendEvent -> Text
$sel:content:SendEvent' :: SendEvent -> Maybe Text
$sel:clientToken:SendEvent' :: SendEvent -> Maybe Text
..} =
    [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ HeaderName
"X-Amz-Bearer" HeaderName -> Text -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# Text
connectionToken,
        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 SendEvent where
  toJSON :: SendEvent -> Value
toJSON SendEvent' {Maybe Text
Text
connectionToken :: Text
contentType :: Text
content :: Maybe Text
clientToken :: Maybe Text
$sel:connectionToken:SendEvent' :: SendEvent -> Text
$sel:contentType:SendEvent' :: SendEvent -> Text
$sel:content:SendEvent' :: SendEvent -> Maybe Text
$sel:clientToken:SendEvent' :: SendEvent -> Maybe Text
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Text
"ClientToken" 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
clientToken,
            (Text
"Content" 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
content,
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"ContentType" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
contentType)
          ]
      )

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

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

-- | /See:/ 'newSendEventResponse' smart constructor.
data SendEventResponse = SendEventResponse'
  { -- | The time when the event was sent.
    --
    -- It\'s specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For
    -- example, 2019-11-08T02:41:28.172Z.
    SendEventResponse -> Maybe Text
absoluteTime :: Prelude.Maybe Prelude.Text,
    -- | The ID of the response.
    SendEventResponse -> Maybe Text
id :: Prelude.Maybe Prelude.Text,
    -- | The response's http status code.
    SendEventResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (SendEventResponse -> SendEventResponse -> Bool
(SendEventResponse -> SendEventResponse -> Bool)
-> (SendEventResponse -> SendEventResponse -> Bool)
-> Eq SendEventResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: SendEventResponse -> SendEventResponse -> Bool
$c/= :: SendEventResponse -> SendEventResponse -> Bool
== :: SendEventResponse -> SendEventResponse -> Bool
$c== :: SendEventResponse -> SendEventResponse -> Bool
Prelude.Eq, ReadPrec [SendEventResponse]
ReadPrec SendEventResponse
Int -> ReadS SendEventResponse
ReadS [SendEventResponse]
(Int -> ReadS SendEventResponse)
-> ReadS [SendEventResponse]
-> ReadPrec SendEventResponse
-> ReadPrec [SendEventResponse]
-> Read SendEventResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [SendEventResponse]
$creadListPrec :: ReadPrec [SendEventResponse]
readPrec :: ReadPrec SendEventResponse
$creadPrec :: ReadPrec SendEventResponse
readList :: ReadS [SendEventResponse]
$creadList :: ReadS [SendEventResponse]
readsPrec :: Int -> ReadS SendEventResponse
$creadsPrec :: Int -> ReadS SendEventResponse
Prelude.Read, Int -> SendEventResponse -> ShowS
[SendEventResponse] -> ShowS
SendEventResponse -> String
(Int -> SendEventResponse -> ShowS)
-> (SendEventResponse -> String)
-> ([SendEventResponse] -> ShowS)
-> Show SendEventResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [SendEventResponse] -> ShowS
$cshowList :: [SendEventResponse] -> ShowS
show :: SendEventResponse -> String
$cshow :: SendEventResponse -> String
showsPrec :: Int -> SendEventResponse -> ShowS
$cshowsPrec :: Int -> SendEventResponse -> ShowS
Prelude.Show, (forall x. SendEventResponse -> Rep SendEventResponse x)
-> (forall x. Rep SendEventResponse x -> SendEventResponse)
-> Generic SendEventResponse
forall x. Rep SendEventResponse x -> SendEventResponse
forall x. SendEventResponse -> Rep SendEventResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep SendEventResponse x -> SendEventResponse
$cfrom :: forall x. SendEventResponse -> Rep SendEventResponse x
Prelude.Generic)

-- |
-- Create a value of 'SendEventResponse' 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:
--
-- 'absoluteTime', 'sendEventResponse_absoluteTime' - The time when the event was sent.
--
-- It\'s specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For
-- example, 2019-11-08T02:41:28.172Z.
--
-- 'id', 'sendEventResponse_id' - The ID of the response.
--
-- 'httpStatus', 'sendEventResponse_httpStatus' - The response's http status code.
newSendEventResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  SendEventResponse
newSendEventResponse :: Int -> SendEventResponse
newSendEventResponse Int
pHttpStatus_ =
  SendEventResponse' :: Maybe Text -> Maybe Text -> Int -> SendEventResponse
SendEventResponse'
    { $sel:absoluteTime:SendEventResponse' :: Maybe Text
absoluteTime = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:id:SendEventResponse' :: Maybe Text
id = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:SendEventResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | The time when the event was sent.
--
-- It\'s specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For
-- example, 2019-11-08T02:41:28.172Z.
sendEventResponse_absoluteTime :: Lens.Lens' SendEventResponse (Prelude.Maybe Prelude.Text)
sendEventResponse_absoluteTime :: (Maybe Text -> f (Maybe Text))
-> SendEventResponse -> f SendEventResponse
sendEventResponse_absoluteTime = (SendEventResponse -> Maybe Text)
-> (SendEventResponse -> Maybe Text -> SendEventResponse)
-> Lens
     SendEventResponse SendEventResponse (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SendEventResponse' {Maybe Text
absoluteTime :: Maybe Text
$sel:absoluteTime:SendEventResponse' :: SendEventResponse -> Maybe Text
absoluteTime} -> Maybe Text
absoluteTime) (\s :: SendEventResponse
s@SendEventResponse' {} Maybe Text
a -> SendEventResponse
s {$sel:absoluteTime:SendEventResponse' :: Maybe Text
absoluteTime = Maybe Text
a} :: SendEventResponse)

-- | The ID of the response.
sendEventResponse_id :: Lens.Lens' SendEventResponse (Prelude.Maybe Prelude.Text)
sendEventResponse_id :: (Maybe Text -> f (Maybe Text))
-> SendEventResponse -> f SendEventResponse
sendEventResponse_id = (SendEventResponse -> Maybe Text)
-> (SendEventResponse -> Maybe Text -> SendEventResponse)
-> Lens
     SendEventResponse SendEventResponse (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SendEventResponse' {Maybe Text
id :: Maybe Text
$sel:id:SendEventResponse' :: SendEventResponse -> Maybe Text
id} -> Maybe Text
id) (\s :: SendEventResponse
s@SendEventResponse' {} Maybe Text
a -> SendEventResponse
s {$sel:id:SendEventResponse' :: Maybe Text
id = Maybe Text
a} :: SendEventResponse)

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

instance Prelude.NFData SendEventResponse