{-# 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.SageMakerGeoSpatial.Types.CloudMaskingConfigInput where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude
data CloudMaskingConfigInput = CloudMaskingConfigInput'
{
}
deriving (CloudMaskingConfigInput -> CloudMaskingConfigInput -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CloudMaskingConfigInput -> CloudMaskingConfigInput -> Bool
$c/= :: CloudMaskingConfigInput -> CloudMaskingConfigInput -> Bool
== :: CloudMaskingConfigInput -> CloudMaskingConfigInput -> Bool
$c== :: CloudMaskingConfigInput -> CloudMaskingConfigInput -> Bool
Prelude.Eq, ReadPrec [CloudMaskingConfigInput]
ReadPrec CloudMaskingConfigInput
Int -> ReadS CloudMaskingConfigInput
ReadS [CloudMaskingConfigInput]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CloudMaskingConfigInput]
$creadListPrec :: ReadPrec [CloudMaskingConfigInput]
readPrec :: ReadPrec CloudMaskingConfigInput
$creadPrec :: ReadPrec CloudMaskingConfigInput
readList :: ReadS [CloudMaskingConfigInput]
$creadList :: ReadS [CloudMaskingConfigInput]
readsPrec :: Int -> ReadS CloudMaskingConfigInput
$creadsPrec :: Int -> ReadS CloudMaskingConfigInput
Prelude.Read, Int -> CloudMaskingConfigInput -> ShowS
[CloudMaskingConfigInput] -> ShowS
CloudMaskingConfigInput -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CloudMaskingConfigInput] -> ShowS
$cshowList :: [CloudMaskingConfigInput] -> ShowS
show :: CloudMaskingConfigInput -> String
$cshow :: CloudMaskingConfigInput -> String
showsPrec :: Int -> CloudMaskingConfigInput -> ShowS
$cshowsPrec :: Int -> CloudMaskingConfigInput -> ShowS
Prelude.Show, forall x. Rep CloudMaskingConfigInput x -> CloudMaskingConfigInput
forall x. CloudMaskingConfigInput -> Rep CloudMaskingConfigInput x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CloudMaskingConfigInput x -> CloudMaskingConfigInput
$cfrom :: forall x. CloudMaskingConfigInput -> Rep CloudMaskingConfigInput x
Prelude.Generic)
newCloudMaskingConfigInput ::
CloudMaskingConfigInput
newCloudMaskingConfigInput :: CloudMaskingConfigInput
newCloudMaskingConfigInput = CloudMaskingConfigInput
CloudMaskingConfigInput'
instance Data.FromJSON CloudMaskingConfigInput where
parseJSON :: Value -> Parser CloudMaskingConfigInput
parseJSON =
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
String
"CloudMaskingConfigInput"
(\Object
x -> forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure CloudMaskingConfigInput
CloudMaskingConfigInput')
instance Prelude.Hashable CloudMaskingConfigInput where
hashWithSalt :: Int -> CloudMaskingConfigInput -> Int
hashWithSalt Int
_salt CloudMaskingConfigInput
_ =
Int
_salt forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` ()
instance Prelude.NFData CloudMaskingConfigInput where
rnf :: CloudMaskingConfigInput -> ()
rnf CloudMaskingConfigInput
_ = ()
instance Data.ToJSON CloudMaskingConfigInput where
toJSON :: CloudMaskingConfigInput -> Value
toJSON = forall a b. a -> b -> a
Prelude.const (Object -> Value
Data.Object forall a. Monoid a => a
Prelude.mempty)