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

ConnectorDetail

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

Information about the registered connector.

interface ConnectorDetail {
applicationType?: string | null;
connectorDescription?: string | null;
connectorLabel?: string | null;
connectorModes?: string[] | null;
connectorName?: string | null;
connectorOwner?: string | null;
connectorProvisioningType?: ConnectorProvisioningType | null;
connectorType?: ConnectorType | null;
connectorVersion?: string | null;
registeredAt?: Date | number | null;
registeredBy?: string | null;
}

§Properties

§
applicationType?: string | null
[src]

The application type of the connector.

§
connectorDescription?: string | null
[src]

A description about the registered connector.

§
connectorLabel?: string | null
[src]

A label used for the connector.

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

The connection mode that the connector supports.

§
connectorName?: string | null
[src]

The name of the connector.

§
connectorOwner?: string | null
[src]

The owner of the connector.

§
connectorProvisioningType?: ConnectorProvisioningType | null
[src]

The provisioning type that the connector uses.

§
connectorType?: ConnectorType | null
[src]

The connector type.

§
connectorVersion?: string | null
[src]

The connector version.

§
registeredAt?: Date | number | null
[src]

The time at which the connector was registered.

§
registeredBy?: string | null
[src]

The user who registered the connector.