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

ComponentDataConfiguration

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

Describes the configuration for binding a component's properties to data.

interface ComponentDataConfiguration {
identifiers?: string[] | null;
model: string;
predicate?: Predicate | null;
sort?: SortProperty[] | null;
}

§Properties

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

A list of IDs to use to bind data to a component. Use this property to bind specifically chosen data, rather than data retrieved from a query.

§
model: string
[src]

The name of the data model to use to bind data to a component.

§
predicate?: Predicate | null
[src]

Represents the conditional logic to use when binding data to a component. Use this property to retrieve only a subset of the data in a collection.

§
sort?: SortProperty[] | null
[src]

Describes how to sort the component's properties.