/** *
Describes an endpoint for a database.
*/ export interface _RelationalDatabaseEndpoint { /** *Specifies the port that the database is listening on.
*/ port?: number; /** *Specifies the DNS address of the database.
*/ address?: string; } export declare type _UnmarshalledRelationalDatabaseEndpoint = _RelationalDatabaseEndpoint;