{-# 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.DynamoDB.Types.ReplicaGlobalSecondaryIndexDescription -- 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.DynamoDB.Types.ReplicaGlobalSecondaryIndexDescription where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.DynamoDB.Types.AttributeValue import Amazonka.DynamoDB.Types.ProvisionedThroughputOverride import Amazonka.DynamoDB.Types.WriteRequest import qualified Amazonka.Prelude as Prelude -- | Represents the properties of a replica global secondary index. -- -- /See:/ 'newReplicaGlobalSecondaryIndexDescription' smart constructor. data ReplicaGlobalSecondaryIndexDescription = ReplicaGlobalSecondaryIndexDescription' { -- | The name of the global secondary index. indexName :: Prelude.Maybe Prelude.Text, -- | If not described, uses the source table GSI\'s read capacity settings. provisionedThroughputOverride :: Prelude.Maybe ProvisionedThroughputOverride } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ReplicaGlobalSecondaryIndexDescription' 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: -- -- 'indexName', 'replicaGlobalSecondaryIndexDescription_indexName' - The name of the global secondary index. -- -- 'provisionedThroughputOverride', 'replicaGlobalSecondaryIndexDescription_provisionedThroughputOverride' - If not described, uses the source table GSI\'s read capacity settings. newReplicaGlobalSecondaryIndexDescription :: ReplicaGlobalSecondaryIndexDescription newReplicaGlobalSecondaryIndexDescription = ReplicaGlobalSecondaryIndexDescription' { indexName = Prelude.Nothing, provisionedThroughputOverride = Prelude.Nothing } -- | The name of the global secondary index. replicaGlobalSecondaryIndexDescription_indexName :: Lens.Lens' ReplicaGlobalSecondaryIndexDescription (Prelude.Maybe Prelude.Text) replicaGlobalSecondaryIndexDescription_indexName = Lens.lens (\ReplicaGlobalSecondaryIndexDescription' {indexName} -> indexName) (\s@ReplicaGlobalSecondaryIndexDescription' {} a -> s {indexName = a} :: ReplicaGlobalSecondaryIndexDescription) -- | If not described, uses the source table GSI\'s read capacity settings. replicaGlobalSecondaryIndexDescription_provisionedThroughputOverride :: Lens.Lens' ReplicaGlobalSecondaryIndexDescription (Prelude.Maybe ProvisionedThroughputOverride) replicaGlobalSecondaryIndexDescription_provisionedThroughputOverride = Lens.lens (\ReplicaGlobalSecondaryIndexDescription' {provisionedThroughputOverride} -> provisionedThroughputOverride) (\s@ReplicaGlobalSecondaryIndexDescription' {} a -> s {provisionedThroughputOverride = a} :: ReplicaGlobalSecondaryIndexDescription) instance Data.FromJSON ReplicaGlobalSecondaryIndexDescription where parseJSON = Data.withObject "ReplicaGlobalSecondaryIndexDescription" ( \x -> ReplicaGlobalSecondaryIndexDescription' Prelude.<$> (x Data..:? "IndexName") Prelude.<*> (x Data..:? "ProvisionedThroughputOverride") ) instance Prelude.Hashable ReplicaGlobalSecondaryIndexDescription where hashWithSalt _salt ReplicaGlobalSecondaryIndexDescription' {..} = _salt `Prelude.hashWithSalt` indexName `Prelude.hashWithSalt` provisionedThroughputOverride instance Prelude.NFData ReplicaGlobalSecondaryIndexDescription where rnf ReplicaGlobalSecondaryIndexDescription' {..} = Prelude.rnf indexName `Prelude.seq` Prelude.rnf provisionedThroughputOverride