{-# 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.AppMesh.Types.AccessLog -- 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.AppMesh.Types.AccessLog where import Amazonka.AppMesh.Types.FileAccessLog 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 -- | An object that represents the access logging information for a virtual -- node. -- -- /See:/ 'newAccessLog' smart constructor. data AccessLog = AccessLog' { -- | The file object to send virtual node access logs to. file :: Prelude.Maybe FileAccessLog } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AccessLog' 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: -- -- 'file', 'accessLog_file' - The file object to send virtual node access logs to. newAccessLog :: AccessLog newAccessLog = AccessLog' {file = Prelude.Nothing} -- | The file object to send virtual node access logs to. accessLog_file :: Lens.Lens' AccessLog (Prelude.Maybe FileAccessLog) accessLog_file = Lens.lens (\AccessLog' {file} -> file) (\s@AccessLog' {} a -> s {file = a} :: AccessLog) instance Data.FromJSON AccessLog where parseJSON = Data.withObject "AccessLog" (\x -> AccessLog' Prelude.<$> (x Data..:? "file")) instance Prelude.Hashable AccessLog where hashWithSalt _salt AccessLog' {..} = _salt `Prelude.hashWithSalt` file instance Prelude.NFData AccessLog where rnf AccessLog' {..} = Prelude.rnf file instance Data.ToJSON AccessLog where toJSON AccessLog' {..} = Data.object ( Prelude.catMaybes [("file" Data..=) Prelude.<$> file] )