You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::WAF::Types::UpdateRuleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::UpdateRuleRequest
- Defined in:
- (unknown)
Overview
When passing UpdateRuleRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
rule_id: "ResourceId", # required
change_token: "ChangeToken", # required
updates: [ # required
{
action: "INSERT", # required, accepts INSERT, DELETE
predicate: { # required
negated: false, # required
type: "IPMatch", # required, accepts IPMatch, ByteMatch, SqlInjectionMatch, GeoMatch, SizeConstraint, XssMatch, RegexMatch
data_id: "ResourceId", # required
},
},
],
}
Instance Attribute Summary collapse
-
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
-
#rule_id ⇒ String
The
RuleId
of theRule
that you want to update. -
#updates ⇒ Array<Types::RuleUpdate>
An array of
RuleUpdate
objects that you want to insert into or delete from a Rule.
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
#rule_id ⇒ String
The RuleId
of the Rule
that you want to update. RuleId
is returned
by CreateRule
and by ListRules.
#updates ⇒ Array<Types::RuleUpdate>
An array of RuleUpdate
objects that you want to insert into or delete
from a Rule. For more information, see the applicable data types:
RuleUpdate: Contains
Action
andPredicate
Predicate: Contains
DataId
,Negated
, andType
FieldToMatch: Contains
Data
andType