Class WafAction
- java.lang.Object
-
- com.amazonaws.services.waf.model.WafAction
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class WafAction extends Object implements Serializable, Cloneable
For the action that is associated with a rule in a
WebACL
, specifies the action that you want AWS WAF to perform when a web request matches all of the conditions in a rule. For the default action in aWebACL
, specifies the action that you want AWS WAF to take when a web request doesn't match all of the conditions in any of the rules in aWebACL
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WafAction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WafAction
clone()
boolean
equals(Object obj)
String
getType()
Specifies how you want AWS WAF to respond to requests that match the settings in aRule
.int
hashCode()
void
setType(WafActionType type)
Specifies how you want AWS WAF to respond to requests that match the settings in aRule
.void
setType(String type)
Specifies how you want AWS WAF to respond to requests that match the settings in aRule
.String
toString()
Returns a string representation of this object; useful for testing and debugging.WafAction
withType(WafActionType type)
Specifies how you want AWS WAF to respond to requests that match the settings in aRule
.WafAction
withType(String type)
Specifies how you want AWS WAF to respond to requests that match the settings in aRule
.
-
-
-
Method Detail
-
setType
public void setType(String type)
Specifies how you want AWS WAF to respond to requests that match the settings in a
Rule
. Valid settings include the following:ALLOW
: AWS WAF allows requestsBLOCK
: AWS WAF blocks requestsCOUNT
: AWS WAF increments a counter of the requests that match all of the conditions in the rule. AWS WAF then continues to inspect the web request based on the remaining rules in the web ACL. You can't specifyCOUNT
for the default action for aWebACL
.
- Parameters:
type
- Specifies how you want AWS WAF to respond to requests that match the settings in aRule
. Valid settings include the following:ALLOW
: AWS WAF allows requestsBLOCK
: AWS WAF blocks requestsCOUNT
: AWS WAF increments a counter of the requests that match all of the conditions in the rule. AWS WAF then continues to inspect the web request based on the remaining rules in the web ACL. You can't specifyCOUNT
for the default action for aWebACL
.
- See Also:
WafActionType
-
getType
public String getType()
Specifies how you want AWS WAF to respond to requests that match the settings in a
Rule
. Valid settings include the following:ALLOW
: AWS WAF allows requestsBLOCK
: AWS WAF blocks requestsCOUNT
: AWS WAF increments a counter of the requests that match all of the conditions in the rule. AWS WAF then continues to inspect the web request based on the remaining rules in the web ACL. You can't specifyCOUNT
for the default action for aWebACL
.
- Returns:
- Specifies how you want AWS WAF to respond to requests that match
the settings in a
Rule
. Valid settings include the following:ALLOW
: AWS WAF allows requestsBLOCK
: AWS WAF blocks requestsCOUNT
: AWS WAF increments a counter of the requests that match all of the conditions in the rule. AWS WAF then continues to inspect the web request based on the remaining rules in the web ACL. You can't specifyCOUNT
for the default action for aWebACL
.
- See Also:
WafActionType
-
withType
public WafAction withType(String type)
Specifies how you want AWS WAF to respond to requests that match the settings in a
Rule
. Valid settings include the following:ALLOW
: AWS WAF allows requestsBLOCK
: AWS WAF blocks requestsCOUNT
: AWS WAF increments a counter of the requests that match all of the conditions in the rule. AWS WAF then continues to inspect the web request based on the remaining rules in the web ACL. You can't specifyCOUNT
for the default action for aWebACL
.
- Parameters:
type
- Specifies how you want AWS WAF to respond to requests that match the settings in aRule
. Valid settings include the following:ALLOW
: AWS WAF allows requestsBLOCK
: AWS WAF blocks requestsCOUNT
: AWS WAF increments a counter of the requests that match all of the conditions in the rule. AWS WAF then continues to inspect the web request based on the remaining rules in the web ACL. You can't specifyCOUNT
for the default action for aWebACL
.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WafActionType
-
setType
public void setType(WafActionType type)
Specifies how you want AWS WAF to respond to requests that match the settings in a
Rule
. Valid settings include the following:ALLOW
: AWS WAF allows requestsBLOCK
: AWS WAF blocks requestsCOUNT
: AWS WAF increments a counter of the requests that match all of the conditions in the rule. AWS WAF then continues to inspect the web request based on the remaining rules in the web ACL. You can't specifyCOUNT
for the default action for aWebACL
.
- Parameters:
type
- Specifies how you want AWS WAF to respond to requests that match the settings in aRule
. Valid settings include the following:ALLOW
: AWS WAF allows requestsBLOCK
: AWS WAF blocks requestsCOUNT
: AWS WAF increments a counter of the requests that match all of the conditions in the rule. AWS WAF then continues to inspect the web request based on the remaining rules in the web ACL. You can't specifyCOUNT
for the default action for aWebACL
.
- See Also:
WafActionType
-
withType
public WafAction withType(WafActionType type)
Specifies how you want AWS WAF to respond to requests that match the settings in a
Rule
. Valid settings include the following:ALLOW
: AWS WAF allows requestsBLOCK
: AWS WAF blocks requestsCOUNT
: AWS WAF increments a counter of the requests that match all of the conditions in the rule. AWS WAF then continues to inspect the web request based on the remaining rules in the web ACL. You can't specifyCOUNT
for the default action for aWebACL
.
- Parameters:
type
- Specifies how you want AWS WAF to respond to requests that match the settings in aRule
. Valid settings include the following:ALLOW
: AWS WAF allows requestsBLOCK
: AWS WAF blocks requestsCOUNT
: AWS WAF increments a counter of the requests that match all of the conditions in the rule. AWS WAF then continues to inspect the web request based on the remaining rules in the web ACL. You can't specifyCOUNT
for the default action for aWebACL
.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WafActionType
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
-