{-# 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.WAFV2.Types.AWSManagedRulesBotControlRuleSet -- 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.WAFV2.Types.AWSManagedRulesBotControlRuleSet 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.WAFV2.Types.InspectionLevel -- | Details for your use of the Bot Control managed rule group, used in -- @ManagedRuleGroupConfig@. -- -- /See:/ 'newAWSManagedRulesBotControlRuleSet' smart constructor. data AWSManagedRulesBotControlRuleSet = AWSManagedRulesBotControlRuleSet' { -- | The inspection level to use for the Bot Control rule group. The common -- level is the least expensive. The targeted level includes all common -- level rules and adds rules with more advanced inspection criteria. For -- details, see -- . inspectionLevel :: InspectionLevel } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AWSManagedRulesBotControlRuleSet' 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: -- -- 'inspectionLevel', 'aWSManagedRulesBotControlRuleSet_inspectionLevel' - The inspection level to use for the Bot Control rule group. The common -- level is the least expensive. The targeted level includes all common -- level rules and adds rules with more advanced inspection criteria. For -- details, see -- . newAWSManagedRulesBotControlRuleSet :: -- | 'inspectionLevel' InspectionLevel -> AWSManagedRulesBotControlRuleSet newAWSManagedRulesBotControlRuleSet pInspectionLevel_ = AWSManagedRulesBotControlRuleSet' { inspectionLevel = pInspectionLevel_ } -- | The inspection level to use for the Bot Control rule group. The common -- level is the least expensive. The targeted level includes all common -- level rules and adds rules with more advanced inspection criteria. For -- details, see -- . aWSManagedRulesBotControlRuleSet_inspectionLevel :: Lens.Lens' AWSManagedRulesBotControlRuleSet InspectionLevel aWSManagedRulesBotControlRuleSet_inspectionLevel = Lens.lens (\AWSManagedRulesBotControlRuleSet' {inspectionLevel} -> inspectionLevel) (\s@AWSManagedRulesBotControlRuleSet' {} a -> s {inspectionLevel = a} :: AWSManagedRulesBotControlRuleSet) instance Data.FromJSON AWSManagedRulesBotControlRuleSet where parseJSON = Data.withObject "AWSManagedRulesBotControlRuleSet" ( \x -> AWSManagedRulesBotControlRuleSet' Prelude.<$> (x Data..: "InspectionLevel") ) instance Prelude.Hashable AWSManagedRulesBotControlRuleSet where hashWithSalt _salt AWSManagedRulesBotControlRuleSet' {..} = _salt `Prelude.hashWithSalt` inspectionLevel instance Prelude.NFData AWSManagedRulesBotControlRuleSet where rnf AWSManagedRulesBotControlRuleSet' {..} = Prelude.rnf inspectionLevel instance Data.ToJSON AWSManagedRulesBotControlRuleSet where toJSON AWSManagedRulesBotControlRuleSet' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("InspectionLevel" Data..= inspectionLevel) ] )