{-# 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.SecurityHub.Types.RuleGroupSourceStatefulRulesDetails -- 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.SecurityHub.Types.RuleGroupSourceStatefulRulesDetails 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.SecurityHub.Types.RuleGroupSourceStatefulRulesHeaderDetails import Amazonka.SecurityHub.Types.RuleGroupSourceStatefulRulesOptionsDetails -- | A Suricata rule specification. -- -- /See:/ 'newRuleGroupSourceStatefulRulesDetails' smart constructor. data RuleGroupSourceStatefulRulesDetails = RuleGroupSourceStatefulRulesDetails' { -- | Defines what Network Firewall should do with the packets in a traffic -- flow when the flow matches the stateful rule criteria. action :: Prelude.Maybe Prelude.Text, -- | The stateful inspection criteria for the rule. header :: Prelude.Maybe RuleGroupSourceStatefulRulesHeaderDetails, -- | Additional options for the rule. ruleOptions :: Prelude.Maybe [RuleGroupSourceStatefulRulesOptionsDetails] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'RuleGroupSourceStatefulRulesDetails' 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: -- -- 'action', 'ruleGroupSourceStatefulRulesDetails_action' - Defines what Network Firewall should do with the packets in a traffic -- flow when the flow matches the stateful rule criteria. -- -- 'header', 'ruleGroupSourceStatefulRulesDetails_header' - The stateful inspection criteria for the rule. -- -- 'ruleOptions', 'ruleGroupSourceStatefulRulesDetails_ruleOptions' - Additional options for the rule. newRuleGroupSourceStatefulRulesDetails :: RuleGroupSourceStatefulRulesDetails newRuleGroupSourceStatefulRulesDetails = RuleGroupSourceStatefulRulesDetails' { action = Prelude.Nothing, header = Prelude.Nothing, ruleOptions = Prelude.Nothing } -- | Defines what Network Firewall should do with the packets in a traffic -- flow when the flow matches the stateful rule criteria. ruleGroupSourceStatefulRulesDetails_action :: Lens.Lens' RuleGroupSourceStatefulRulesDetails (Prelude.Maybe Prelude.Text) ruleGroupSourceStatefulRulesDetails_action = Lens.lens (\RuleGroupSourceStatefulRulesDetails' {action} -> action) (\s@RuleGroupSourceStatefulRulesDetails' {} a -> s {action = a} :: RuleGroupSourceStatefulRulesDetails) -- | The stateful inspection criteria for the rule. ruleGroupSourceStatefulRulesDetails_header :: Lens.Lens' RuleGroupSourceStatefulRulesDetails (Prelude.Maybe RuleGroupSourceStatefulRulesHeaderDetails) ruleGroupSourceStatefulRulesDetails_header = Lens.lens (\RuleGroupSourceStatefulRulesDetails' {header} -> header) (\s@RuleGroupSourceStatefulRulesDetails' {} a -> s {header = a} :: RuleGroupSourceStatefulRulesDetails) -- | Additional options for the rule. ruleGroupSourceStatefulRulesDetails_ruleOptions :: Lens.Lens' RuleGroupSourceStatefulRulesDetails (Prelude.Maybe [RuleGroupSourceStatefulRulesOptionsDetails]) ruleGroupSourceStatefulRulesDetails_ruleOptions = Lens.lens (\RuleGroupSourceStatefulRulesDetails' {ruleOptions} -> ruleOptions) (\s@RuleGroupSourceStatefulRulesDetails' {} a -> s {ruleOptions = a} :: RuleGroupSourceStatefulRulesDetails) Prelude.. Lens.mapping Lens.coerced instance Data.FromJSON RuleGroupSourceStatefulRulesDetails where parseJSON = Data.withObject "RuleGroupSourceStatefulRulesDetails" ( \x -> RuleGroupSourceStatefulRulesDetails' Prelude.<$> (x Data..:? "Action") Prelude.<*> (x Data..:? "Header") Prelude.<*> (x Data..:? "RuleOptions" Data..!= Prelude.mempty) ) instance Prelude.Hashable RuleGroupSourceStatefulRulesDetails where hashWithSalt _salt RuleGroupSourceStatefulRulesDetails' {..} = _salt `Prelude.hashWithSalt` action `Prelude.hashWithSalt` header `Prelude.hashWithSalt` ruleOptions instance Prelude.NFData RuleGroupSourceStatefulRulesDetails where rnf RuleGroupSourceStatefulRulesDetails' {..} = Prelude.rnf action `Prelude.seq` Prelude.rnf header `Prelude.seq` Prelude.rnf ruleOptions instance Data.ToJSON RuleGroupSourceStatefulRulesDetails where toJSON RuleGroupSourceStatefulRulesDetails' {..} = Data.object ( Prelude.catMaybes [ ("Action" Data..=) Prelude.<$> action, ("Header" Data..=) Prelude.<$> header, ("RuleOptions" Data..=) Prelude.<$> ruleOptions ] )