{-# 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.DatadogSourceProperties -- 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.DatadogSourceProperties 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 properties that are applied when Datadog is being used as a source. -- -- /See:/ 'newDatadogSourceProperties' smart constructor. data DatadogSourceProperties = DatadogSourceProperties' { -- | The object specified in the Datadog flow source. object' :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DatadogSourceProperties' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'object'', 'datadogSourceProperties_object' - The object specified in the Datadog flow source. newDatadogSourceProperties :: -- | 'object'' Prelude.Text -> DatadogSourceProperties newDatadogSourceProperties pObject_ = DatadogSourceProperties' {object' = pObject_} -- | The object specified in the Datadog flow source. datadogSourceProperties_object :: Lens.Lens' DatadogSourceProperties Prelude.Text datadogSourceProperties_object = Lens.lens (\DatadogSourceProperties' {object'} -> object') (\s@DatadogSourceProperties' {} a -> s {object' = a} :: DatadogSourceProperties) instance Data.FromJSON DatadogSourceProperties where parseJSON = Data.withObject "DatadogSourceProperties" ( \x -> DatadogSourceProperties' Prelude.<$> (x Data..: "object") ) instance Prelude.Hashable DatadogSourceProperties where hashWithSalt _salt DatadogSourceProperties' {..} = _salt `Prelude.hashWithSalt` object' instance Prelude.NFData DatadogSourceProperties where rnf DatadogSourceProperties' {..} = Prelude.rnf object' instance Data.ToJSON DatadogSourceProperties where toJSON DatadogSourceProperties' {..} = Data.object ( Prelude.catMaybes [Prelude.Just ("object" Data..= object')] )