{-# 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.HoneycodeConnectorProfileProperties
-- 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.HoneycodeConnectorProfileProperties where

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

-- | The connector-specific properties required when using Amazon Honeycode.
--
-- /See:/ 'newHoneycodeConnectorProfileProperties' smart constructor.
data HoneycodeConnectorProfileProperties = HoneycodeConnectorProfileProperties'
  {
  }
  deriving (HoneycodeConnectorProfileProperties
-> HoneycodeConnectorProfileProperties -> Bool
(HoneycodeConnectorProfileProperties
 -> HoneycodeConnectorProfileProperties -> Bool)
-> (HoneycodeConnectorProfileProperties
    -> HoneycodeConnectorProfileProperties -> Bool)
-> Eq HoneycodeConnectorProfileProperties
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: HoneycodeConnectorProfileProperties
-> HoneycodeConnectorProfileProperties -> Bool
$c/= :: HoneycodeConnectorProfileProperties
-> HoneycodeConnectorProfileProperties -> Bool
== :: HoneycodeConnectorProfileProperties
-> HoneycodeConnectorProfileProperties -> Bool
$c== :: HoneycodeConnectorProfileProperties
-> HoneycodeConnectorProfileProperties -> Bool
Prelude.Eq, ReadPrec [HoneycodeConnectorProfileProperties]
ReadPrec HoneycodeConnectorProfileProperties
Int -> ReadS HoneycodeConnectorProfileProperties
ReadS [HoneycodeConnectorProfileProperties]
(Int -> ReadS HoneycodeConnectorProfileProperties)
-> ReadS [HoneycodeConnectorProfileProperties]
-> ReadPrec HoneycodeConnectorProfileProperties
-> ReadPrec [HoneycodeConnectorProfileProperties]
-> Read HoneycodeConnectorProfileProperties
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [HoneycodeConnectorProfileProperties]
$creadListPrec :: ReadPrec [HoneycodeConnectorProfileProperties]
readPrec :: ReadPrec HoneycodeConnectorProfileProperties
$creadPrec :: ReadPrec HoneycodeConnectorProfileProperties
readList :: ReadS [HoneycodeConnectorProfileProperties]
$creadList :: ReadS [HoneycodeConnectorProfileProperties]
readsPrec :: Int -> ReadS HoneycodeConnectorProfileProperties
$creadsPrec :: Int -> ReadS HoneycodeConnectorProfileProperties
Prelude.Read, Int -> HoneycodeConnectorProfileProperties -> ShowS
[HoneycodeConnectorProfileProperties] -> ShowS
HoneycodeConnectorProfileProperties -> String
(Int -> HoneycodeConnectorProfileProperties -> ShowS)
-> (HoneycodeConnectorProfileProperties -> String)
-> ([HoneycodeConnectorProfileProperties] -> ShowS)
-> Show HoneycodeConnectorProfileProperties
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [HoneycodeConnectorProfileProperties] -> ShowS
$cshowList :: [HoneycodeConnectorProfileProperties] -> ShowS
show :: HoneycodeConnectorProfileProperties -> String
$cshow :: HoneycodeConnectorProfileProperties -> String
showsPrec :: Int -> HoneycodeConnectorProfileProperties -> ShowS
$cshowsPrec :: Int -> HoneycodeConnectorProfileProperties -> ShowS
Prelude.Show, (forall x.
 HoneycodeConnectorProfileProperties
 -> Rep HoneycodeConnectorProfileProperties x)
-> (forall x.
    Rep HoneycodeConnectorProfileProperties x
    -> HoneycodeConnectorProfileProperties)
-> Generic HoneycodeConnectorProfileProperties
forall x.
Rep HoneycodeConnectorProfileProperties x
-> HoneycodeConnectorProfileProperties
forall x.
HoneycodeConnectorProfileProperties
-> Rep HoneycodeConnectorProfileProperties x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep HoneycodeConnectorProfileProperties x
-> HoneycodeConnectorProfileProperties
$cfrom :: forall x.
HoneycodeConnectorProfileProperties
-> Rep HoneycodeConnectorProfileProperties x
Prelude.Generic)

-- |
-- Create a value of 'HoneycodeConnectorProfileProperties' 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.
newHoneycodeConnectorProfileProperties ::
  HoneycodeConnectorProfileProperties
newHoneycodeConnectorProfileProperties :: HoneycodeConnectorProfileProperties
newHoneycodeConnectorProfileProperties =
  HoneycodeConnectorProfileProperties
HoneycodeConnectorProfileProperties'

instance
  Core.FromJSON
    HoneycodeConnectorProfileProperties
  where
  parseJSON :: Value -> Parser HoneycodeConnectorProfileProperties
parseJSON =
    String
-> (Object -> Parser HoneycodeConnectorProfileProperties)
-> Value
-> Parser HoneycodeConnectorProfileProperties
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
      String
"HoneycodeConnectorProfileProperties"
      ( \Object
x ->
          HoneycodeConnectorProfileProperties
-> Parser HoneycodeConnectorProfileProperties
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure HoneycodeConnectorProfileProperties
HoneycodeConnectorProfileProperties'
      )

instance
  Prelude.Hashable
    HoneycodeConnectorProfileProperties

instance
  Prelude.NFData
    HoneycodeConnectorProfileProperties

instance
  Core.ToJSON
    HoneycodeConnectorProfileProperties
  where
  toJSON :: HoneycodeConnectorProfileProperties -> Value
toJSON = Value -> HoneycodeConnectorProfileProperties -> Value
forall a b. a -> b -> a
Prelude.const (Object -> Value
Core.Object Object
forall a. Monoid a => a
Prelude.mempty)