Interface RuleActionOverride.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<RuleActionOverride.Builder,,RuleActionOverride> SdkBuilder<RuleActionOverride.Builder,,RuleActionOverride> SdkPojo
- Enclosing class:
RuleActionOverride
-
Method Summary
Modifier and TypeMethodDescriptiondefault RuleActionOverride.BuilderactionToUse(Consumer<RuleAction.Builder> actionToUse) The override action to use, in place of the configured action of the rule in the rule group.actionToUse(RuleAction actionToUse) The override action to use, in place of the configured action of the rule in the rule group.The name of the rule to override.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
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
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
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 theRuleAction.Builderavoiding the need to create one manually viaRuleAction.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toactionToUse(RuleAction).- Parameters:
actionToUse- a consumer that will call methods onRuleAction.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-