Struct rusoto_waf_regional::UpdateRuleGroupRequest[][src]

pub struct UpdateRuleGroupRequest {
    pub change_token: String,
    pub rule_group_id: String,
    pub updates: Vec<RuleGroupUpdate>,
}

Fields

The value returned by the most recent call to GetChangeToken.

The RuleGroupId of the RuleGroup that you want to update. RuleGroupId is returned by CreateRuleGroup and by ListRuleGroups.

An array of RuleGroupUpdate objects that you want to insert into or delete from a RuleGroup.

You can only insert REGULAR rules into a rule group.

ActivatedRule|OverrideAction applies only when updating or adding a RuleGroup to a WebACL. In this case you do not use ActivatedRule|Action. For all other update requests, ActivatedRule|Action is used instead of ActivatedRule|OverrideAction.

Trait Implementations

impl Default for UpdateRuleGroupRequest
[src]

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

impl Debug for UpdateRuleGroupRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateRuleGroupRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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