{-# 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 #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.AppFlow.Types.TrendmicroConnectorProfileProperties
-- 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)
module Amazonka.AppFlow.Types.TrendmicroConnectorProfileProperties where

import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude

-- | The connector-specific profile properties required when using Trend
-- Micro.
--
-- /See:/ 'newTrendmicroConnectorProfileProperties' smart constructor.
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)

-- |
-- Create a value of 'TrendmicroConnectorProfileProperties' 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.
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)