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

IpAddressResponse

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

In the response to a GetResolverEndpoint request, information about the IP addresses that the Resolver endpoint uses for DNS queries.

interface IpAddressResponse {
CreationTime?: string | null;
Ip?: string | null;
IpId?: string | null;
ModificationTime?: string | null;
Status?: IpAddressStatus | null;
StatusMessage?: string | null;
SubnetId?: string | null;
}

§Properties

§
CreationTime?: string | null
[src]

The date and time that the IP address was created, in Unix time format and Coordinated Universal Time (UTC).

§
Ip?: string | null
[src]

One IP address that the Resolver endpoint uses for DNS queries.

§
IpId?: string | null
[src]

The ID of one IP address.

§
ModificationTime?: string | null
[src]

The date and time that the IP address was last modified, in Unix time format and Coordinated Universal Time (UTC).

§
Status?: IpAddressStatus | null
[src]

A status code that gives the current status of the request.

§
StatusMessage?: string | null
[src]

A message that provides additional information about the status of the request.

§
SubnetId?: string | null
[src]

The ID of one subnet.