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

UpdateFormData

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

Updates and saves all of the information about a form, based on form ID.

interface UpdateFormData {
cta?: FormCTA | null;
dataType?: FormDataTypeConfig | null;
fields?: {
[key: string]: FieldConfig | null | undefined;
}
| null;
formActionType?: FormActionType | null;
name?: string | null;
schemaVersion?: string | null;
sectionalElements?: {
[key: string]: SectionalElement | null | undefined;
}
| null;
style?: FormStyle | null;
}

§Properties

§
cta?: FormCTA | null
[src]

The FormCTA object that stores the call to action configuration for the form.

§
dataType?: FormDataTypeConfig | null
[src]

The type of data source to use to create the form.

§
fields?: {
[key: string]: FieldConfig | null | undefined;
}
| null
[src]

The configuration information for the form's fields.

§
formActionType?: FormActionType | null
[src]

Specifies whether to perform a create or update action on the form.

§
name?: string | null
[src]

The name of the form.

§
schemaVersion?: string | null
[src]

The schema version of the form.

§
sectionalElements?: {
[key: string]: SectionalElement | null | undefined;
}
| null
[src]

The configuration information for the visual helper elements for the form. These elements are not associated with any data.

§
style?: FormStyle | null
[src]

The configuration for the form's style.