Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

IpAddressRequest

import type { IpAddressRequest } from "https://aws-api.deno.dev/v0.4/services/route53resolver.ts?docs=full";

In a CreateResolverEndpoint request, the IP address that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints). IpAddressRequest also includes the ID of the subnet that contains the IP address.

interface IpAddressRequest {
Ip?: string | null;
SubnetId: string;
}

§Properties

§
Ip?: string | null
[src]

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

§
SubnetId: string
[src]

The ID of the subnet that contains the IP address.