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

ComponentBindingPropertiesValueProperties

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

Represents the data binding configuration for a specific property using data stored in Amazon Web Services. For Amazon Web Services connected properties, you can bind a property to data stored in an Amazon S3 bucket, an Amplify DataStore model or an authenticated user attribute.

interface ComponentBindingPropertiesValueProperties {
bucket?: string | null;
defaultValue?: string | null;
field?: string | null;
key?: string | null;
model?: string | null;
predicates?: Predicate[] | null;
userAttribute?: string | null;
}

§Properties

§
bucket?: string | null
[src]

An Amazon S3 bucket.

§
defaultValue?: string | null
[src]

The default value to assign to the property.

§
field?: string | null
[src]

The field to bind the data to.

§
key?: string | null
[src]

The storage key for an Amazon S3 bucket.

§
model?: string | null
[src]

An Amplify DataStore model.

§
predicates?: Predicate[] | null
[src]

A list of predicates for binding a component's properties to data.

§
userAttribute?: string | null
[src]

An authenticated user attribute.