class Aws::WAF::Types::UpdateSqlInjectionMatchSetRequest

A request to update a SqlInjectionMatchSet.

@note When making an API call, you may pass UpdateSqlInjectionMatchSetRequest

data as a hash:

    {
      sql_injection_match_set_id: "ResourceId", # required
      change_token: "ChangeToken", # required
      updates: [ # required
        {
          action: "INSERT", # required, accepts INSERT, DELETE
          sql_injection_match_tuple: { # required
            field_to_match: { # required
              type: "URI", # required, accepts URI, QUERY_STRING, HEADER, METHOD, BODY, SINGLE_QUERY_ARG, ALL_QUERY_ARGS
              data: "MatchFieldData",
            },
            text_transformation: "NONE", # required, accepts NONE, COMPRESS_WHITE_SPACE, HTML_ENTITY_DECODE, LOWERCASE, CMD_LINE, URL_DECODE
          },
        },
      ],
    }

@!attribute [rw] sql_injection_match_set_id

The `SqlInjectionMatchSetId` of the `SqlInjectionMatchSet` that you
want to update. `SqlInjectionMatchSetId` is returned by
CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.
@return [String]

@!attribute [rw] change_token

The value returned by the most recent call to GetChangeToken.
@return [String]

@!attribute [rw] updates

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`
@return [Array<Types::SqlInjectionMatchSetUpdate>]

@see docs.aws.amazon.com/goto/WebAPI/waf-2015-08-24/UpdateSqlInjectionMatchSetRequest AWS API Documentation

Constants

SENSITIVE