{-# 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.FMS.Types.EvaluationResult -- 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.FMS.Types.EvaluationResult where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.FMS.Types.PolicyComplianceStatusType import qualified Amazonka.Prelude as Prelude -- | Describes the compliance status for the account. An account is -- considered noncompliant if it includes resources that are not protected -- by the specified policy or that don\'t comply with the policy. -- -- /See:/ 'newEvaluationResult' smart constructor. data EvaluationResult = EvaluationResult' { -- | Describes an Amazon Web Services account\'s compliance with the Firewall -- Manager policy. complianceStatus :: Prelude.Maybe PolicyComplianceStatusType, -- | Indicates that over 100 resources are noncompliant with the Firewall -- Manager policy. evaluationLimitExceeded :: Prelude.Maybe Prelude.Bool, -- | The number of resources that are noncompliant with the specified policy. -- For WAF and Shield Advanced policies, a resource is considered -- noncompliant if it is not associated with the policy. For security group -- policies, a resource is considered noncompliant if it doesn\'t comply -- with the rules of the policy and remediation is disabled or not -- possible. violatorCount :: Prelude.Maybe Prelude.Natural } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'EvaluationResult' 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: -- -- 'complianceStatus', 'evaluationResult_complianceStatus' - Describes an Amazon Web Services account\'s compliance with the Firewall -- Manager policy. -- -- 'evaluationLimitExceeded', 'evaluationResult_evaluationLimitExceeded' - Indicates that over 100 resources are noncompliant with the Firewall -- Manager policy. -- -- 'violatorCount', 'evaluationResult_violatorCount' - The number of resources that are noncompliant with the specified policy. -- For WAF and Shield Advanced policies, a resource is considered -- noncompliant if it is not associated with the policy. For security group -- policies, a resource is considered noncompliant if it doesn\'t comply -- with the rules of the policy and remediation is disabled or not -- possible. newEvaluationResult :: EvaluationResult newEvaluationResult = EvaluationResult' { complianceStatus = Prelude.Nothing, evaluationLimitExceeded = Prelude.Nothing, violatorCount = Prelude.Nothing } -- | Describes an Amazon Web Services account\'s compliance with the Firewall -- Manager policy. evaluationResult_complianceStatus :: Lens.Lens' EvaluationResult (Prelude.Maybe PolicyComplianceStatusType) evaluationResult_complianceStatus = Lens.lens (\EvaluationResult' {complianceStatus} -> complianceStatus) (\s@EvaluationResult' {} a -> s {complianceStatus = a} :: EvaluationResult) -- | Indicates that over 100 resources are noncompliant with the Firewall -- Manager policy. evaluationResult_evaluationLimitExceeded :: Lens.Lens' EvaluationResult (Prelude.Maybe Prelude.Bool) evaluationResult_evaluationLimitExceeded = Lens.lens (\EvaluationResult' {evaluationLimitExceeded} -> evaluationLimitExceeded) (\s@EvaluationResult' {} a -> s {evaluationLimitExceeded = a} :: EvaluationResult) -- | The number of resources that are noncompliant with the specified policy. -- For WAF and Shield Advanced policies, a resource is considered -- noncompliant if it is not associated with the policy. For security group -- policies, a resource is considered noncompliant if it doesn\'t comply -- with the rules of the policy and remediation is disabled or not -- possible. evaluationResult_violatorCount :: Lens.Lens' EvaluationResult (Prelude.Maybe Prelude.Natural) evaluationResult_violatorCount = Lens.lens (\EvaluationResult' {violatorCount} -> violatorCount) (\s@EvaluationResult' {} a -> s {violatorCount = a} :: EvaluationResult) instance Data.FromJSON EvaluationResult where parseJSON = Data.withObject "EvaluationResult" ( \x -> EvaluationResult' Prelude.<$> (x Data..:? "ComplianceStatus") Prelude.<*> (x Data..:? "EvaluationLimitExceeded") Prelude.<*> (x Data..:? "ViolatorCount") ) instance Prelude.Hashable EvaluationResult where hashWithSalt _salt EvaluationResult' {..} = _salt `Prelude.hashWithSalt` complianceStatus `Prelude.hashWithSalt` evaluationLimitExceeded `Prelude.hashWithSalt` violatorCount instance Prelude.NFData EvaluationResult where rnf EvaluationResult' {..} = Prelude.rnf complianceStatus `Prelude.seq` Prelude.rnf evaluationLimitExceeded `Prelude.seq` Prelude.rnf violatorCount