Class: Aws::WAFRegional::Types::UpdateSqlInjectionMatchSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFRegional::Types::UpdateSqlInjectionMatchSetRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-wafregional/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 the `SqlInjectionMatchSet` 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.
5799 5800 5801 5802 5803 5804 5805 |
# File 'lib/aws-sdk-wafregional/types.rb', line 5799 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.
5799 5800 5801 5802 5803 5804 5805 |
# File 'lib/aws-sdk-wafregional/types.rb', line 5799 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` and `SqlInjectionMatchTuple`
-
SqlInjectionMatchTuple: Contains ‘FieldToMatch` and `TextTransformation`
-
FieldToMatch: Contains ‘Data` and `Type`
5799 5800 5801 5802 5803 5804 5805 |
# File 'lib/aws-sdk-wafregional/types.rb', line 5799 class UpdateSqlInjectionMatchSetRequest < Struct.new( :sql_injection_match_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end |