Contains one or more IP addresses or blocks of IP addresses specified in Classless Inter-Domain Routing (CIDR) notation. AWS WAF supports IPv4 address ranges: /8 and any range between /16 through /32. AWS WAF supports IPv6 address ranges: /24, /32, /48, /56, /64, and /128.

interface IPSet {
    addresses: (string | IPAddressWithDescription)[];
    description?: string;
    ipAddressVersion: "IPV4" | "IPV6";
    name: string;
    tags?: CfnTag[];
}

Properties

addresses: (string | IPAddressWithDescription)[]

Defines an Array of Ip Address - IPv4 and IPv6 in CIDR notation, e.g. 123.4.3.0/32 or IpAddress with Description

description?: string
ipAddressVersion: "IPV4" | "IPV6"

Defines the IP address version of the set. Valid Values are IPV4 and IPV6.

name: string

@TJS-pattern ^[a-zA-Z0-9]+$

tags?: CfnTag[]