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

FieldTypeDetails

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

Contains details regarding the supported field type and the operators that can be applied for filtering.

interface FieldTypeDetails {
fieldLengthRange?: Range | null;
fieldType: string;
fieldValueRange?: Range | null;
filterOperators: Operator[];
supportedDateFormat?: string | null;
supportedValues?: string[] | null;
valueRegexPattern?: string | null;
}

§Properties

§
fieldLengthRange?: Range | null
[src]

This is the allowable length range for this field's value.

§
fieldType: string
[src]

The type of field, such as string, integer, date, and so on.

§
fieldValueRange?: Range | null
[src]

The range of values this field can hold.

§
filterOperators: Operator[]
[src]

The list of operators supported by a field.

§
supportedDateFormat?: string | null
[src]

The date format that the field supports.

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

The list of values that a field can contain. For example, a Boolean fieldType can have two values: "true" and "false".

§
valueRegexPattern?: string | null
[src]

The regular expression pattern for the field name.