Struct rusoto_waf_regional::ByteMatchSetUpdate[][src]

pub struct ByteMatchSetUpdate {
    pub action: String,
    pub byte_match_tuple: ByteMatchTuple,
}

In an UpdateByteMatchSet request, ByteMatchSetUpdate specifies whether to insert or delete a ByteMatchTuple and includes the settings for the ByteMatchTuple.

Fields

Specifies whether to insert or delete a ByteMatchTuple.

Information about the part of a web request that you want AWS WAF to inspect and the value that you want AWS WAF to search for. If you specify DELETE for the value of Action, the ByteMatchTuple values must exactly match the values in the ByteMatchTuple that you want to delete from the ByteMatchSet.

Trait Implementations

impl Default for ByteMatchSetUpdate
[src]

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

impl Debug for ByteMatchSetUpdate
[src]

Formats the value using the given formatter. Read more

impl Clone for ByteMatchSetUpdate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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