{-# 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.IoTWireless.Types.LoRaWANJoinEventNotificationConfigurations -- 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.IoTWireless.Types.LoRaWANJoinEventNotificationConfigurations where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.IoTWireless.Types.EventNotificationTopicStatus import qualified Amazonka.Prelude as Prelude -- | Object for LoRaWAN join resource type event configuration. -- -- /See:/ 'newLoRaWANJoinEventNotificationConfigurations' smart constructor. data LoRaWANJoinEventNotificationConfigurations = LoRaWANJoinEventNotificationConfigurations' { -- | Denotes whether the Dev EUI join event topic is enabled or disabled. devEuiEventTopic :: Prelude.Maybe EventNotificationTopicStatus } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'LoRaWANJoinEventNotificationConfigurations' 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: -- -- 'devEuiEventTopic', 'loRaWANJoinEventNotificationConfigurations_devEuiEventTopic' - Denotes whether the Dev EUI join event topic is enabled or disabled. newLoRaWANJoinEventNotificationConfigurations :: LoRaWANJoinEventNotificationConfigurations newLoRaWANJoinEventNotificationConfigurations = LoRaWANJoinEventNotificationConfigurations' { devEuiEventTopic = Prelude.Nothing } -- | Denotes whether the Dev EUI join event topic is enabled or disabled. loRaWANJoinEventNotificationConfigurations_devEuiEventTopic :: Lens.Lens' LoRaWANJoinEventNotificationConfigurations (Prelude.Maybe EventNotificationTopicStatus) loRaWANJoinEventNotificationConfigurations_devEuiEventTopic = Lens.lens (\LoRaWANJoinEventNotificationConfigurations' {devEuiEventTopic} -> devEuiEventTopic) (\s@LoRaWANJoinEventNotificationConfigurations' {} a -> s {devEuiEventTopic = a} :: LoRaWANJoinEventNotificationConfigurations) instance Data.FromJSON LoRaWANJoinEventNotificationConfigurations where parseJSON = Data.withObject "LoRaWANJoinEventNotificationConfigurations" ( \x -> LoRaWANJoinEventNotificationConfigurations' Prelude.<$> (x Data..:? "DevEuiEventTopic") ) instance Prelude.Hashable LoRaWANJoinEventNotificationConfigurations where hashWithSalt _salt LoRaWANJoinEventNotificationConfigurations' {..} = _salt `Prelude.hashWithSalt` devEuiEventTopic instance Prelude.NFData LoRaWANJoinEventNotificationConfigurations where rnf LoRaWANJoinEventNotificationConfigurations' {..} = Prelude.rnf devEuiEventTopic instance Data.ToJSON LoRaWANJoinEventNotificationConfigurations where toJSON LoRaWANJoinEventNotificationConfigurations' {..} = Data.object ( Prelude.catMaybes [ ("DevEuiEventTopic" Data..=) Prelude.<$> devEuiEventTopic ] )