{-# 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.AwsDynamoDbTableReplicaGlobalSecondaryIndex -- 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.AwsDynamoDbTableReplicaGlobalSecondaryIndex 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 import Amazonka.SecurityHub.Types.AwsDynamoDbTableProvisionedThroughputOverride -- | Information about a global secondary index for a DynamoDB table replica. -- -- /See:/ 'newAwsDynamoDbTableReplicaGlobalSecondaryIndex' smart constructor. data AwsDynamoDbTableReplicaGlobalSecondaryIndex = AwsDynamoDbTableReplicaGlobalSecondaryIndex' { -- | The name of the index. indexName :: Prelude.Maybe Prelude.Text, -- | Replica-specific configuration for the provisioned throughput for the -- index. provisionedThroughputOverride :: Prelude.Maybe AwsDynamoDbTableProvisionedThroughputOverride } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AwsDynamoDbTableReplicaGlobalSecondaryIndex' 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', 'awsDynamoDbTableReplicaGlobalSecondaryIndex_indexName' - The name of the index. -- -- 'provisionedThroughputOverride', 'awsDynamoDbTableReplicaGlobalSecondaryIndex_provisionedThroughputOverride' - Replica-specific configuration for the provisioned throughput for the -- index. newAwsDynamoDbTableReplicaGlobalSecondaryIndex :: AwsDynamoDbTableReplicaGlobalSecondaryIndex newAwsDynamoDbTableReplicaGlobalSecondaryIndex = AwsDynamoDbTableReplicaGlobalSecondaryIndex' { indexName = Prelude.Nothing, provisionedThroughputOverride = Prelude.Nothing } -- | The name of the index. awsDynamoDbTableReplicaGlobalSecondaryIndex_indexName :: Lens.Lens' AwsDynamoDbTableReplicaGlobalSecondaryIndex (Prelude.Maybe Prelude.Text) awsDynamoDbTableReplicaGlobalSecondaryIndex_indexName = Lens.lens (\AwsDynamoDbTableReplicaGlobalSecondaryIndex' {indexName} -> indexName) (\s@AwsDynamoDbTableReplicaGlobalSecondaryIndex' {} a -> s {indexName = a} :: AwsDynamoDbTableReplicaGlobalSecondaryIndex) -- | Replica-specific configuration for the provisioned throughput for the -- index. awsDynamoDbTableReplicaGlobalSecondaryIndex_provisionedThroughputOverride :: Lens.Lens' AwsDynamoDbTableReplicaGlobalSecondaryIndex (Prelude.Maybe AwsDynamoDbTableProvisionedThroughputOverride) awsDynamoDbTableReplicaGlobalSecondaryIndex_provisionedThroughputOverride = Lens.lens (\AwsDynamoDbTableReplicaGlobalSecondaryIndex' {provisionedThroughputOverride} -> provisionedThroughputOverride) (\s@AwsDynamoDbTableReplicaGlobalSecondaryIndex' {} a -> s {provisionedThroughputOverride = a} :: AwsDynamoDbTableReplicaGlobalSecondaryIndex) instance Data.FromJSON AwsDynamoDbTableReplicaGlobalSecondaryIndex where parseJSON = Data.withObject "AwsDynamoDbTableReplicaGlobalSecondaryIndex" ( \x -> AwsDynamoDbTableReplicaGlobalSecondaryIndex' Prelude.<$> (x Data..:? "IndexName") Prelude.<*> (x Data..:? "ProvisionedThroughputOverride") ) instance Prelude.Hashable AwsDynamoDbTableReplicaGlobalSecondaryIndex where hashWithSalt _salt AwsDynamoDbTableReplicaGlobalSecondaryIndex' {..} = _salt `Prelude.hashWithSalt` indexName `Prelude.hashWithSalt` provisionedThroughputOverride instance Prelude.NFData AwsDynamoDbTableReplicaGlobalSecondaryIndex where rnf AwsDynamoDbTableReplicaGlobalSecondaryIndex' {..} = Prelude.rnf indexName `Prelude.seq` Prelude.rnf provisionedThroughputOverride instance Data.ToJSON AwsDynamoDbTableReplicaGlobalSecondaryIndex where toJSON AwsDynamoDbTableReplicaGlobalSecondaryIndex' {..} = Data.object ( Prelude.catMaybes [ ("IndexName" Data..=) Prelude.<$> indexName, ("ProvisionedThroughputOverride" Data..=) Prelude.<$> provisionedThroughputOverride ] )