{-# 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.SecurityHub.Types.ActionLocalIpDetails -- 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.SecurityHub.Types.ActionLocalIpDetails 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 -- | Provides information about the IP address where the scanned port is -- located. -- -- /See:/ 'newActionLocalIpDetails' smart constructor. data ActionLocalIpDetails = ActionLocalIpDetails' { -- | The IP address. ipAddressV4 :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ActionLocalIpDetails' 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: -- -- 'ipAddressV4', 'actionLocalIpDetails_ipAddressV4' - The IP address. newActionLocalIpDetails :: ActionLocalIpDetails newActionLocalIpDetails = ActionLocalIpDetails' { ipAddressV4 = Prelude.Nothing } -- | The IP address. actionLocalIpDetails_ipAddressV4 :: Lens.Lens' ActionLocalIpDetails (Prelude.Maybe Prelude.Text) actionLocalIpDetails_ipAddressV4 = Lens.lens (\ActionLocalIpDetails' {ipAddressV4} -> ipAddressV4) (\s@ActionLocalIpDetails' {} a -> s {ipAddressV4 = a} :: ActionLocalIpDetails) instance Data.FromJSON ActionLocalIpDetails where parseJSON = Data.withObject "ActionLocalIpDetails" ( \x -> ActionLocalIpDetails' Prelude.<$> (x Data..:? "IpAddressV4") ) instance Prelude.Hashable ActionLocalIpDetails where hashWithSalt _salt ActionLocalIpDetails' {..} = _salt `Prelude.hashWithSalt` ipAddressV4 instance Prelude.NFData ActionLocalIpDetails where rnf ActionLocalIpDetails' {..} = Prelude.rnf ipAddressV4 instance Data.ToJSON ActionLocalIpDetails where toJSON ActionLocalIpDetails' {..} = Data.object ( Prelude.catMaybes [("IpAddressV4" Data..=) Prelude.<$> ipAddressV4] )