Class AwsWafWebAclRule
- java.lang.Object
-
- software.amazon.awssdk.services.securityhub.model.AwsWafWebAclRule
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<AwsWafWebAclRule.Builder,AwsWafWebAclRule>
@Generated("software.amazon.awssdk:codegen") public final class AwsWafWebAclRule extends Object implements SdkPojo, Serializable, ToCopyableBuilder<AwsWafWebAclRule.Builder,AwsWafWebAclRule>
Details for a rule in an WAF web ACL.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceAwsWafWebAclRule.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description WafActionaction()Specifies the action that CloudFront or WAF takes when a web request matches the conditions in the rule.static AwsWafWebAclRule.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)List<WafExcludedRule>excludedRules()Rules to exclude from a rule group.<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)booleanhasExcludedRules()For responses, this returns true if the service returned a value for the ExcludedRules property.inthashCode()WafOverrideActionoverrideAction()Use theOverrideActionto test yourRuleGroup.Integerpriority()Specifies the order in which the rules in a web ACL are evaluated.StringruleId()The identifier for a rule.List<SdkField<?>>sdkFields()static Class<? extends AwsWafWebAclRule.Builder>serializableBuilderClass()AwsWafWebAclRule.BuildertoBuilder()StringtoString()Returns a string representation of this object.Stringtype()The rule type.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
action
public final WafAction action()
Specifies the action that CloudFront or WAF takes when a web request matches the conditions in the rule.
- Returns:
- Specifies the action that CloudFront or WAF takes when a web request matches the conditions in the rule.
-
hasExcludedRules
public final boolean hasExcludedRules()
For responses, this returns true if the service returned a value for the ExcludedRules property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
excludedRules
public final List<WafExcludedRule> excludedRules()
Rules to exclude from a rule group.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasExcludedRules()method.- Returns:
- Rules to exclude from a rule group.
-
overrideAction
public final WafOverrideAction overrideAction()
Use the
OverrideActionto test yourRuleGroup.Any rule in a
RuleGroupcan potentially block a request. If you set theOverrideActiontoNone, theRuleGroupblocks a request if any individual rule in theRuleGroupmatches the request and is configured to block that request.However, if you first want to test the
RuleGroup, set theOverrideActiontoCount. TheRuleGroupthen overrides any block action specified by individual rules contained within the group. Instead of blocking matching requests, those requests are counted.ActivatedRule|OverrideActionapplies only when updating or adding aRuleGroupto a web ACL. In this case you do not useActivatedRuleAction. For all other update requests,ActivatedRuleActionis used instead ofActivatedRuleOverrideAction.- Returns:
- Use the
OverrideActionto test yourRuleGroup.Any rule in a
RuleGroupcan potentially block a request. If you set theOverrideActiontoNone, theRuleGroupblocks a request if any individual rule in theRuleGroupmatches the request and is configured to block that request.However, if you first want to test the
RuleGroup, set theOverrideActiontoCount. TheRuleGroupthen overrides any block action specified by individual rules contained within the group. Instead of blocking matching requests, those requests are counted.ActivatedRule|OverrideActionapplies only when updating or adding aRuleGroupto a web ACL. In this case you do not useActivatedRuleAction. For all other update requests,ActivatedRuleActionis used instead ofActivatedRuleOverrideAction.
-
priority
public final Integer priority()
Specifies the order in which the rules in a web ACL are evaluated. Rules with a lower value for
Priorityare evaluated before rules with a higher value. The value must be a unique integer. If you add multiple rules to a web ACL, the values do not need to be consecutive.- Returns:
- Specifies the order in which the rules in a web ACL are evaluated. Rules with a lower value for
Priorityare evaluated before rules with a higher value. The value must be a unique integer. If you add multiple rules to a web ACL, the values do not need to be consecutive.
-
ruleId
public final String ruleId()
The identifier for a rule.
- Returns:
- The identifier for a rule.
-
type
public final String type()
The rule type.
Valid values:
REGULAR|RATE_BASED|GROUPThe default is
REGULAR.- Returns:
- The rule type.
Valid values:
REGULAR|RATE_BASED|GROUPThe default is
REGULAR.
-
toBuilder
public AwsWafWebAclRule.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<AwsWafWebAclRule.Builder,AwsWafWebAclRule>
-
builder
public static AwsWafWebAclRule.Builder builder()
-
serializableBuilderClass
public static Class<? extends AwsWafWebAclRule.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-