{-# 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.IoTEvents.UpdateInput
-- 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)
--
-- Updates an input.
module Amazonka.IoTEvents.UpdateInput
  ( -- * Creating a Request
    UpdateInput (..),
    newUpdateInput,

    -- * Request Lenses
    updateInput_inputDescription,
    updateInput_inputName,
    updateInput_inputDefinition,

    -- * Destructuring the Response
    UpdateInputResponse (..),
    newUpdateInputResponse,

    -- * Response Lenses
    updateInputResponse_inputConfiguration,
    updateInputResponse_httpStatus,
  )
where

import qualified Amazonka.Core as Core
import Amazonka.IoTEvents.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:/ 'newUpdateInput' smart constructor.
data UpdateInput = UpdateInput'
  { -- | A brief description of the input.
    UpdateInput -> Maybe Text
inputDescription :: Prelude.Maybe Prelude.Text,
    -- | The name of the input you want to update.
    UpdateInput -> Text
inputName :: Prelude.Text,
    -- | The definition of the input.
    UpdateInput -> InputDefinition
inputDefinition :: InputDefinition
  }
  deriving (UpdateInput -> UpdateInput -> Bool
(UpdateInput -> UpdateInput -> Bool)
-> (UpdateInput -> UpdateInput -> Bool) -> Eq UpdateInput
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateInput -> UpdateInput -> Bool
$c/= :: UpdateInput -> UpdateInput -> Bool
== :: UpdateInput -> UpdateInput -> Bool
$c== :: UpdateInput -> UpdateInput -> Bool
Prelude.Eq, ReadPrec [UpdateInput]
ReadPrec UpdateInput
Int -> ReadS UpdateInput
ReadS [UpdateInput]
(Int -> ReadS UpdateInput)
-> ReadS [UpdateInput]
-> ReadPrec UpdateInput
-> ReadPrec [UpdateInput]
-> Read UpdateInput
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateInput]
$creadListPrec :: ReadPrec [UpdateInput]
readPrec :: ReadPrec UpdateInput
$creadPrec :: ReadPrec UpdateInput
readList :: ReadS [UpdateInput]
$creadList :: ReadS [UpdateInput]
readsPrec :: Int -> ReadS UpdateInput
$creadsPrec :: Int -> ReadS UpdateInput
Prelude.Read, Int -> UpdateInput -> ShowS
[UpdateInput] -> ShowS
UpdateInput -> String
(Int -> UpdateInput -> ShowS)
-> (UpdateInput -> String)
-> ([UpdateInput] -> ShowS)
-> Show UpdateInput
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateInput] -> ShowS
$cshowList :: [UpdateInput] -> ShowS
show :: UpdateInput -> String
$cshow :: UpdateInput -> String
showsPrec :: Int -> UpdateInput -> ShowS
$cshowsPrec :: Int -> UpdateInput -> ShowS
Prelude.Show, (forall x. UpdateInput -> Rep UpdateInput x)
-> (forall x. Rep UpdateInput x -> UpdateInput)
-> Generic UpdateInput
forall x. Rep UpdateInput x -> UpdateInput
forall x. UpdateInput -> Rep UpdateInput x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateInput x -> UpdateInput
$cfrom :: forall x. UpdateInput -> Rep UpdateInput x
Prelude.Generic)

-- |
-- Create a value of 'UpdateInput' 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:
--
-- 'inputDescription', 'updateInput_inputDescription' - A brief description of the input.
--
-- 'inputName', 'updateInput_inputName' - The name of the input you want to update.
--
-- 'inputDefinition', 'updateInput_inputDefinition' - The definition of the input.
newUpdateInput ::
  -- | 'inputName'
  Prelude.Text ->
  -- | 'inputDefinition'
  InputDefinition ->
  UpdateInput
newUpdateInput :: Text -> InputDefinition -> UpdateInput
newUpdateInput Text
pInputName_ InputDefinition
pInputDefinition_ =
  UpdateInput' :: Maybe Text -> Text -> InputDefinition -> UpdateInput
UpdateInput'
    { $sel:inputDescription:UpdateInput' :: Maybe Text
inputDescription = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:inputName:UpdateInput' :: Text
inputName = Text
pInputName_,
      $sel:inputDefinition:UpdateInput' :: InputDefinition
inputDefinition = InputDefinition
pInputDefinition_
    }

