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

FieldValidationConfiguration

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

Describes the validation configuration for a field.

interface FieldValidationConfiguration {
numValues?: number[] | null;
strValues?: string[] | null;
type: string;
validationMessage?: string | null;
}

§Properties

§
numValues?: number[] | null
[src]

The validation to perform on a number value.

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

The validation to perform on a string value.

§
type: string
[src]

The validation to perform on an object type.``

§
validationMessage?: string | null
[src]

The validation message to display.