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

AuthParameter

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

Information about required authentication parameters.

interface AuthParameter {
connectorSuppliedValues?: string[] | null;
description?: string | null;
isRequired?: boolean | null;
isSensitiveField?: boolean | null;
key?: string | null;
label?: string | null;
}

§Properties

§
connectorSuppliedValues?: string[] | null
[src]

Contains default values for this authentication parameter that are supplied by the connector.

§
description?: string | null
[src]

A description about the authentication parameter.

§
isRequired?: boolean | null
[src]

Indicates whether this authentication parameter is required.

§
isSensitiveField?: boolean | null
[src]

Indicates whether this authentication parameter is a sensitive field.

§
key?: string | null
[src]

The authentication key required to authenticate with the connector.

§
label?: string | null
[src]

Label used for authentication parameter.