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