-- | A brief description of the input.
updateInput_inputDescription :: Lens.Lens' UpdateInput (Prelude.Maybe Prelude.Text)
updateInput_inputDescription :: (Maybe Text -> f (Maybe Text)) -> UpdateInput -> f UpdateInput
updateInput_inputDescription = (UpdateInput -> Maybe Text)
-> (UpdateInput -> Maybe Text -> UpdateInput)
-> Lens UpdateInput UpdateInput (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateInput' {Maybe Text
inputDescription :: Maybe Text
$sel:inputDescription:UpdateInput' :: UpdateInput -> Maybe Text
inputDescription} -> Maybe Text
inputDescription) (\s :: UpdateInput
s@UpdateInput' {} Maybe Text
a -> UpdateInput
s {$sel:inputDescription:UpdateInput' :: Maybe Text
inputDescription = Maybe Text
a} :: UpdateInput)

-- | The name of the input you want to update.
updateInput_inputName :: Lens.Lens' UpdateInput Prelude.Text
updateInput_inputName :: (Text -> f Text) -> UpdateInput -> f UpdateInput
updateInput_inputName = (UpdateInput -> Text)
-> (UpdateInput -> Text -> UpdateInput)
-> Lens UpdateInput UpdateInput Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateInput' {Text
inputName :: Text
$sel:inputName:UpdateInput' :: UpdateInput -> Text
inputName} -> Text
inputName) (\s :: UpdateInput
s@UpdateInput' {} Text
a -> UpdateInput
s {$sel:inputName:UpdateInput' :: Text
inputName = Text
a} :: UpdateInput)

-- | The definition of the input.
updateInput_inputDefinition :: Lens.Lens' UpdateInput InputDefinition
updateInput_inputDefinition :: (InputDefinition -> f InputDefinition)
-> UpdateInput -> f UpdateInput
updateInput_inputDefinition = (UpdateInput -> InputDefinition)
-> (UpdateInput -> InputDefinition -> UpdateInput)
-> Lens UpdateInput UpdateInput InputDefinition InputDefinition
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateInput' {InputDefinition
inputDefinition :: InputDefinition
$sel:inputDefinition:UpdateInput' :: UpdateInput -> InputDefinition
inputDefinition} -> InputDefinition
inputDefinition) (\s :: UpdateInput
s@UpdateInput' {} InputDefinition
a -> UpdateInput
s {$sel:inputDefinition:UpdateInput' :: InputDefinition
inputDefinition = InputDefinition
a} :: UpdateInput)

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

instance Prelude.NFData UpdateInput

instance Core.ToHeaders UpdateInput where
  toHeaders :: UpdateInput -> ResponseHeaders
toHeaders = ResponseHeaders -> UpdateInput -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty

instance Core.ToJSON UpdateInput where
  toJSON :: UpdateInput -> Value
toJSON UpdateInput' {Maybe Text
Text
InputDefinition
inputDefinition :: InputDefinition
inputName :: Text
inputDescription :: Maybe Text
$sel:inputDefinition:UpdateInput' :: UpdateInput -> InputDefinition
$sel:inputName:UpdateInput' :: UpdateInput -> Text
$sel:inputDescription:UpdateInput' :: UpdateInput -> Maybe Text
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Text
"inputDescription" 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
inputDescription,
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
              (Text
"inputDefinition" Text -> InputDefinition -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= InputDefinition
inputDefinition)
          ]
      )

instance Core.ToPath UpdateInput where
  toPath :: UpdateInput -> ByteString
