{-# 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.SWF.Types.PendingTaskCount -- 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.SWF.Types.PendingTaskCount 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 -- | Contains the count of tasks in a task list. -- -- /See:/ 'newPendingTaskCount' smart constructor. data PendingTaskCount = PendingTaskCount' { -- | If set to true, indicates that the actual count was more than the -- maximum supported by this API and the count returned is the truncated -- value. truncated :: Prelude.Maybe Prelude.Bool, -- | The number of tasks in the task list. count :: Prelude.Natural } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'PendingTaskCount' 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: -- -- 'truncated', 'pendingTaskCount_truncated' - If set to true, indicates that the actual count was more than the -- maximum supported by this API and the count returned is the truncated -- value. -- -- 'count', 'pendingTaskCount_count' - The number of tasks in the task list. newPendingTaskCount :: -- | 'count' Prelude.Natural -> PendingTaskCount newPendingTaskCount pCount_ = PendingTaskCount' { truncated = Prelude.Nothing, count = pCount_ } -- | If set to true, indicates that the actual count was more than the -- maximum supported by this API and the count returned is the truncated -- value. pendingTaskCount_truncated :: Lens.Lens' PendingTaskCount (Prelude.Maybe Prelude.Bool) pendingTaskCount_truncated = Lens.lens (\PendingTaskCount' {truncated} -> truncated) (\s@PendingTaskCount' {} a -> s {truncated = a} :: PendingTaskCount) -- | The number of tasks in the task list. pendingTaskCount_count :: Lens.Lens' PendingTaskCount Prelude.Natural pendingTaskCount_count = Lens.lens (\PendingTaskCount' {count} -> count) (\s@PendingTaskCount' {} a -> s {count = a} :: PendingTaskCount) instance Data.FromJSON PendingTaskCount where parseJSON = Data.withObject "PendingTaskCount" ( \x -> PendingTaskCount' Prelude.<$> (x Data..:? "truncated") Prelude.<*> (x Data..: "count") ) instance Prelude.Hashable PendingTaskCount where hashWithSalt _salt PendingTaskCount' {..} = _salt `Prelude.hashWithSalt` truncated `Prelude.hashWithSalt` count instance Prelude.NFData PendingTaskCount where rnf PendingTaskCount' {..} = Prelude.rnf truncated `Prelude.seq` Prelude.rnf count