Interface ActionCondition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ActionCondition.Builder,ActionCondition>,SdkBuilder<ActionCondition.Builder,ActionCondition>,SdkPojo
- Enclosing class:
- ActionCondition
public static interface ActionCondition.Builder extends SdkPojo, CopyableBuilder<ActionCondition.Builder,ActionCondition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActionCondition.Builderaction(String action)The action setting that a log record must contain in order to meet the condition.ActionCondition.Builderaction(ActionValue action)The action setting that a log record must contain in order to meet the condition.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
action
ActionCondition.Builder action(String action)
The action setting that a log record must contain in order to meet the condition. This is the action that WAF applied to the web request.
For rule groups, this is either the configured rule action setting, or if you've applied a rule action override to the rule, it's the override action. The value
EXCLUDED_AS_COUNTmatches on excluded rules and also on rules that have a rule action override of Count.- Parameters:
action- The action setting that a log record must contain in order to meet the condition. This is the action that WAF applied to the web request.For rule groups, this is either the configured rule action setting, or if you've applied a rule action override to the rule, it's the override action. The value
EXCLUDED_AS_COUNTmatches on excluded rules and also on rules that have a rule action override of Count.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionValue,ActionValue
-
action
ActionCondition.Builder action(ActionValue action)
The action setting that a log record must contain in order to meet the condition. This is the action that WAF applied to the web request.
For rule groups, this is either the configured rule action setting, or if you've applied a rule action override to the rule, it's the override action. The value
EXCLUDED_AS_COUNTmatches on excluded rules and also on rules that have a rule action override of Count.- Parameters:
action- The action setting that a log record must contain in order to meet the condition. This is the action that WAF applied to the web request.For rule groups, this is either the configured rule action setting, or if you've applied a rule action override to the rule, it's the override action. The value
EXCLUDED_AS_COUNTmatches on excluded rules and also on rules that have a rule action override of Count.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionValue,ActionValue
-
-