toPath UpdateInput' {Maybe Text
Text
InputDefinition
inputDefinition :: InputDefinition
inputName :: Text
inputDescription :: Maybe Text
$sel:inputDefinition:UpdateInput' :: UpdateInput -> InputDefinition
$sel:inputName:UpdateInput' :: UpdateInput -> Text
$sel:inputDescription:UpdateInput' :: UpdateInput -> Maybe Text
..} =
    [ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat [ByteString
"/inputs/", Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
inputName]

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

-- | /See:/ 'newUpdateInputResponse' smart constructor.
data UpdateInputResponse = UpdateInputResponse'
  { -- | Information about the configuration of the input.
    UpdateInputResponse -> Maybe InputConfiguration
inputConfiguration :: Prelude.Maybe InputConfiguration,
    -- | The response's http status code.
    UpdateInputResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (UpdateInputResponse -> UpdateInputResponse -> Bool
(UpdateInputResponse -> UpdateInputResponse -> Bool)
-> (UpdateInputResponse -> UpdateInputResponse -> Bool)
-> Eq UpdateInputResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateInputResponse -> UpdateInputResponse -> Bool
$c/= :: UpdateInputResponse -> UpdateInputResponse -> Bool
== :: UpdateInputResponse -> UpdateInputResponse -> Bool
$c== :: UpdateInputResponse -> UpdateInputResponse -> Bool
Prelude.Eq, ReadPrec [UpdateInputResponse]
ReadPrec UpdateInputResponse
Int -> ReadS UpdateInputResponse
ReadS [UpdateInputResponse]
(Int -> ReadS UpdateInputResponse)
-> ReadS [UpdateInputResponse]
-> ReadPrec UpdateInputResponse
-> ReadPrec [UpdateInputResponse]
-> Read UpdateInputResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateInputResponse]
$creadListPrec :: ReadPrec [UpdateInputResponse]
readPrec :: ReadPrec UpdateInputResponse
$creadPrec :: ReadPrec UpdateInputResponse
readList :: ReadS [UpdateInputResponse]
$creadList :: ReadS [UpdateInputResponse]
readsPrec :: Int -> ReadS UpdateInputResponse
$creadsPrec :: Int -> ReadS UpdateInputResponse
Prelude.Read, Int -> UpdateInputResponse -> ShowS
[UpdateInputResponse] -> ShowS
UpdateInputResponse -> String
(Int -> UpdateInputResponse -> ShowS)
-> (UpdateInputResponse -> String)
-> ([UpdateInputResponse] -> ShowS)
-> Show UpdateInputResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateInputResponse] -> ShowS
$cshowList :: [UpdateInputResponse] -> ShowS
show :: UpdateInputResponse -> String
$cshow :: UpdateInputResponse -> String
showsPrec :: Int -> UpdateInputResponse -> ShowS
$cshowsPrec :: Int -> UpdateInputResponse -> ShowS
Prelude.Show, (forall x. UpdateInputResponse -> Rep UpdateInputResponse x)
-> (forall x. Rep UpdateInputResponse x -> UpdateInputResponse)
-> Generic UpdateInputResponse
forall x. Rep UpdateInputResponse x -> UpdateInputResponse
forall x. UpdateInputResponse -> Rep UpdateInputResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateInputResponse x -> UpdateInputResponse
$cfrom :: forall x. UpdateInputResponse -> Rep UpdateInputResponse x
Prelude.Generic)

-- |
-- Create a value of 'UpdateInputResponse' 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:
--
-- 'inputConfiguration', 'updateInputResponse_inputConfiguration' - Information about the configuration of the input.
--
-- 'httpStatus', 'updateInputResponse_httpStatus' - The response's http status code.
newUpdateInputResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  UpdateInputResponse
newUpdateInputResponse :: Int -> UpdateInputResponse
newUpdateInputResponse Int
pHttpStatus_ =
  UpdateInputResponse' :: Maybe InputConfiguration -> Int -> UpdateInputResponse
UpdateInputResponse'
    { $sel:inputConfiguration:UpdateInputResponse' :: Maybe InputConfiguration
inputConfiguration =
        Maybe InputConfiguration
forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:UpdateInputResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | Information about the configuration of the input.
updateInputResponse_inputConfiguration :: Lens.Lens' UpdateInputResponse (Prelude.Maybe InputConfiguration)
updateInputResponse_inputConfiguration :: (Maybe InputConfiguration -> f (Maybe InputConfiguration))
-> UpdateInputResponse -> f UpdateInputResponse
updateInputResponse_inputConfiguration = (UpdateInputResponse -> Maybe InputConfiguration)
-> (UpdateInputResponse
    -> Maybe InputConfiguration -> UpdateInputResponse)
-> Lens
     UpdateInputResponse
     UpdateInputResponse
     (Maybe InputConfiguration)
     (Maybe InputConfiguration)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateInputResponse' {Maybe InputConfiguration
inputConfiguration :: Maybe InputConfiguration
$sel:inputConfiguration:UpdateInputResponse' :: UpdateInputResponse -> Maybe InputConfiguration
inputConfiguration} -> Maybe InputConfiguration
inputConfiguration) (\s :: UpdateInputResponse
s@UpdateInputResponse' {} Maybe InputConfiguration
a -> UpdateInputResponse
s {$sel:inputConfiguration:UpdateInputResponse' :: Maybe InputConfiguration
inputConfiguration = Maybe InputConfiguration
a} :: UpdateInputResponse)

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

instance Prelude.NFData UpdateInputResponse