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

ConnectorRuntimeSetting

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

Contains information about the connector runtime settings that are required for flow execution.

interface ConnectorRuntimeSetting {
connectorSuppliedValueOptions?: string[] | null;
dataType?: string | null;
description?: string | null;
isRequired?: boolean | null;
key?: string | null;
label?: string | null;
scope?: string | null;
}

§Properties

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

Contains default values for the connector runtime setting that are supplied by the connector.

§
dataType?: string | null
[src]

Data type of the connector runtime setting.

§
description?: string | null
[src]

A description about the connector runtime setting.

§
isRequired?: boolean | null
[src]

Indicates whether this connector runtime setting is required.

§
key?: string | null
[src]

Contains value information about the connector runtime setting.

§
label?: string | null
[src]

A label used for connector runtime setting.

§
scope?: string | null
[src]

Indicates the scope of the connector runtime setting.