Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateRuleGroupRequest

import type { UpdateRuleGroupRequest } from "https://aws-api.deno.dev/v0.4/services/waf.ts?docs=full";
interface UpdateRuleGroupRequest {
ChangeToken: string;
RuleGroupId: string;
Updates: RuleGroupUpdate[];
}

§Properties

§
ChangeToken: string
[src]

The value returned by the most recent call to "GetChangeToken".

§
RuleGroupId: string
[src]

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.