Struct rusoto_waf_regional::RegexMatchSetUpdate[][src]

pub struct RegexMatchSetUpdate {
    pub action: String,
    pub regex_match_tuple: RegexMatchTuple,
}

In an UpdateRegexMatchSet request, RegexMatchSetUpdate specifies whether to insert or delete a RegexMatchTuple and includes the settings for the RegexMatchTuple.

Fields

Specifies whether to insert or delete a RegexMatchTuple.

Information about the part of a web request that you want AWS WAF to inspect and the identifier of the regular expression (regex) pattern that you want AWS WAF to search for. If you specify DELETE for the value of Action, the RegexMatchTuple values must exactly match the values in the RegexMatchTuple that you want to delete from the RegexMatchSet.

Trait Implementations

impl Default for RegexMatchSetUpdate
[src]

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

impl Debug for RegexMatchSetUpdate
[src]

Formats the value using the given formatter. Read more

impl Clone for RegexMatchSetUpdate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RegexMatchSetUpdate
[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