{-# 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.IoT.UpdateIndexingConfiguration
(
UpdateIndexingConfiguration (..),
newUpdateIndexingConfiguration,
updateIndexingConfiguration_thingGroupIndexingConfiguration,
updateIndexingConfiguration_thingIndexingConfiguration,
UpdateIndexingConfigurationResponse (..),
newUpdateIndexingConfigurationResponse,
updateIndexingConfigurationResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import Amazonka.IoT.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 UpdateIndexingConfiguration = UpdateIndexingConfiguration'
{
UpdateIndexingConfiguration
-> Maybe ThingGroupIndexingConfiguration
thingGroupIndexingConfiguration :: Prelude.Maybe ThingGroupIndexingConfiguration,
UpdateIndexingConfiguration -> Maybe ThingIndexingConfiguration
thingIndexingConfiguration :: Prelude.Maybe ThingIndexingConfiguration
}
deriving (UpdateIndexingConfiguration -> UpdateIndexingConfiguration -> Bool
(UpdateIndexingConfiguration
-> UpdateIndexingConfiguration -> Bool)
-> (UpdateIndexingConfiguration
-> UpdateIndexingConfiguration -> Bool)
-> Eq UpdateIndexingConfiguration
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateIndexingConfiguration -> UpdateIndexingConfiguration -> Bool
$c/= :: UpdateIndexingConfiguration -> UpdateIndexingConfiguration -> Bool
== :: UpdateIndexingConfiguration -> UpdateIndexingConfiguration -> Bool
$c== :: UpdateIndexingConfiguration -> UpdateIndexingConfiguration -> Bool
Prelude.Eq, ReadPrec [UpdateIndexingConfiguration]
ReadPrec UpdateIndexingConfiguration
Int -> ReadS UpdateIndexingConfiguration
ReadS [UpdateIndexingConfiguration]
(Int -> ReadS UpdateIndexingConfiguration)
-> ReadS [UpdateIndexingConfiguration]
-> ReadPrec UpdateIndexingConfiguration
-> ReadPrec [UpdateIndexingConfiguration]
-> Read UpdateIndexingConfiguration
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateIndexingConfiguration]
$creadListPrec :: ReadPrec [UpdateIndexingConfiguration]
readPrec :: ReadPrec UpdateIndexingConfiguration
$creadPrec :: ReadPrec UpdateIndexingConfiguration
readList :: ReadS [UpdateIndexingConfiguration]
$creadList :: ReadS [UpdateIndexingConfiguration]
readsPrec :: Int -> ReadS UpdateIndexingConfiguration
$creadsPrec :: Int -> ReadS UpdateIndexingConfiguration
Prelude.Read, Int -> UpdateIndexingConfiguration -> ShowS
[UpdateIndexingConfiguration] -> ShowS
UpdateIndexingConfiguration -> String
(Int -> UpdateIndexingConfiguration -> ShowS)
-> (UpdateIndexingConfiguration -> String)
-> ([UpdateIndexingConfiguration] -> ShowS)
-> Show UpdateIndexingConfiguration
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateIndexingConfiguration] -> ShowS
$cshowList :: [UpdateIndexingConfiguration] -> ShowS
show :: UpdateIndexingConfiguration -> String
$cshow :: UpdateIndexingConfiguration -> String
showsPrec :: Int -> UpdateIndexingConfiguration -> ShowS
$cshowsPrec :: Int -> UpdateIndexingConfiguration -> ShowS
Prelude.Show, (forall x.
UpdateIndexingConfiguration -> Rep UpdateIndexingConfiguration x)
-> (forall x.
Rep UpdateIndexingConfiguration x -> UpdateIndexingConfiguration)
-> Generic UpdateIndexingConfiguration
forall x.
Rep UpdateIndexingConfiguration x -> UpdateIndexingConfiguration
forall x.
UpdateIndexingConfiguration -> Rep UpdateIndexingConfiguration x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep UpdateIndexingConfiguration x -> UpdateIndexingConfiguration
$cfrom :: forall x.
UpdateIndexingConfiguration -> Rep UpdateIndexingConfiguration x
Prelude.Generic)
newUpdateIndexingConfiguration ::
UpdateIndexingConfiguration
newUpdateIndexingConfiguration :: UpdateIndexingConfiguration
newUpdateIndexingConfiguration =
UpdateIndexingConfiguration' :: Maybe ThingGroupIndexingConfiguration
-> Maybe ThingIndexingConfiguration -> UpdateIndexingConfiguration
UpdateIndexingConfiguration'
{ $sel:thingGroupIndexingConfiguration:UpdateIndexingConfiguration' :: Maybe ThingGroupIndexingConfiguration
thingGroupIndexingConfiguration =
Maybe ThingGroupIndexingConfiguration
forall a. Maybe a
Prelude.Nothing,
$sel:thingIndexingConfiguration:UpdateIndexingConfiguration' :: Maybe ThingIndexingConfiguration
thingIndexingConfiguration = Maybe ThingIndexingConfiguration
forall a. Maybe a
Prelude.Nothing
}
updateIndexingConfiguration_thingGroupIndexingConfiguration :: Lens.Lens' UpdateIndexingConfiguration (Prelude.Maybe ThingGroupIndexingConfiguration)
updateIndexingConfiguration_thingGroupIndexingConfiguration :: (Maybe ThingGroupIndexingConfiguration
-> f (Maybe ThingGroupIndexingConfiguration))
-> UpdateIndexingConfiguration -> f UpdateIndexingConfiguration
updateIndexingConfiguration_thingGroupIndexingConfiguration = (UpdateIndexingConfiguration
-> Maybe ThingGroupIndexingConfiguration)
-> (UpdateIndexingConfiguration
-> Maybe ThingGroupIndexingConfiguration
-> UpdateIndexingConfiguration)
-> Lens
UpdateIndexingConfiguration
UpdateIndexingConfiguration
(Maybe ThingGroupIndexingConfiguration)
(Maybe ThingGroupIndexingConfiguration)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIndexingConfiguration' {Maybe ThingGroupIndexingConfiguration
thingGroupIndexingConfiguration :: Maybe ThingGroupIndexingConfiguration
$sel:thingGroupIndexingConfiguration:UpdateIndexingConfiguration' :: UpdateIndexingConfiguration
-> Maybe ThingGroupIndexingConfiguration
thingGroupIndexingConfiguration} -> Maybe ThingGroupIndexingConfiguration
thingGroupIndexingConfiguration) (\s :: UpdateIndexingConfiguration
s@UpdateIndexingConfiguration' {} Maybe ThingGroupIndexingConfiguration
a -> UpdateIndexingConfiguration
s {$sel:thingGroupIndexingConfiguration:UpdateIndexingConfiguration' :: Maybe ThingGroupIndexingConfiguration
thingGroupIndexingConfiguration = Maybe ThingGroupIndexingConfiguration
a} :: UpdateIndexingConfiguration)
updateIndexingConfiguration_thingIndexingConfiguration :: Lens.Lens' UpdateIndexingConfiguration (Prelude.Maybe ThingIndexingConfiguration)
updateIndexingConfiguration_thingIndexingConfiguration :: (Maybe ThingIndexingConfiguration
-> f (Maybe ThingIndexingConfiguration))
-> UpdateIndexingConfiguration -> f UpdateIndexingConfiguration
updateIndexingConfiguration_thingIndexingConfiguration = (UpdateIndexingConfiguration -> Maybe ThingIndexingConfiguration)
-> (UpdateIndexingConfiguration
-> Maybe ThingIndexingConfiguration -> UpdateIndexingConfiguration)
-> Lens
UpdateIndexingConfiguration
UpdateIndexingConfiguration
(Maybe ThingIndexingConfiguration)
(Maybe ThingIndexingConfiguration)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIndexingConfiguration' {Maybe ThingIndexingConfiguration
thingIndexingConfiguration :: Maybe ThingIndexingConfiguration
$sel:thingIndexingConfiguration:UpdateIndexingConfiguration' :: UpdateIndexingConfiguration -> Maybe ThingIndexingConfiguration
thingIndexingConfiguration} -> Maybe ThingIndexingConfiguration
thingIndexingConfiguration) (\s :: UpdateIndexingConfiguration
s@UpdateIndexingConfiguration' {} Maybe ThingIndexingConfiguration
a -> UpdateIndexingConfiguration
s {$sel:thingIndexingConfiguration:UpdateIndexingConfiguration' :: Maybe ThingIndexingConfiguration
thingIndexingConfiguration = Maybe ThingIndexingConfiguration
a} :: UpdateIndexingConfiguration)
instance Core.AWSRequest UpdateIndexingConfiguration where
type
AWSResponse UpdateIndexingConfiguration =
UpdateIndexingConfigurationResponse
request :: UpdateIndexingConfiguration -> Request UpdateIndexingConfiguration
request = Service
-> UpdateIndexingConfiguration
-> Request UpdateIndexingConfiguration
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy UpdateIndexingConfiguration
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdateIndexingConfiguration)))
response =
(Int
-> ResponseHeaders
-> ()
-> Either String (AWSResponse UpdateIndexingConfiguration))
-> Logger
-> Service
-> Proxy UpdateIndexingConfiguration
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdateIndexingConfiguration)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
( \Int
s ResponseHeaders
h ()
x ->
Int -> UpdateIndexingConfigurationResponse
UpdateIndexingConfigurationResponse'
(Int -> UpdateIndexingConfigurationResponse)
-> Either String Int
-> Either String UpdateIndexingConfigurationResponse
forall (f :: * -> *) a b. Functor 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 UpdateIndexingConfiguration
instance Prelude.NFData UpdateIndexingConfiguration
instance Core.ToHeaders UpdateIndexingConfiguration where
toHeaders :: UpdateIndexingConfiguration -> ResponseHeaders
toHeaders = ResponseHeaders -> UpdateIndexingConfiguration -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty
instance Core.ToJSON UpdateIndexingConfiguration where
toJSON :: UpdateIndexingConfiguration -> Value
toJSON UpdateIndexingConfiguration' {Maybe ThingGroupIndexingConfiguration
Maybe ThingIndexingConfiguration
thingIndexingConfiguration :: Maybe ThingIndexingConfiguration
thingGroupIndexingConfiguration :: Maybe ThingGroupIndexingConfiguration
$sel:thingIndexingConfiguration:UpdateIndexingConfiguration' :: UpdateIndexingConfiguration -> Maybe ThingIndexingConfiguration
$sel:thingGroupIndexingConfiguration:UpdateIndexingConfiguration' :: UpdateIndexingConfiguration
-> Maybe ThingGroupIndexingConfiguration
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"thingGroupIndexingConfiguration" Text -> ThingGroupIndexingConfiguration -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
(ThingGroupIndexingConfiguration -> Pair)
-> Maybe ThingGroupIndexingConfiguration -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ThingGroupIndexingConfiguration
thingGroupIndexingConfiguration,
(Text
"thingIndexingConfiguration" Text -> ThingIndexingConfiguration -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
(ThingIndexingConfiguration -> Pair)
-> Maybe ThingIndexingConfiguration -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ThingIndexingConfiguration
thingIndexingConfiguration
]
)
instance Core.ToPath UpdateIndexingConfiguration where
toPath :: UpdateIndexingConfiguration -> ByteString
toPath = ByteString -> UpdateIndexingConfiguration -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/indexing/config"
instance Core.ToQuery UpdateIndexingConfiguration where
toQuery :: UpdateIndexingConfiguration -> QueryString
toQuery = QueryString -> UpdateIndexingConfiguration -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data UpdateIndexingConfigurationResponse = UpdateIndexingConfigurationResponse'
{
UpdateIndexingConfigurationResponse -> Int
httpStatus :: Prelude.Int
}
deriving (UpdateIndexingConfigurationResponse
-> UpdateIndexingConfigurationResponse -> Bool
(UpdateIndexingConfigurationResponse
-> UpdateIndexingConfigurationResponse -> Bool)
-> (UpdateIndexingConfigurationResponse
-> UpdateIndexingConfigurationResponse -> Bool)
-> Eq UpdateIndexingConfigurationResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateIndexingConfigurationResponse
-> UpdateIndexingConfigurationResponse -> Bool
$c/= :: UpdateIndexingConfigurationResponse
-> UpdateIndexingConfigurationResponse -> Bool
== :: UpdateIndexingConfigurationResponse
-> UpdateIndexingConfigurationResponse -> Bool
$c== :: UpdateIndexingConfigurationResponse
-> UpdateIndexingConfigurationResponse -> Bool
Prelude.Eq, ReadPrec [UpdateIndexingConfigurationResponse]
ReadPrec UpdateIndexingConfigurationResponse
Int -> ReadS UpdateIndexingConfigurationResponse
ReadS [UpdateIndexingConfigurationResponse]
(Int -> ReadS UpdateIndexingConfigurationResponse)
-> ReadS [UpdateIndexingConfigurationResponse]
-> ReadPrec UpdateIndexingConfigurationResponse
-> ReadPrec [UpdateIndexingConfigurationResponse]
-> Read UpdateIndexingConfigurationResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateIndexingConfigurationResponse]
$creadListPrec :: ReadPrec [UpdateIndexingConfigurationResponse]
readPrec :: ReadPrec UpdateIndexingConfigurationResponse
$creadPrec :: ReadPrec UpdateIndexingConfigurationResponse
readList :: ReadS [UpdateIndexingConfigurationResponse]
$creadList :: ReadS [UpdateIndexingConfigurationResponse]
readsPrec :: Int -> ReadS UpdateIndexingConfigurationResponse
$creadsPrec :: Int -> ReadS UpdateIndexingConfigurationResponse
Prelude.Read, Int -> UpdateIndexingConfigurationResponse -> ShowS
[UpdateIndexingConfigurationResponse] -> ShowS
UpdateIndexingConfigurationResponse -> String
(Int -> UpdateIndexingConfigurationResponse -> ShowS)
-> (UpdateIndexingConfigurationResponse -> String)
-> ([UpdateIndexingConfigurationResponse] -> ShowS)
-> Show UpdateIndexingConfigurationResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateIndexingConfigurationResponse] -> ShowS
$cshowList :: [UpdateIndexingConfigurationResponse] -> ShowS
show :: UpdateIndexingConfigurationResponse -> String
$cshow :: UpdateIndexingConfigurationResponse -> String
showsPrec :: Int -> UpdateIndexingConfigurationResponse -> ShowS
$cshowsPrec :: Int -> UpdateIndexingConfigurationResponse -> ShowS
Prelude.Show, (forall x.
UpdateIndexingConfigurationResponse
-> Rep UpdateIndexingConfigurationResponse x)
-> (forall x.
Rep UpdateIndexingConfigurationResponse x
-> UpdateIndexingConfigurationResponse)
-> Generic UpdateIndexingConfigurationResponse
forall x.
Rep UpdateIndexingConfigurationResponse x
-> UpdateIndexingConfigurationResponse
forall x.
UpdateIndexingConfigurationResponse
-> Rep UpdateIndexingConfigurationResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep UpdateIndexingConfigurationResponse x
-> UpdateIndexingConfigurationResponse
$cfrom :: forall x.
UpdateIndexingConfigurationResponse
-> Rep UpdateIndexingConfigurationResponse x
Prelude.Generic)
newUpdateIndexingConfigurationResponse ::
Prelude.Int ->
UpdateIndexingConfigurationResponse
newUpdateIndexingConfigurationResponse :: Int -> UpdateIndexingConfigurationResponse
newUpdateIndexingConfigurationResponse Int
pHttpStatus_ =
UpdateIndexingConfigurationResponse' :: Int -> UpdateIndexingConfigurationResponse
UpdateIndexingConfigurationResponse'
{ $sel:httpStatus:UpdateIndexingConfigurationResponse' :: Int
httpStatus =
Int
pHttpStatus_
}
updateIndexingConfigurationResponse_httpStatus :: Lens.Lens' UpdateIndexingConfigurationResponse Prelude.Int
updateIndexingConfigurationResponse_httpStatus :: (Int -> f Int)
-> UpdateIndexingConfigurationResponse
-> f UpdateIndexingConfigurationResponse
updateIndexingConfigurationResponse_httpStatus = (UpdateIndexingConfigurationResponse -> Int)
-> (UpdateIndexingConfigurationResponse
-> Int -> UpdateIndexingConfigurationResponse)
-> Lens
UpdateIndexingConfigurationResponse
UpdateIndexingConfigurationResponse
Int
Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIndexingConfigurationResponse' {Int
httpStatus :: Int
$sel:httpStatus:UpdateIndexingConfigurationResponse' :: UpdateIndexingConfigurationResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: UpdateIndexingConfigurationResponse
s@UpdateIndexingConfigurationResponse' {} Int
a -> UpdateIndexingConfigurationResponse
s {$sel:httpStatus:UpdateIndexingConfigurationResponse' :: Int
httpStatus = Int
a} :: UpdateIndexingConfigurationResponse)
instance
Prelude.NFData
UpdateIndexingConfigurationResponse