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