{-# 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-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.AppFlow.Types.HoneycodeConnectorProfileProperties 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

-- | The connector-specific properties required when using Amazon Honeycode.
--
-- /See:/ 'newHoneycodeConnectorProfileProperties' smart constructor.
data HoneycodeConnectorProfileProperties = HoneycodeConnectorProfileProperties'
  {
  }
  deriving (HoneycodeConnectorProfileProperties
-> HoneycodeConnectorProfileProperties -> Bool
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]
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
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.
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
  Data.FromJSON
    HoneycodeConnectorProfileProperties
  where
  parseJSON :: Value -> Parser HoneycodeConnectorProfileProperties
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"HoneycodeConnectorProfileProperties"
      ( \Object
x ->
          forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure HoneycodeConnectorProfileProperties
HoneycodeConnectorProfileProperties'
      )

instance
  Prelude.Hashable
    HoneycodeConnectorProfileProperties
  where
  hashWithSalt :: Int -> HoneycodeConnectorProfileProperties -> Int
hashWithSalt Int
_salt HoneycodeConnectorProfileProperties
_ =
    Int
_salt forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` ()

instance
  Prelude.NFData
    HoneycodeConnectorProfileProperties
  where
  rnf :: HoneycodeConnectorProfileProperties -> ()
rnf HoneycodeConnectorProfileProperties
_ = ()

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