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

HttpDataSourceConfig

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

Describes an HTTP data source configuration.

interface HttpDataSourceConfig {
authorizationConfig?: AuthorizationConfig | null;
endpoint?: string | null;
}

§Properties

§
authorizationConfig?: AuthorizationConfig | null
[src]

The authorization configuration in case the HTTP endpoint requires authorization.

§
endpoint?: string | null
[src]

The HTTP URL endpoint. You can specify either the domain name or IP, and port combination, and the URL scheme must be HTTP or HTTPS. If you don't specify the port, AppSync uses the default port 80 for the HTTP endpoint and port 443 for HTTPS endpoints.