{-# 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.IoT.Types.AwsJobTimeoutConfig -- 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.IoT.Types.AwsJobTimeoutConfig 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 the amount of time each device has to finish its execution of -- the job. A timer is started when the job execution status is set to -- @IN_PROGRESS@. If the job execution status is not set to another -- terminal state before the timer expires, it will be automatically set to -- @TIMED_OUT@. -- -- /See:/ 'newAwsJobTimeoutConfig' smart constructor. data AwsJobTimeoutConfig = AwsJobTimeoutConfig' { -- | Specifies the amount of time, in minutes, this device has to finish -- execution of this job. The timeout interval can be anywhere between 1 -- minute and 7 days (1 to 10080 minutes). The in progress timer can\'t be -- updated and will apply to all job executions for the job. Whenever a job -- execution remains in the IN_PROGRESS status for longer than this -- interval, the job execution will fail and switch to the terminal -- @TIMED_OUT@ status. inProgressTimeoutInMinutes :: Prelude.Maybe Prelude.Integer } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AwsJobTimeoutConfig' 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: -- -- 'inProgressTimeoutInMinutes', 'awsJobTimeoutConfig_inProgressTimeoutInMinutes' - Specifies the amount of time, in minutes, this device has to finish -- execution of this job. The timeout interval can be anywhere between 1 -- minute and 7 days (1 to 10080 minutes). The in progress timer can\'t be -- updated and will apply to all job executions for the job. Whenever a job -- execution remains in the IN_PROGRESS status for longer than this -- interval, the job execution will fail and switch to the terminal -- @TIMED_OUT@ status. newAwsJobTimeoutConfig :: AwsJobTimeoutConfig newAwsJobTimeoutConfig = AwsJobTimeoutConfig' { inProgressTimeoutInMinutes = Prelude.Nothing } -- | Specifies the amount of time, in minutes, this device has to finish -- execution of this job. The timeout interval can be anywhere between 1 -- minute and 7 days (1 to 10080 minutes). The in progress timer can\'t be -- updated and will apply to all job executions for the job. Whenever a job -- execution remains in the IN_PROGRESS status for longer than this -- interval, the job execution will fail and switch to the terminal -- @TIMED_OUT@ status. awsJobTimeoutConfig_inProgressTimeoutInMinutes :: Lens.Lens' AwsJobTimeoutConfig (Prelude.Maybe Prelude.Integer) awsJobTimeoutConfig_inProgressTimeoutInMinutes = Lens.lens (\AwsJobTimeoutConfig' {inProgressTimeoutInMinutes} -> inProgressTimeoutInMinutes) (\s@AwsJobTimeoutConfig' {} a -> s {inProgressTimeoutInMinutes = a} :: AwsJobTimeoutConfig) instance Prelude.Hashable AwsJobTimeoutConfig where hashWithSalt _salt AwsJobTimeoutConfig' {..} = _salt `Prelude.hashWithSalt` inProgressTimeoutInMinutes instance Prelude.NFData AwsJobTimeoutConfig where rnf AwsJobTimeoutConfig' {..} = Prelude.rnf inProgressTimeoutInMinutes instance Data.ToJSON AwsJobTimeoutConfig where toJSON AwsJobTimeoutConfig' {..} = Data.object ( Prelude.catMaybes [ ("inProgressTimeoutInMinutes" Data..=) Prelude.<$> inProgressTimeoutInMinutes ] )