interface FormInputValuePropertyBindingPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AmplifyUIBuilder.CfnFormPropsMixin.FormInputValuePropertyBindingPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsamplifyuibuilder#CfnFormPropsMixin_FormInputValuePropertyBindingPropertiesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.amplifyuibuilder.CfnFormPropsMixin.FormInputValuePropertyBindingPropertiesProperty |
Python | aws_cdk.cfn_property_mixins.aws_amplifyuibuilder.CfnFormPropsMixin.FormInputValuePropertyBindingPropertiesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_amplifyuibuilder » 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 { aws_amplifyuibuilder as amplifyuibuilder } from '@aws-cdk/cfn-property-mixins';
const formInputValuePropertyBindingPropertiesProperty: amplifyuibuilder.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