{-# 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.SecurityHub.Types.AwsDynamoDbTableProvisionedThroughput -- 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.SecurityHub.Types.AwsDynamoDbTableProvisionedThroughput 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 -- | Information about the provisioned throughput for the table or for a -- global secondary index. -- -- /See:/ 'newAwsDynamoDbTableProvisionedThroughput' smart constructor. data AwsDynamoDbTableProvisionedThroughput = AwsDynamoDbTableProvisionedThroughput' { -- | Indicates when the provisioned throughput was last decreased. -- -- Uses the @date-time@ format specified in -- . -- The value cannot contain spaces. For example, -- @2020-03-22T13:22:13.933Z@. lastDecreaseDateTime :: Prelude.Maybe Prelude.Text, -- | Indicates when the provisioned throughput was last increased. -- -- Uses the @date-time@ format specified in -- . -- The value cannot contain spaces. For example, -- @2020-03-22T13:22:13.933Z@. lastIncreaseDateTime :: Prelude.Maybe Prelude.Text, -- | The number of times during the current UTC calendar day that the -- provisioned throughput was decreased. numberOfDecreasesToday :: Prelude.Maybe Prelude.Int, -- | The maximum number of strongly consistent reads consumed per second -- before DynamoDB returns a @ThrottlingException@. readCapacityUnits :: Prelude.Maybe Prelude.Int, -- | The maximum number of writes consumed per second before DynamoDB returns -- a @ThrottlingException@. writeCapacityUnits :: Prelude.Maybe Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AwsDynamoDbTableProvisionedThroughput' 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: -- -- 'lastDecreaseDateTime', 'awsDynamoDbTableProvisionedThroughput_lastDecreaseDateTime' - Indicates when the provisioned throughput was last decreased. -- -- Uses the @date-time@ format specified in -- . -- The value cannot contain spaces. For example, -- @2020-03-22T13:22:13.933Z@. -- -- 'lastIncreaseDateTime', 'awsDynamoDbTableProvisionedThroughput_lastIncreaseDateTime' - Indicates when the provisioned throughput was last increased. -- -- Uses the @date-time@ format specified in -- . -- The value cannot contain spaces. For example, -- @2020-03-22T13:22:13.933Z@. -- -- 'numberOfDecreasesToday', 'awsDynamoDbTableProvisionedThroughput_numberOfDecreasesToday' - The number of times during the current UTC calendar day that the -- provisioned throughput was decreased. -- -- 'readCapacityUnits', 'awsDynamoDbTableProvisionedThroughput_readCapacityUnits' - The maximum number of strongly consistent reads consumed per second -- before DynamoDB returns a @ThrottlingException@. -- -- 'writeCapacityUnits', 'awsDynamoDbTableProvisionedThroughput_writeCapacityUnits' - The maximum number of writes consumed per second before DynamoDB returns -- a @ThrottlingException@. newAwsDynamoDbTableProvisionedThroughput :: AwsDynamoDbTableProvisionedThroughput newAwsDynamoDbTableProvisionedThroughput = AwsDynamoDbTableProvisionedThroughput' { lastDecreaseDateTime = Prelude.Nothing, lastIncreaseDateTime = Prelude.Nothing, numberOfDecreasesToday = Prelude.Nothing, readCapacityUnits = Prelude.Nothing, writeCapacityUnits = Prelude.Nothing } -- | Indicates when the provisioned throughput was last decreased. -- -- Uses the @date-time@ format specified in -- . -- The value cannot contain spaces. For example, -- @2020-03-22T13:22:13.933Z@. awsDynamoDbTableProvisionedThroughput_lastDecreaseDateTime :: Lens.Lens' AwsDynamoDbTableProvisionedThroughput (Prelude.Maybe Prelude.Text) awsDynamoDbTableProvisionedThroughput_lastDecreaseDateTime = Lens.lens (\AwsDynamoDbTableProvisionedThroughput' {lastDecreaseDateTime} -> lastDecreaseDateTime) (\s@AwsDynamoDbTableProvisionedThroughput' {} a -> s {lastDecreaseDateTime = a} :: AwsDynamoDbTableProvisionedThroughput) -- | Indicates when the provisioned throughput was last increased. -- -- Uses the @date-time@ format specified in -- . -- The value cannot contain spaces. For example, -- @2020-03-22T13:22:13.933Z@. awsDynamoDbTableProvisionedThroughput_lastIncreaseDateTime :: Lens.Lens' AwsDynamoDbTableProvisionedThroughput (Prelude.Maybe Prelude.Text) awsDynamoDbTableProvisionedThroughput_lastIncreaseDateTime = Lens.lens (\AwsDynamoDbTableProvisionedThroughput' {lastIncreaseDateTime} -> lastIncreaseDateTime) (\s@AwsDynamoDbTableProvisionedThroughput' {} a -> s {lastIncreaseDateTime = a} :: AwsDynamoDbTableProvisionedThroughput) -- | The number of times during the current UTC calendar day that the -- provisioned throughput was decreased. awsDynamoDbTableProvisionedThroughput_numberOfDecreasesToday :: Lens.Lens' AwsDynamoDbTableProvisionedThroughput (Prelude.Maybe Prelude.Int) awsDynamoDbTableProvisionedThroughput_numberOfDecreasesToday = Lens.lens (\AwsDynamoDbTableProvisionedThroughput' {numberOfDecreasesToday} -> numberOfDecreasesToday) (\s@AwsDynamoDbTableProvisionedThroughput' {} a -> s {numberOfDecreasesToday = a} :: AwsDynamoDbTableProvisionedThroughput) -- | The maximum number of strongly consistent reads consumed per second -- before DynamoDB returns a @ThrottlingException@. awsDynamoDbTableProvisionedThroughput_readCapacityUnits :: Lens.Lens' AwsDynamoDbTableProvisionedThroughput (Prelude.Maybe Prelude.Int) awsDynamoDbTableProvisionedThroughput_readCapacityUnits = Lens.lens (\AwsDynamoDbTableProvisionedThroughput' {readCapacityUnits} -> readCapacityUnits) (\s@AwsDynamoDbTableProvisionedThroughput' {} a -> s {readCapacityUnits = a} :: AwsDynamoDbTableProvisionedThroughput) -- | The maximum number of writes consumed per second before DynamoDB returns -- a @ThrottlingException@. awsDynamoDbTableProvisionedThroughput_writeCapacityUnits :: Lens.Lens' AwsDynamoDbTableProvisionedThroughput (Prelude.Maybe Prelude.Int) awsDynamoDbTableProvisionedThroughput_writeCapacityUnits = Lens.lens (\AwsDynamoDbTableProvisionedThroughput' {writeCapacityUnits} -> writeCapacityUnits) (\s@AwsDynamoDbTableProvisionedThroughput' {} a -> s {writeCapacityUnits = a} :: AwsDynamoDbTableProvisionedThroughput) instance Data.FromJSON AwsDynamoDbTableProvisionedThroughput where parseJSON = Data.withObject "AwsDynamoDbTableProvisionedThroughput" ( \x -> AwsDynamoDbTableProvisionedThroughput' Prelude.<$> (x Data..:? "LastDecreaseDateTime") Prelude.<*> (x Data..:? "LastIncreaseDateTime") Prelude.<*> (x Data..:? "NumberOfDecreasesToday") Prelude.<*> (x Data..:? "ReadCapacityUnits") Prelude.<*> (x Data..:? "WriteCapacityUnits") ) instance Prelude.Hashable AwsDynamoDbTableProvisionedThroughput where hashWithSalt _salt AwsDynamoDbTableProvisionedThroughput' {..} = _salt `Prelude.hashWithSalt` lastDecreaseDateTime `Prelude.hashWithSalt` lastIncreaseDateTime `Prelude.hashWithSalt` numberOfDecreasesToday `Prelude.hashWithSalt` readCapacityUnits `Prelude.hashWithSalt` writeCapacityUnits instance Prelude.NFData AwsDynamoDbTableProvisionedThroughput where rnf AwsDynamoDbTableProvisionedThroughput' {..} = Prelude.rnf lastDecreaseDateTime `Prelude.seq` Prelude.rnf lastIncreaseDateTime `Prelude.seq` Prelude.rnf numberOfDecreasesToday `Prelude.seq` Prelude.rnf readCapacityUnits `Prelude.seq` Prelude.rnf writeCapacityUnits instance Data.ToJSON AwsDynamoDbTableProvisionedThroughput where toJSON AwsDynamoDbTableProvisionedThroughput' {..} = Data.object ( Prelude.catMaybes [ ("LastDecreaseDateTime" Data..=) Prelude.<$> lastDecreaseDateTime, ("LastIncreaseDateTime" Data..=) Prelude.<$> lastIncreaseDateTime, ("NumberOfDecreasesToday" Data..=) Prelude.<$> numberOfDecreasesToday, ("ReadCapacityUnits" Data..=) Prelude.<$> readCapacityUnits, ("WriteCapacityUnits" Data..=) Prelude.<$> writeCapacityUnits ] )