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

OAuth2CustomParameter

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

Custom parameter required for OAuth 2.0 authentication.

interface OAuth2CustomParameter {
connectorSuppliedValues?: string[] | null;
description?: string | null;
isRequired?: boolean | null;
isSensitiveField?: boolean | null;
key?: string | null;
label?: string | null;
type?: OAuth2CustomPropType | 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 custom parameter used for OAuth 2.0 authentication.

§
isRequired?: boolean | null
[src]

Indicates whether the custom parameter for OAuth 2.0 authentication is required.

§
isSensitiveField?: boolean | null
[src]

Indicates whether this authentication custom parameter is a sensitive field.

§
key?: string | null
[src]

The key of the custom parameter required for OAuth 2.0 authentication.

§
label?: string | null
[src]

The label of the custom parameter used for OAuth 2.0 authentication.

§

Indicates whether custom parameter is used with TokenUrl or AuthUrl.