import { _Predicate, _UnmarshalledPredicate } from "./_Predicate"; /** *

Specifies a Predicate (such as an IPSet) and indicates whether you want to add it to a Rule or delete it from a Rule.

*/ export interface _RuleUpdate { /** *

Specify INSERT to add a Predicate to a Rule. Use DELETE to remove a Predicate from a Rule.

*/ Action: "INSERT" | "DELETE" | string; /** *

The ID of the Predicate (such as an IPSet) that you want to add to a Rule.

*/ Predicate: _Predicate; } export interface _UnmarshalledRuleUpdate extends _RuleUpdate { /** *

The ID of the Predicate (such as an IPSet) that you want to add to a Rule.

*/ Predicate: _UnmarshalledPredicate; }