Struct rusoto_waf::ByteMatchSet [] [src]

pub struct ByteMatchSet {
    pub byte_match_set_id: String,
    pub byte_match_tuples: Vec<ByteMatchTuple>,
    pub name: Option<String>,
}

In a GetByteMatchSet request, ByteMatchSet is a complex type that contains the ByteMatchSetId and Name of a ByteMatchSet, and the values that you specified when you updated the ByteMatchSet.

A complex type that contains ByteMatchTuple objects, which specify the parts of web requests that you want AWS WAF to inspect and the values that you want AWS WAF to search for. If a ByteMatchSet contains more than one ByteMatchTuple object, a request needs to match the settings in only one ByteMatchTuple to be considered a match.

Fields

The ByteMatchSetId for a ByteMatchSet. You use ByteMatchSetId to get information about a ByteMatchSet (see GetByteMatchSet), update a ByteMatchSet (see UpdateByteMatchSet), insert a ByteMatchSet into a Rule or delete one from a Rule (see UpdateRule), and delete a ByteMatchSet from AWS WAF (see DeleteByteMatchSet).

ByteMatchSetId is returned by CreateByteMatchSet and by ListByteMatchSets.

Specifies the bytes (typically a string that corresponds with ASCII characters) that you want AWS WAF to search for in web requests, the location in requests that you want AWS WAF to search, and other settings.

A friendly name or description of the ByteMatchSet. You can't change Name after you create a ByteMatchSet.

Trait Implementations

impl Default for ByteMatchSet
[src]

[src]

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

impl Debug for ByteMatchSet
[src]

[src]

Formats the value using the given formatter.

impl Clone for ByteMatchSet
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more