Interface RuleActionOverride.Builder

  • Method Details

    • name

      The name of the rule to override.

      Verify the rule names in your overrides carefully. With managed rule groups, WAF silently ignores any override that uses an invalid rule name. With customer-owned rule groups, invalid rule names in your overrides will cause web ACL updates to fail. An invalid rule name is any name that doesn't exactly match the case-sensitive name of an existing rule in the rule group.

      Parameters:
      name - The name of the rule to override.

      Verify the rule names in your overrides carefully. With managed rule groups, WAF silently ignores any override that uses an invalid rule name. With customer-owned rule groups, invalid rule names in your overrides will cause web ACL updates to fail. An invalid rule name is any name that doesn't exactly match the case-sensitive name of an existing rule in the rule group.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • actionToUse

      RuleActionOverride.Builder actionToUse(RuleAction actionToUse)

      The override action to use, in place of the configured action of the rule in the rule group.

      Parameters:
      actionToUse - The override action to use, in place of the configured action of the rule in the rule group.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • actionToUse

      default RuleActionOverride.Builder actionToUse(Consumer<RuleAction.Builder> actionToUse)

      The override action to use, in place of the configured action of the rule in the rule group.

      This is a convenience method that creates an instance of the RuleAction.Builder avoiding the need to create one manually via RuleAction.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to actionToUse(RuleAction).

      Parameters:
      actionToUse - a consumer that will call methods on RuleAction.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: