{-# 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.ElastiCache.Types.CacheParameterGroupStatus -- 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.ElastiCache.Types.CacheParameterGroupStatus 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 -- | Status of the cache parameter group. -- -- /See:/ 'newCacheParameterGroupStatus' smart constructor. data CacheParameterGroupStatus = CacheParameterGroupStatus' { -- | A list of the cache node IDs which need to be rebooted for parameter -- changes to be applied. A node ID is a numeric identifier (0001, 0002, -- etc.). cacheNodeIdsToReboot :: Prelude.Maybe [Prelude.Text], -- | The name of the cache parameter group. cacheParameterGroupName :: Prelude.Maybe Prelude.Text, -- | The status of parameter updates. parameterApplyStatus :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CacheParameterGroupStatus' 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: -- -- 'cacheNodeIdsToReboot', 'cacheParameterGroupStatus_cacheNodeIdsToReboot' - A list of the cache node IDs which need to be rebooted for parameter -- changes to be applied. A node ID is a numeric identifier (0001, 0002, -- etc.). -- -- 'cacheParameterGroupName', 'cacheParameterGroupStatus_cacheParameterGroupName' - The name of the cache parameter group. -- -- 'parameterApplyStatus', 'cacheParameterGroupStatus_parameterApplyStatus' - The status of parameter updates. newCacheParameterGroupStatus :: CacheParameterGroupStatus newCacheParameterGroupStatus = CacheParameterGroupStatus' { cacheNodeIdsToReboot = Prelude.Nothing, cacheParameterGroupName = Prelude.Nothing, parameterApplyStatus = Prelude.Nothing } -- | A list of the cache node IDs which need to be rebooted for parameter -- changes to be applied. A node ID is a numeric identifier (0001, 0002, -- etc.). cacheParameterGroupStatus_cacheNodeIdsToReboot :: Lens.Lens' CacheParameterGroupStatus (Prelude.Maybe [Prelude.Text]) cacheParameterGroupStatus_cacheNodeIdsToReboot = Lens.lens (\CacheParameterGroupStatus' {cacheNodeIdsToReboot} -> cacheNodeIdsToReboot) (\s@CacheParameterGroupStatus' {} a -> s {cacheNodeIdsToReboot = a} :: CacheParameterGroupStatus) Prelude.. Lens.mapping Lens.coerced -- | The name of the cache parameter group. cacheParameterGroupStatus_cacheParameterGroupName :: Lens.Lens' CacheParameterGroupStatus (Prelude.Maybe Prelude.Text) cacheParameterGroupStatus_cacheParameterGroupName = Lens.lens (\CacheParameterGroupStatus' {cacheParameterGroupName} -> cacheParameterGroupName) (\s@CacheParameterGroupStatus' {} a -> s {cacheParameterGroupName = a} :: CacheParameterGroupStatus) -- | The status of parameter updates. cacheParameterGroupStatus_parameterApplyStatus :: Lens.Lens' CacheParameterGroupStatus (Prelude.Maybe Prelude.Text) cacheParameterGroupStatus_parameterApplyStatus = Lens.lens (\CacheParameterGroupStatus' {parameterApplyStatus} -> parameterApplyStatus) (\s@CacheParameterGroupStatus' {} a -> s {parameterApplyStatus = a} :: CacheParameterGroupStatus) instance Data.FromXML CacheParameterGroupStatus where parseXML x = CacheParameterGroupStatus' Prelude.<$> ( x Data..@? "CacheNodeIdsToReboot" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLList "CacheNodeId") ) Prelude.<*> (x Data..@? "CacheParameterGroupName") Prelude.<*> (x Data..@? "ParameterApplyStatus") instance Prelude.Hashable CacheParameterGroupStatus where hashWithSalt _salt CacheParameterGroupStatus' {..} = _salt `Prelude.hashWithSalt` cacheNodeIdsToReboot `Prelude.hashWithSalt` cacheParameterGroupName `Prelude.hashWithSalt` parameterApplyStatus instance Prelude.NFData CacheParameterGroupStatus where rnf CacheParameterGroupStatus' {..} = Prelude.rnf cacheNodeIdsToReboot `Prelude.seq` Prelude.rnf cacheParameterGroupName `Prelude.seq` Prelude.rnf parameterApplyStatus