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

AwsWafRateBasedRuleMatchPredicate

import type { AwsWafRateBasedRuleMatchPredicate } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

A match predicate. A predicate might look for characteristics such as specific IP addresses, geographic locations, or sizes.

interface AwsWafRateBasedRuleMatchPredicate {
DataId?: string | null;
Negated?: boolean | null;
Type?: string | null;
}

§Properties

§
DataId?: string | null
[src]

The unique identifier for the predicate.

§
Negated?: boolean | null
[src]

If set to true, then the rule actions are performed on requests that match the predicate settings.

If set to false, then the rule actions are performed on all requests except those that match the predicate settings.

§
Type?: string | null
[src]

The type of predicate. Valid values are as follows:

  • ByteMatch
    
  • GeoMatch
    
  • IPMatch
    
  • RegexMatch
    
  • SizeConstraint
    
  • SqlInjectionMatch
    
  • XssMatch