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

ConnectorEntityField

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

Describes the data model of a connector field. For example, for an account entity, the fields would be account name, account ID, and so on.

interface ConnectorEntityField {
description?: string | null;
destinationProperties?: DestinationFieldProperties | null;
identifier: string;
label?: string | null;
sourceProperties?: SourceFieldProperties | null;
supportedFieldTypeDetails?: SupportedFieldTypeDetails | null;
}

§Properties

§
description?: string | null
[src]

A description of the connector entity field.

§
destinationProperties?: DestinationFieldProperties | null
[src]

The properties applied to a field when the connector is being used as a destination.

§
identifier: string
[src]

The unique identifier of the connector field.

§
label?: string | null
[src]

The label applied to a connector entity field.

§
sourceProperties?: SourceFieldProperties | null
[src]

The properties that can be applied to a field when the connector is being used as a source.

§
supportedFieldTypeDetails?: SupportedFieldTypeDetails | null
[src]

Contains details regarding the supported FieldType, including the corresponding filterOperators and supportedValues.