UNPKG

@linkedmink/node-route53-dynamic-dns

Version:

Background process that updates AWS Route 53 DNS address records whenever the public IP of the hosting environment changes

11 lines (9 loc) 344 B
import type { DnsAddressRecord } from "./dns-record-events.mjs"; import type { IpAddresses } from "./public-ip-events.mjs"; export interface HealthCheckResponse { publicIpAddresses: IpAddresses | null; lastPublicIpDateTime: string | null; lastUpdateDateTime: string | null; dnsRecords: DnsAddressRecord[] | null; uptimeMs: number; }