interface FormInputValuePropertyBindingPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AmplifyUIBuilder.Mixins.CfnFormPropsMixin.FormInputValuePropertyBindingPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsamplifyuibuilder/mixins#CfnFormPropsMixin_FormInputValuePropertyBindingPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.amplifyuibuilder.mixins.CfnFormPropsMixin.FormInputValuePropertyBindingPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_amplifyuibuilder.mixins.CfnFormPropsMixin.FormInputValuePropertyBindingPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_amplifyuibuilder » mixins » CfnFormPropsMixin » FormInputValuePropertyBindingPropertiesProperty |
Associates a form property to a binding property.
This enables exposed properties on the top level form to propagate data to the form's property values.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as amplifyuibuilder_mixins } from '@aws-cdk/mixins-preview/aws-amplifyuibuilder';
const formInputValuePropertyBindingPropertiesProperty: amplifyuibuilder_mixins.CfnFormPropsMixin.FormInputValuePropertyBindingPropertiesProperty = {
field: 'field',
property: 'property',
};
Properties
| Name | Type | Description |
|---|---|---|
| field? | string | The data field to bind the property to. |
| property? | string | The form property to bind to the data field. |
field?
Type:
string
(optional)
The data field to bind the property to.
property?
Type:
string
(optional)
The form property to bind to the data field.

.NET
Go
Java
Python
TypeScript