interface FormBindingElementProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AmplifyUIBuilder.CfnComponent.FormBindingElementProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsamplifyuibuilder#CfnComponent_FormBindingElementProperty | 
|  Java | software.amazon.awscdk.services.amplifyuibuilder.CfnComponent.FormBindingElementProperty | 
|  Python | aws_cdk.aws_amplifyuibuilder.CfnComponent.FormBindingElementProperty | 
|  TypeScript | aws-cdk-lib»aws_amplifyuibuilder»CfnComponent»FormBindingElementProperty | 
Describes how to bind a component property to form data.
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-lib';
const formBindingElementProperty: amplifyuibuilder.CfnComponent.FormBindingElementProperty = {
  element: 'element',
  property: 'property',
};
Properties
| Name | Type | Description | 
|---|---|---|
| element | string | The name of the component to retrieve a value from. | 
| property | string | The property to retrieve a value from. | 
element
Type:
string
The name of the component to retrieve a value from.
property
Type:
string
The property to retrieve a value from.
