import { _IPSetDescriptor, _UnmarshalledIPSetDescriptor } from "./_IPSetDescriptor"; /** *

Specifies the type of update to perform to an IPSet with UpdateIPSet.

*/ export interface _IPSetUpdate { /** *

Specifies whether to insert or delete an IP address with UpdateIPSet.

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

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

*/ IPSetDescriptor: _IPSetDescriptor; } export interface _UnmarshalledIPSetUpdate extends _IPSetUpdate { /** *

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

*/ IPSetDescriptor: _UnmarshalledIPSetDescriptor; }