{-# 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.GoogleAnalyticsConnectorProfileProperties -- 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.GoogleAnalyticsConnectorProfileProperties 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 profile properties required by Google Analytics. -- -- /See:/ 'newGoogleAnalyticsConnectorProfileProperties' smart constructor. data GoogleAnalyticsConnectorProfileProperties = GoogleAnalyticsConnectorProfileProperties' { } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GoogleAnalyticsConnectorProfileProperties' with all optional fields omitted. -- -- Use or to modify other optional fields. newGoogleAnalyticsConnectorProfileProperties :: GoogleAnalyticsConnectorProfileProperties newGoogleAnalyticsConnectorProfileProperties = GoogleAnalyticsConnectorProfileProperties' instance Data.FromJSON GoogleAnalyticsConnectorProfileProperties where parseJSON = Data.withObject "GoogleAnalyticsConnectorProfileProperties" ( \x -> Prelude.pure GoogleAnalyticsConnectorProfileProperties' ) instance Prelude.Hashable GoogleAnalyticsConnectorProfileProperties where hashWithSalt _salt _ = _salt `Prelude.hashWithSalt` () instance Prelude.NFData GoogleAnalyticsConnectorProfileProperties where rnf _ = () instance Data.ToJSON GoogleAnalyticsConnectorProfileProperties where toJSON = Prelude.const (Data.Object Prelude.mempty)