Struct rusoto_waf_regional::WebACLUpdate[][src]

pub struct WebACLUpdate {
    pub action: String,
    pub activated_rule: ActivatedRule,
}

Specifies whether to insert a Rule into or delete a Rule from a WebACL.

Fields

Specifies whether to insert a Rule into or delete a Rule from a WebACL.

The ActivatedRule object in an UpdateWebACL request specifies a Rule that you want to insert or delete, the priority of the Rule in the WebACL, and the action that you want AWS WAF to take when a web request matches the Rule (ALLOW, BLOCK, or COUNT).

Trait Implementations

impl Default for WebACLUpdate
[src]

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

impl Debug for WebACLUpdate
[src]

Formats the value using the given formatter. Read more

impl Clone for WebACLUpdate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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