{-# 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.Kafka.Types.ClusterOperationStep -- 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.Kafka.Types.ClusterOperationStep where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.Kafka.Types.ClusterOperationStepInfo import qualified Amazonka.Prelude as Prelude -- | Step taken during a cluster operation. -- -- /See:/ 'newClusterOperationStep' smart constructor. data ClusterOperationStep = ClusterOperationStep' { -- | Information about the step and its status. stepInfo :: Prelude.Maybe ClusterOperationStepInfo, -- | The name of the step. stepName :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ClusterOperationStep' 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: -- -- 'stepInfo', 'clusterOperationStep_stepInfo' - Information about the step and its status. -- -- 'stepName', 'clusterOperationStep_stepName' - The name of the step. newClusterOperationStep :: ClusterOperationStep newClusterOperationStep = ClusterOperationStep' { stepInfo = Prelude.Nothing, stepName = Prelude.Nothing } -- | Information about the step and its status. clusterOperationStep_stepInfo :: Lens.Lens' ClusterOperationStep (Prelude.Maybe ClusterOperationStepInfo) clusterOperationStep_stepInfo = Lens.lens (\ClusterOperationStep' {stepInfo} -> stepInfo) (\s@ClusterOperationStep' {} a -> s {stepInfo = a} :: ClusterOperationStep) -- | The name of the step. clusterOperationStep_stepName :: Lens.Lens' ClusterOperationStep (Prelude.Maybe Prelude.Text) clusterOperationStep_stepName = Lens.lens (\ClusterOperationStep' {stepName} -> stepName) (\s@ClusterOperationStep' {} a -> s {stepName = a} :: ClusterOperationStep) instance Data.FromJSON ClusterOperationStep where parseJSON = Data.withObject "ClusterOperationStep" ( \x -> ClusterOperationStep' Prelude.<$> (x Data..:? "stepInfo") Prelude.<*> (x Data..:? "stepName") ) instance Prelude.Hashable ClusterOperationStep where hashWithSalt _salt ClusterOperationStep' {..} = _salt `Prelude.hashWithSalt` stepInfo `Prelude.hashWithSalt` stepName instance Prelude.NFData ClusterOperationStep where rnf ClusterOperationStep' {..} = Prelude.rnf stepInfo `Prelude.seq` Prelude.rnf stepName