/** *

In an UpdateResolverEndpoint request, information about an IP address to update.

*/ export interface _IpAddressUpdate { /** *

Only when removing an IP address from a resolver endpoint: The ID of the IP address that you want to remove. To get this ID, use GetResolverEndpoint.

*/ IpId?: string; /** *

The ID of the subnet that includes the IP address that you want to update. To get this ID, use GetResolverEndpoint.

*/ SubnetId?: string; /** *

The new IP address.

*/ Ip?: string; } export declare type _UnmarshalledIpAddressUpdate = _IpAddressUpdate;