/** *

Specifies the IP address type (IPV4 or IPV6) and the IP address range (in CIDR format) that web requests originate from.

*/ export interface _IPSetDescriptor { /** *

Specify IPV4 or IPV6.

*/ Type: "IPV4" | "IPV6" | string; /** *

Specify an IPv4 address by using CIDR notation. For example:

For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

Specify an IPv6 address by using CIDR notation. For example:

*/ Value: string; } export declare type _UnmarshalledIPSetDescriptor = _IPSetDescriptor;