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

Endpoint

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

This data type represents the information you need to connect to an Amazon RDS DB instance. This data type is used as a response element in the following actions:

  • CreateDBInstance
    
  • DescribeDBInstances
    
  • DeleteDBInstance
    

For the data structure that represents Amazon Aurora DB cluster endpoints, see DBClusterEndpoint.

interface Endpoint {
Address?: string | null;
HostedZoneId?: string | null;
Port?: number | null;
}

§Properties

§
Address?: string | null
[src]

Specifies the DNS address of the DB instance.

§
HostedZoneId?: string | null
[src]

Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.

§
Port?: number | null
[src]

Specifies the port that the database engine is listening on.