{-# 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.Redshift.Types.ClusterParameterStatus -- 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.Redshift.Types.ClusterParameterStatus 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.Redshift.Internal -- | Describes the status of a parameter group. -- -- /See:/ 'newClusterParameterStatus' smart constructor. data ClusterParameterStatus = ClusterParameterStatus' { -- | The error that prevented the parameter from being applied to the -- database. parameterApplyErrorDescription :: Prelude.Maybe Prelude.Text, -- | The status of the parameter that indicates whether the parameter is in -- sync with the database, waiting for a cluster reboot, or encountered an -- error when being applied. -- -- The following are possible statuses and descriptions. -- -- - @in-sync@: The parameter value is in sync with the database. -- -- - @pending-reboot@: The parameter value will be applied after the -- cluster reboots. -- -- - @applying@: The parameter value is being applied to the database. -- -- - @invalid-parameter@: Cannot apply the parameter value because it has -- an invalid value or syntax. -- -- - @apply-deferred@: The parameter contains static property changes. -- The changes are deferred until the cluster reboots. -- -- - @apply-error@: Cannot connect to the cluster. The parameter change -- will be applied after the cluster reboots. -- -- - @unknown-error@: Cannot apply the parameter change right now. The -- change will be applied after the cluster reboots. parameterApplyStatus :: Prelude.Maybe Prelude.Text, -- | The name of the parameter. parameterName :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ClusterParameterStatus' 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: -- -- 'parameterApplyErrorDescription', 'clusterParameterStatus_parameterApplyErrorDescription' - The error that prevented the parameter from being applied to the -- database. -- -- 'parameterApplyStatus', 'clusterParameterStatus_parameterApplyStatus' - The status of the parameter that indicates whether the parameter is in -- sync with the database, waiting for a cluster reboot, or encountered an -- error when being applied. -- -- The following are possible statuses and descriptions. -- -- - @in-sync@: The parameter value is in sync with the database. -- -- - @pending-reboot@: The parameter value will be applied after the -- cluster reboots. -- -- - @applying@: The parameter value is being applied to the database. -- -- - @invalid-parameter@: Cannot apply the parameter value because it has -- an invalid value or syntax. -- -- - @apply-deferred@: The parameter contains static property changes. -- The changes are deferred until the cluster reboots. -- -- - @apply-error@: Cannot connect to the cluster. The parameter change -- will be applied after the cluster reboots. -- -- - @unknown-error@: Cannot apply the parameter change right now. The -- change will be applied after the cluster reboots. -- -- 'parameterName', 'clusterParameterStatus_parameterName' - The name of the parameter. newClusterParameterStatus :: ClusterParameterStatus newClusterParameterStatus = ClusterParameterStatus' { parameterApplyErrorDescription = Prelude.Nothing, parameterApplyStatus = Prelude.Nothing, parameterName = Prelude.Nothing } -- | The error that prevented the parameter from being applied to the -- database. clusterParameterStatus_parameterApplyErrorDescription :: Lens.Lens' ClusterParameterStatus (Prelude.Maybe Prelude.Text) clusterParameterStatus_parameterApplyErrorDescription = Lens.lens (\ClusterParameterStatus' {parameterApplyErrorDescription} -> parameterApplyErrorDescription) (\s@ClusterParameterStatus' {} a -> s {parameterApplyErrorDescription = a} :: ClusterParameterStatus) -- | The status of the parameter that indicates whether the parameter is in -- sync with the database, waiting for a cluster reboot, or encountered an -- error when being applied. -- -- The following are possible statuses and descriptions. -- -- - @in-sync@: The parameter value is in sync with the database. -- -- - @pending-reboot@: The parameter value will be applied after the -- cluster reboots. -- -- - @applying@: The parameter value is being applied to the database. -- -- - @invalid-parameter@: Cannot apply the parameter value because it has -- an invalid value or syntax. -- -- - @apply-deferred@: The parameter contains static property changes. -- The changes are deferred until the cluster reboots. -- -- - @apply-error@: Cannot connect to the cluster. The parameter change -- will be applied after the cluster reboots. -- -- - @unknown-error@: Cannot apply the parameter change right now. The -- change will be applied after the cluster reboots. clusterParameterStatus_parameterApplyStatus :: Lens.Lens' ClusterParameterStatus (Prelude.Maybe Prelude.Text) clusterParameterStatus_parameterApplyStatus = Lens.lens (\ClusterParameterStatus' {parameterApplyStatus} -> parameterApplyStatus) (\s@ClusterParameterStatus' {} a -> s {parameterApplyStatus = a} :: ClusterParameterStatus) -- | The name of the parameter. clusterParameterStatus_parameterName :: Lens.Lens' ClusterParameterStatus (Prelude.Maybe Prelude.Text) clusterParameterStatus_parameterName = Lens.lens (\ClusterParameterStatus' {parameterName} -> parameterName) (\s@ClusterParameterStatus' {} a -> s {parameterName = a} :: ClusterParameterStatus) instance Data.FromXML ClusterParameterStatus where parseXML x = ClusterParameterStatus' Prelude.<$> (x Data..@? "ParameterApplyErrorDescription") Prelude.<*> (x Data..@? "ParameterApplyStatus") Prelude.<*> (x Data..@? "ParameterName") instance Prelude.Hashable ClusterParameterStatus where hashWithSalt _salt ClusterParameterStatus' {..} = _salt `Prelude.hashWithSalt` parameterApplyErrorDescription `Prelude.hashWithSalt` parameterApplyStatus `Prelude.hashWithSalt` parameterName instance Prelude.NFData ClusterParameterStatus where rnf ClusterParameterStatus' {..} = Prelude.rnf parameterApplyErrorDescription `Prelude.seq` Prelude.rnf parameterApplyStatus `Prelude.seq` Prelude.rnf parameterName