💾 Archived View for gmi.noulin.net › gitRepositories › git-off › file › src › node_modules › aws-sdk… captured on 2023-01-29 at 11:57:01. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
endpoint.d.ts (575B)
1 export class Endpoint { 2 /** 3 * Constructs a new endpoint given an endpoint URL. 4 */ 5 constructor(url: string); 6 7 /** 8 * The host portion of the endpoint including the port, e.g., example.com:80. 9 */ 10 host: string; 11 /** 12 * The host portion of the endpoint, e.g., example.com. 13 */ 14 hostname: string; 15 /** 16 * The full URL of the endpoint. 17 */ 18 href: string; 19 /** 20 * The port of the endpoint. 21 */ 22 port: number; 23 /** 24 * The protocol (http or https) of the endpoint URL. 25 */ 26 protocol: string; 27 ```