Class: Aws::WAF::Types::UpdateSqlInjectionMatchSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::UpdateSqlInjectionMatchSetRequest
- Includes:
- Structure
- Defined in:
- 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
SqlInjectionMatchSetIdof theSqlInjectionMatchSetthat you want to update. -
#updates ⇒ Array<Types::SqlInjectionMatchSetUpdate>
An array of
SqlInjectionMatchSetUpdateobjects 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 '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 '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
ActionandSqlInjectionMatchTuple -
SqlInjectionMatchTuple: Contains
FieldToMatchandTextTransformation -
FieldToMatch: Contains
DataandType
5671 5672 5673 5674 5675 5676 5677 |
# File '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 |