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

TargetAddress

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

In a CreateResolverRule request, an array of the IPs that you want to forward DNS queries to.

interface TargetAddress {
Ip: string;
Port?: number | null;
}

§Properties

§
Ip: string
[src]

One IP address that you want to forward DNS queries to. You can specify only IPv4 addresses.

§
Port?: number | null
[src]

The port at Ip that you want to forward DNS queries to.