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

FieldConfig

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

Describes the configuration information for a field in a table.

interface FieldConfig {
excluded?: boolean | null;
inputType?: FieldInputConfig | null;
label?: string | null;
position?: FieldPosition | null;
validations?: FieldValidationConfiguration[] | null;
}

§Properties

§
excluded?: boolean | null
[src]

Specifies whether to hide a field.

§
inputType?: FieldInputConfig | null
[src]

Describes the configuration for the default input value to display for a field.

§
label?: string | null
[src]

The label for the field.

§
position?: FieldPosition | null
[src]

Specifies the field position.

§
validations?: FieldValidationConfiguration[] | null
[src]

The validations to perform on the value in the field.