{-# 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.Route53RecoveryControlConfig.Types.NewAssertionRule -- 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.Route53RecoveryControlConfig.Types.NewAssertionRule 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.Route53RecoveryControlConfig.Types.RuleConfig -- | A new assertion rule for a control panel. -- -- /See:/ 'newNewAssertionRule' smart constructor. data NewAssertionRule = NewAssertionRule' { -- | The Amazon Resource Name (ARN) for the control panel. controlPanelArn :: Prelude.Text, -- | The routing controls that are part of transactions that are evaluated to -- determine if a request to change a routing control state is allowed. For -- example, you might include three routing controls, one for each of three -- Amazon Web Services Regions. assertedControls :: [Prelude.Text], -- | The criteria that you set for specific assertion controls (routing -- controls) that designate how many control states must be ON as the -- result of a transaction. For example, if you have three assertion -- controls, you might specify ATLEAST 2 for your rule configuration. This -- means that at least two assertion controls must be ON, so that at least -- two Amazon Web Services Regions have traffic flowing to them. ruleConfig :: RuleConfig, -- | An evaluation period, in milliseconds (ms), during which any request -- against the target routing controls will fail. This helps prevent -- \"flapping\" of state. The wait period is 5000 ms by default, but you -- can choose a custom value. waitPeriodMs :: Prelude.Int, -- | The name of the assertion rule. You can use any non-white space -- character in the name. name :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'NewAssertionRule' 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: -- -- 'controlPanelArn', 'newAssertionRule_controlPanelArn' - The Amazon Resource Name (ARN) for the control panel. -- -- 'assertedControls', 'newAssertionRule_assertedControls' - The routing controls that are part of transactions that are evaluated to -- determine if a request to change a routing control state is allowed. For -- example, you might include three routing controls, one for each of three -- Amazon Web Services Regions. -- -- 'ruleConfig', 'newAssertionRule_ruleConfig' - The criteria that you set for specific assertion controls (routing -- controls) that designate how many control states must be ON as the -- result of a transaction. For example, if you have three assertion -- controls, you might specify ATLEAST 2 for your rule configuration. This -- means that at least two assertion controls must be ON, so that at least -- two Amazon Web Services Regions have traffic flowing to them. -- -- 'waitPeriodMs', 'newAssertionRule_waitPeriodMs' - An evaluation period, in milliseconds (ms), during which any request -- against the target routing controls will fail. This helps prevent -- \"flapping\" of state. The wait period is 5000 ms by default, but you -- can choose a custom value. -- -- 'name', 'newAssertionRule_name' - The name of the assertion rule. You can use any non-white space -- character in the name. newNewAssertionRule :: -- | 'controlPanelArn' Prelude.Text -> -- | 'ruleConfig' RuleConfig -> -- | 'waitPeriodMs' Prelude.Int -> -- | 'name' Prelude.Text -> NewAssertionRule newNewAssertionRule pControlPanelArn_ pRuleConfig_ pWaitPeriodMs_ pName_ = NewAssertionRule' { controlPanelArn = pControlPanelArn_, assertedControls = Prelude.mempty, ruleConfig = pRuleConfig_, waitPeriodMs = pWaitPeriodMs_, name = pName_ } -- | The Amazon Resource Name (ARN) for the control panel. newAssertionRule_controlPanelArn :: Lens.Lens' NewAssertionRule Prelude.Text newAssertionRule_controlPanelArn = Lens.lens (\NewAssertionRule' {controlPanelArn} -> controlPanelArn) (\s@NewAssertionRule' {} a -> s {controlPanelArn = a} :: NewAssertionRule) -- | The routing controls that are part of transactions that are evaluated to -- determine if a request to change a routing control state is allowed. For -- example, you might include three routing controls, one for each of three -- Amazon Web Services Regions. newAssertionRule_assertedControls :: Lens.Lens' NewAssertionRule [Prelude.Text] newAssertionRule_assertedControls = Lens.lens (\NewAssertionRule' {assertedControls} -> assertedControls) (\s@NewAssertionRule' {} a -> s {assertedControls = a} :: NewAssertionRule) Prelude.. Lens.coerced -- | The criteria that you set for specific assertion controls (routing -- controls) that designate how many control states must be ON as the -- result of a transaction. For example, if you have three assertion -- controls, you might specify ATLEAST 2 for your rule configuration. This -- means that at least two assertion controls must be ON, so that at least -- two Amazon Web Services Regions have traffic flowing to them. newAssertionRule_ruleConfig :: Lens.Lens' NewAssertionRule RuleConfig newAssertionRule_ruleConfig = Lens.lens (\NewAssertionRule' {ruleConfig} -> ruleConfig) (\s@NewAssertionRule' {} a -> s {ruleConfig = a} :: NewAssertionRule) -- | An evaluation period, in milliseconds (ms), during which any request -- against the target routing controls will fail. This helps prevent -- \"flapping\" of state. The wait period is 5000 ms by default, but you -- can choose a custom value. newAssertionRule_waitPeriodMs :: Lens.Lens' NewAssertionRule Prelude.Int newAssertionRule_waitPeriodMs = Lens.lens (\NewAssertionRule' {waitPeriodMs} -> waitPeriodMs) (\s@NewAssertionRule' {} a -> s {waitPeriodMs = a} :: NewAssertionRule) -- | The name of the assertion rule. You can use any non-white space -- character in the name. newAssertionRule_name :: Lens.Lens' NewAssertionRule Prelude.Text newAssertionRule_name = Lens.lens (\NewAssertionRule' {name} -> name) (\s@NewAssertionRule' {} a -> s {name = a} :: NewAssertionRule) instance Prelude.Hashable NewAssertionRule where hashWithSalt _salt NewAssertionRule' {..} = _salt `Prelude.hashWithSalt` controlPanelArn `Prelude.hashWithSalt` assertedControls `Prelude.hashWithSalt` ruleConfig `Prelude.hashWithSalt` waitPeriodMs `Prelude.hashWithSalt` name instance Prelude.NFData NewAssertionRule where rnf NewAssertionRule' {..} = Prelude.rnf controlPanelArn `Prelude.seq` Prelude.rnf assertedControls `Prelude.seq` Prelude.rnf ruleConfig `Prelude.seq` Prelude.rnf waitPeriodMs `Prelude.seq` Prelude.rnf name instance Data.ToJSON NewAssertionRule where toJSON NewAssertionRule' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("ControlPanelArn" Data..= controlPanelArn), Prelude.Just ("AssertedControls" Data..= assertedControls), Prelude.Just ("RuleConfig" Data..= ruleConfig), Prelude.Just ("WaitPeriodMs" Data..= waitPeriodMs), Prelude.Just ("Name" Data..= name) ] )