{-# 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.ManagedBlockChain.Types.NodeLogPublishingConfiguration -- 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.ManagedBlockChain.Types.NodeLogPublishingConfiguration where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.ManagedBlockChain.Types.NodeFabricLogPublishingConfiguration import qualified Amazonka.Prelude as Prelude -- | Configuration properties for logging events associated with a peer node -- on a Hyperledger Fabric network on Managed Blockchain. -- -- /See:/ 'newNodeLogPublishingConfiguration' smart constructor. data NodeLogPublishingConfiguration = NodeLogPublishingConfiguration' { -- | Configuration properties for logging events associated with a node that -- is owned by a member of a Managed Blockchain network using the -- Hyperledger Fabric framework. fabric :: Prelude.Maybe NodeFabricLogPublishingConfiguration } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'NodeLogPublishingConfiguration' 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: -- -- 'fabric', 'nodeLogPublishingConfiguration_fabric' - Configuration properties for logging events associated with a node that -- is owned by a member of a Managed Blockchain network using the -- Hyperledger Fabric framework. newNodeLogPublishingConfiguration :: NodeLogPublishingConfiguration newNodeLogPublishingConfiguration = NodeLogPublishingConfiguration' { fabric = Prelude.Nothing } -- | Configuration properties for logging events associated with a node that -- is owned by a member of a Managed Blockchain network using the -- Hyperledger Fabric framework. nodeLogPublishingConfiguration_fabric :: Lens.Lens' NodeLogPublishingConfiguration (Prelude.Maybe NodeFabricLogPublishingConfiguration) nodeLogPublishingConfiguration_fabric = Lens.lens (\NodeLogPublishingConfiguration' {fabric} -> fabric) (\s@NodeLogPublishingConfiguration' {} a -> s {fabric = a} :: NodeLogPublishingConfiguration) instance Data.FromJSON NodeLogPublishingConfiguration where parseJSON = Data.withObject "NodeLogPublishingConfiguration" ( \x -> NodeLogPublishingConfiguration' Prelude.<$> (x Data..:? "Fabric") ) instance Prelude.Hashable NodeLogPublishingConfiguration where hashWithSalt _salt NodeLogPublishingConfiguration' {..} = _salt `Prelude.hashWithSalt` fabric instance Prelude.NFData NodeLogPublishingConfiguration where rnf NodeLogPublishingConfiguration' {..} = Prelude.rnf fabric instance Data.ToJSON NodeLogPublishingConfiguration where toJSON NodeLogPublishingConfiguration' {..} = Data.object ( Prelude.catMaybes [("Fabric" Data..=) Prelude.<$> fabric] )