{-# 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.KinesisAnalytics.Types.InputParallelismUpdate -- 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.KinesisAnalytics.Types.InputParallelismUpdate 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 -- | Provides updates to the parallelism count. -- -- /See:/ 'newInputParallelismUpdate' smart constructor. data InputParallelismUpdate = InputParallelismUpdate' { -- | Number of in-application streams to create for the specified streaming -- source. countUpdate :: Prelude.Maybe Prelude.Natural } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'InputParallelismUpdate' 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: -- -- 'countUpdate', 'inputParallelismUpdate_countUpdate' - Number of in-application streams to create for the specified streaming -- source. newInputParallelismUpdate :: InputParallelismUpdate newInputParallelismUpdate = InputParallelismUpdate' { countUpdate = Prelude.Nothing } -- | Number of in-application streams to create for the specified streaming -- source. inputParallelismUpdate_countUpdate :: Lens.Lens' InputParallelismUpdate (Prelude.Maybe Prelude.Natural) inputParallelismUpdate_countUpdate = Lens.lens (\InputParallelismUpdate' {countUpdate} -> countUpdate) (\s@InputParallelismUpdate' {} a -> s {countUpdate = a} :: InputParallelismUpdate) instance Prelude.Hashable InputParallelismUpdate where hashWithSalt _salt InputParallelismUpdate' {..} = _salt `Prelude.hashWithSalt` countUpdate instance Prelude.NFData InputParallelismUpdate where rnf InputParallelismUpdate' {..} = Prelude.rnf countUpdate instance Data.ToJSON InputParallelismUpdate where toJSON InputParallelismUpdate' {..} = Data.object ( Prelude.catMaybes [("CountUpdate" Data..=) Prelude.<$> countUpdate] )