{-# 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.EKS.Types.NodegroupHealth -- 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.EKS.Types.NodegroupHealth where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.EKS.Types.Issue import qualified Amazonka.Prelude as Prelude -- | An object representing the health status of the node group. -- -- /See:/ 'newNodegroupHealth' smart constructor. data NodegroupHealth = NodegroupHealth' { -- | Any issues that are associated with the node group. issues :: Prelude.Maybe [Issue] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'NodegroupHealth' 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: -- -- 'issues', 'nodegroupHealth_issues' - Any issues that are associated with the node group. newNodegroupHealth :: NodegroupHealth newNodegroupHealth = NodegroupHealth' {issues = Prelude.Nothing} -- | Any issues that are associated with the node group. nodegroupHealth_issues :: Lens.Lens' NodegroupHealth (Prelude.Maybe [Issue]) nodegroupHealth_issues = Lens.lens (\NodegroupHealth' {issues} -> issues) (\s@NodegroupHealth' {} a -> s {issues = a} :: NodegroupHealth) Prelude.. Lens.mapping Lens.coerced instance Data.FromJSON NodegroupHealth where parseJSON = Data.withObject "NodegroupHealth" ( \x -> NodegroupHealth' Prelude.<$> (x Data..:? "issues" Data..!= Prelude.mempty) ) instance Prelude.Hashable NodegroupHealth where hashWithSalt _salt NodegroupHealth' {..} = _salt `Prelude.hashWithSalt` issues instance Prelude.NFData NodegroupHealth where rnf NodegroupHealth' {..} = Prelude.rnf issues