interface FormBindingElementProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AmplifyUIBuilder.Mixins.CfnComponentPropsMixin.FormBindingElementProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsamplifyuibuilder/mixins#CfnComponentPropsMixin_FormBindingElementProperty |
Java | software.amazon.awscdk.mixins.preview.services.amplifyuibuilder.mixins.CfnComponentPropsMixin.FormBindingElementProperty |
Python | aws_cdk.mixins_preview.aws_amplifyuibuilder.mixins.CfnComponentPropsMixin.FormBindingElementProperty |
TypeScript | @aws-cdk/mixins-preview » aws_amplifyuibuilder » mixins » CfnComponentPropsMixin » 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 { mixins as amplifyuibuilder_mixins } from '@aws-cdk/mixins-preview/aws-amplifyuibuilder';
const formBindingElementProperty: amplifyuibuilder_mixins.CfnComponentPropsMixin.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
(optional)
The name of the component to retrieve a value from.
property?
Type:
string
(optional)
The property to retrieve a value from.

.NET
Go
Java
Python
TypeScript