interface FormInputBindingPropertiesValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AmplifyUIBuilder.CfnFormPropsMixin.FormInputBindingPropertiesValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsamplifyuibuilder#CfnFormPropsMixin_FormInputBindingPropertiesValueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.amplifyuibuilder.CfnFormPropsMixin.FormInputBindingPropertiesValueProperty |
Python | aws_cdk.cfn_property_mixins.aws_amplifyuibuilder.CfnFormPropsMixin.FormInputBindingPropertiesValueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_amplifyuibuilder » CfnFormPropsMixin » FormInputBindingPropertiesValueProperty |
Represents the data binding configuration for a form's input fields at runtime.You can use FormInputBindingPropertiesValue to add exposed properties to a form to allow different values to be entered when a form is reused in different places in an app.
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 formInputBindingPropertiesValueProperty: amplifyuibuilder.CfnFormPropsMixin.FormInputBindingPropertiesValueProperty = {
bindingProperties: {
model: 'model',
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| binding | IResolvable | Form | Describes the properties to customize with data at runtime. |
| type? | string | The property type. |
bindingProperties?
Type:
IResolvable | Form
(optional)
Describes the properties to customize with data at runtime.
type?
Type:
string
(optional)
The property type.

.NET
Go
Java
Python
TypeScript