Class: Aws::WAF::Types::UpdateSqlInjectionMatchSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::UpdateSqlInjectionMatchSetRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
A request to update a SqlInjectionMatchSet.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
-
#sql_injection_match_set_id ⇒ String
The
SqlInjectionMatchSetId
of theSqlInjectionMatchSet
that you want to update. -
#updates ⇒ Array<Types::SqlInjectionMatchSetUpdate>
An array of
SqlInjectionMatchSetUpdate
objects that you want to insert into or delete from a SqlInjectionMatchSet.
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
5671 5672 5673 5674 5675 5676 5677 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 5671 class UpdateSqlInjectionMatchSetRequest < Struct.new( :sql_injection_match_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end |
#sql_injection_match_set_id ⇒ String
The SqlInjectionMatchSetId
of the SqlInjectionMatchSet
that you
want to update. SqlInjectionMatchSetId
is returned by
CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.
5671 5672 5673 5674 5675 5676 5677 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 5671 class UpdateSqlInjectionMatchSetRequest < Struct.new( :sql_injection_match_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end |
#updates ⇒ Array<Types::SqlInjectionMatchSetUpdate>
An array of SqlInjectionMatchSetUpdate
objects that you want to
insert into or delete from a SqlInjectionMatchSet. For more
information, see the applicable data types:
SqlInjectionMatchSetUpdate: Contains
Action
andSqlInjectionMatchTuple
SqlInjectionMatchTuple: Contains
FieldToMatch
andTextTransformation
FieldToMatch: Contains
Data
andType
5671 5672 5673 5674 5675 5676 5677 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 5671 class UpdateSqlInjectionMatchSetRequest < Struct.new( :sql_injection_match_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end |