{-# 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.Glue.Types.Schedule -- 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.Glue.Types.Schedule where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.Glue.Types.ScheduleState import qualified Amazonka.Prelude as Prelude -- | A scheduling object using a @cron@ statement to schedule an event. -- -- /See:/ 'newSchedule' smart constructor. data Schedule = Schedule' { -- | A @cron@ expression used to specify the schedule (see -- . -- For example, to run something every day at 12:15 UTC, you would specify: -- @cron(15 12 * * ? *)@. scheduleExpression :: Prelude.Maybe Prelude.Text, -- | The state of the schedule. state :: Prelude.Maybe ScheduleState } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Schedule' 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: -- -- 'scheduleExpression', 'schedule_scheduleExpression' - A @cron@ expression used to specify the schedule (see -- . -- For example, to run something every day at 12:15 UTC, you would specify: -- @cron(15 12 * * ? *)@. -- -- 'state', 'schedule_state' - The state of the schedule. newSchedule :: Schedule newSchedule = Schedule' { scheduleExpression = Prelude.Nothing, state = Prelude.Nothing } -- | A @cron@ expression used to specify the schedule (see -- . -- For example, to run something every day at 12:15 UTC, you would specify: -- @cron(15 12 * * ? *)@. schedule_scheduleExpression :: Lens.Lens' Schedule (Prelude.Maybe Prelude.Text) schedule_scheduleExpression = Lens.lens (\Schedule' {scheduleExpression} -> scheduleExpression) (\s@Schedule' {} a -> s {scheduleExpression = a} :: Schedule) -- | The state of the schedule. schedule_state :: Lens.Lens' Schedule (Prelude.Maybe ScheduleState) schedule_state = Lens.lens (\Schedule' {state} -> state) (\s@Schedule' {} a -> s {state = a} :: Schedule) instance Data.FromJSON Schedule where parseJSON = Data.withObject "Schedule" ( \x -> Schedule' Prelude.<$> (x Data..:? "ScheduleExpression") Prelude.<*> (x Data..:? "State") ) instance Prelude.Hashable Schedule where hashWithSalt _salt Schedule' {..} = _salt `Prelude.hashWithSalt` scheduleExpression `Prelude.hashWithSalt` state instance Prelude.NFData Schedule where rnf Schedule' {..} = Prelude.rnf scheduleExpression `Prelude.seq` Prelude.rnf state