/** *

In an CreateResolverEndpoint request, a subnet and IP address that you want to use for DNS queries.

*/ export interface _IpAddressRequest { /** *

The subnet that contains the IP address.

*/ SubnetId: string; /** *

The IP address that you want to use for DNS queries.

*/ Ip?: string; } export declare type _UnmarshalledIpAddressRequest = _IpAddressRequest;