{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
module Amazonka.CloudDirectory.Types.BatchRemoveFacetFromObjectResponse where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
data BatchRemoveFacetFromObjectResponse = BatchRemoveFacetFromObjectResponse'
{
}
deriving (BatchRemoveFacetFromObjectResponse
-> BatchRemoveFacetFromObjectResponse -> Bool
(BatchRemoveFacetFromObjectResponse
-> BatchRemoveFacetFromObjectResponse -> Bool)
-> (BatchRemoveFacetFromObjectResponse
-> BatchRemoveFacetFromObjectResponse -> Bool)
-> Eq BatchRemoveFacetFromObjectResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: BatchRemoveFacetFromObjectResponse
-> BatchRemoveFacetFromObjectResponse -> Bool
$c/= :: BatchRemoveFacetFromObjectResponse
-> BatchRemoveFacetFromObjectResponse -> Bool
== :: BatchRemoveFacetFromObjectResponse
-> BatchRemoveFacetFromObjectResponse -> Bool
$c== :: BatchRemoveFacetFromObjectResponse
-> BatchRemoveFacetFromObjectResponse -> Bool
Prelude.Eq, ReadPrec [BatchRemoveFacetFromObjectResponse]
ReadPrec BatchRemoveFacetFromObjectResponse
Int -> ReadS BatchRemoveFacetFromObjectResponse
ReadS [BatchRemoveFacetFromObjectResponse]
(Int -> ReadS BatchRemoveFacetFromObjectResponse)
-> ReadS [BatchRemoveFacetFromObjectResponse]
-> ReadPrec BatchRemoveFacetFromObjectResponse
-> ReadPrec [BatchRemoveFacetFromObjectResponse]
-> Read BatchRemoveFacetFromObjectResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [BatchRemoveFacetFromObjectResponse]
$creadListPrec :: ReadPrec [BatchRemoveFacetFromObjectResponse]
readPrec :: ReadPrec BatchRemoveFacetFromObjectResponse
$creadPrec :: ReadPrec BatchRemoveFacetFromObjectResponse
readList :: ReadS [BatchRemoveFacetFromObjectResponse]
$creadList :: ReadS [BatchRemoveFacetFromObjectResponse]
readsPrec :: Int -> ReadS BatchRemoveFacetFromObjectResponse
$creadsPrec :: Int -> ReadS BatchRemoveFacetFromObjectResponse
Prelude.Read, Int -> BatchRemoveFacetFromObjectResponse -> ShowS
[BatchRemoveFacetFromObjectResponse] -> ShowS
BatchRemoveFacetFromObjectResponse -> String
(Int -> BatchRemoveFacetFromObjectResponse -> ShowS)
-> (BatchRemoveFacetFromObjectResponse -> String)
-> ([BatchRemoveFacetFromObjectResponse] -> ShowS)
-> Show BatchRemoveFacetFromObjectResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [BatchRemoveFacetFromObjectResponse] -> ShowS
$cshowList :: [BatchRemoveFacetFromObjectResponse] -> ShowS
show :: BatchRemoveFacetFromObjectResponse -> String
$cshow :: BatchRemoveFacetFromObjectResponse -> String
showsPrec :: Int -> BatchRemoveFacetFromObjectResponse -> ShowS
$cshowsPrec :: Int -> BatchRemoveFacetFromObjectResponse -> ShowS
Prelude.Show, (forall x.
BatchRemoveFacetFromObjectResponse
-> Rep BatchRemoveFacetFromObjectResponse x)
-> (forall x.
Rep BatchRemoveFacetFromObjectResponse x
-> BatchRemoveFacetFromObjectResponse)
-> Generic BatchRemoveFacetFromObjectResponse
forall x.
Rep BatchRemoveFacetFromObjectResponse x
-> BatchRemoveFacetFromObjectResponse
forall x.
BatchRemoveFacetFromObjectResponse
-> Rep BatchRemoveFacetFromObjectResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep BatchRemoveFacetFromObjectResponse x
-> BatchRemoveFacetFromObjectResponse
$cfrom :: forall x.
BatchRemoveFacetFromObjectResponse
-> Rep BatchRemoveFacetFromObjectResponse x
Prelude.Generic)
newBatchRemoveFacetFromObjectResponse ::
BatchRemoveFacetFromObjectResponse
newBatchRemoveFacetFromObjectResponse :: BatchRemoveFacetFromObjectResponse
newBatchRemoveFacetFromObjectResponse =
BatchRemoveFacetFromObjectResponse
BatchRemoveFacetFromObjectResponse'
instance
Core.FromJSON
BatchRemoveFacetFromObjectResponse
where
parseJSON :: Value -> Parser BatchRemoveFacetFromObjectResponse
parseJSON =
String
-> (Object -> Parser BatchRemoveFacetFromObjectResponse)
-> Value
-> Parser BatchRemoveFacetFromObjectResponse
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
String
"BatchRemoveFacetFromObjectResponse"
( \Object
x ->
BatchRemoveFacetFromObjectResponse
-> Parser BatchRemoveFacetFromObjectResponse
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure BatchRemoveFacetFromObjectResponse
BatchRemoveFacetFromObjectResponse'
)
instance
Prelude.Hashable
BatchRemoveFacetFromObjectResponse
instance
Prelude.NFData
BatchRemoveFacetFromObjectResponse