Struct rusoto_waf_regional::DeleteSqlInjectionMatchSetRequest[][src]

pub struct DeleteSqlInjectionMatchSetRequest {
    pub change_token: String,
    pub sql_injection_match_set_id: String,
}

A request to delete a SqlInjectionMatchSet from AWS WAF.

Fields

The value returned by the most recent call to GetChangeToken.

The SqlInjectionMatchSetId of the SqlInjectionMatchSet that you want to delete. SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.

Trait Implementations

impl Default for DeleteSqlInjectionMatchSetRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DeleteSqlInjectionMatchSetRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteSqlInjectionMatchSetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteSqlInjectionMatchSetRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations