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

BasicAuthenticationConfiguration

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

Provides the configuration information to connect to websites that require basic user authentication.

interface BasicAuthenticationConfiguration {
Credentials: string;
Host: string;
Port: number;
}

§Properties

§
Credentials: string
[src]

Your secret ARN, which you can create in Secrets Manager

You use a secret if basic authentication credentials are required to connect to a website. The secret stores your credentials of user name and password.

§
Host: string
[src]

The name of the website host you want to connect to using authentication credentials.

For example, the host name of https://a.example.com/page1.html is "a.example.com".

§
Port: number
[src]

The port number of the website host you want to connect to using authentication credentials.

For example, the port for https://a.example.com/page1.html is 443, the standard port for HTTPS.