{-# 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.Pinpoint.Types.JourneyLimits -- 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.Pinpoint.Types.JourneyLimits 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 -- | Specifies limits on the messages that a journey can send and the number -- of times participants can enter a journey. -- -- /See:/ 'newJourneyLimits' smart constructor. data JourneyLimits = JourneyLimits' { -- | The maximum number of messages that the journey can send to a single -- participant during a 24-hour period. The maximum value is 100. dailyCap :: Prelude.Maybe Prelude.Int, -- | The maximum number of times that a participant can enter the journey. -- The maximum value is 100. To allow participants to enter the journey an -- unlimited number of times, set this value to 0. endpointReentryCap :: Prelude.Maybe Prelude.Int, -- | Minimum time that must pass before an endpoint can re-enter a given -- journey. The duration should use an ISO 8601 format, such as PT1H. endpointReentryInterval :: Prelude.Maybe Prelude.Text, -- | The maximum number of messages that the journey can send each second. messagesPerSecond :: Prelude.Maybe Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'JourneyLimits' 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: -- -- 'dailyCap', 'journeyLimits_dailyCap' - The maximum number of messages that the journey can send to a single -- participant during a 24-hour period. The maximum value is 100. -- -- 'endpointReentryCap', 'journeyLimits_endpointReentryCap' - The maximum number of times that a participant can enter the journey. -- The maximum value is 100. To allow participants to enter the journey an -- unlimited number of times, set this value to 0. -- -- 'endpointReentryInterval', 'journeyLimits_endpointReentryInterval' - Minimum time that must pass before an endpoint can re-enter a given -- journey. The duration should use an ISO 8601 format, such as PT1H. -- -- 'messagesPerSecond', 'journeyLimits_messagesPerSecond' - The maximum number of messages that the journey can send each second. newJourneyLimits :: JourneyLimits newJourneyLimits = JourneyLimits' { dailyCap = Prelude.Nothing, endpointReentryCap = Prelude.Nothing, endpointReentryInterval = Prelude.Nothing, messagesPerSecond = Prelude.Nothing } -- | The maximum number of messages that the journey can send to a single -- participant during a 24-hour period. The maximum value is 100. journeyLimits_dailyCap :: Lens.Lens' JourneyLimits (Prelude.Maybe Prelude.Int) journeyLimits_dailyCap = Lens.lens (\JourneyLimits' {dailyCap} -> dailyCap) (\s@JourneyLimits' {} a -> s {dailyCap = a} :: JourneyLimits) -- | The maximum number of times that a participant can enter the journey. -- The maximum value is 100. To allow participants to enter the journey an -- unlimited number of times, set this value to 0. journeyLimits_endpointReentryCap :: Lens.Lens' JourneyLimits (Prelude.Maybe Prelude.Int) journeyLimits_endpointReentryCap = Lens.lens (\JourneyLimits' {endpointReentryCap} -> endpointReentryCap) (\s@JourneyLimits' {} a -> s {endpointReentryCap = a} :: JourneyLimits) -- | Minimum time that must pass before an endpoint can re-enter a given -- journey. The duration should use an ISO 8601 format, such as PT1H. journeyLimits_endpointReentryInterval :: Lens.Lens' JourneyLimits (Prelude.Maybe Prelude.Text) journeyLimits_endpointReentryInterval = Lens.lens (\JourneyLimits' {endpointReentryInterval} -> endpointReentryInterval) (\s@JourneyLimits' {} a -> s {endpointReentryInterval = a} :: JourneyLimits) -- | The maximum number of messages that the journey can send each second. journeyLimits_messagesPerSecond :: Lens.Lens' JourneyLimits (Prelude.Maybe Prelude.Int) journeyLimits_messagesPerSecond = Lens.lens (\JourneyLimits' {messagesPerSecond} -> messagesPerSecond) (\s@JourneyLimits' {} a -> s {messagesPerSecond = a} :: JourneyLimits) instance Data.FromJSON JourneyLimits where parseJSON = Data.withObject "JourneyLimits" ( \x -> JourneyLimits' Prelude.<$> (x Data..:? "DailyCap") Prelude.<*> (x Data..:? "EndpointReentryCap") Prelude.<*> (x Data..:? "EndpointReentryInterval") Prelude.<*> (x Data..:? "MessagesPerSecond") ) instance Prelude.Hashable JourneyLimits where hashWithSalt _salt JourneyLimits' {..} = _salt `Prelude.hashWithSalt` dailyCap `Prelude.hashWithSalt` endpointReentryCap `Prelude.hashWithSalt` endpointReentryInterval `Prelude.hashWithSalt` messagesPerSecond instance Prelude.NFData JourneyLimits where rnf JourneyLimits' {..} = Prelude.rnf dailyCap `Prelude.seq` Prelude.rnf endpointReentryCap `Prelude.seq` Prelude.rnf endpointReentryInterval `Prelude.seq` Prelude.rnf messagesPerSecond instance Data.ToJSON JourneyLimits where toJSON JourneyLimits' {..} = Data.object ( Prelude.catMaybes [ ("DailyCap" Data..=) Prelude.<$> dailyCap, ("EndpointReentryCap" Data..=) Prelude.<$> endpointReentryCap, ("EndpointReentryInterval" Data..=) Prelude.<$> endpointReentryInterval, ("MessagesPerSecond" Data..=) Prelude.<$> messagesPerSecond ] )