interface FormInputBindingPropertiesValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AmplifyUIBuilder.Mixins.CfnFormPropsMixin.FormInputBindingPropertiesValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsamplifyuibuilder/mixins#CfnFormPropsMixin_FormInputBindingPropertiesValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.amplifyuibuilder.mixins.CfnFormPropsMixin.FormInputBindingPropertiesValueProperty |
Python | aws_cdk.mixins_preview.aws_amplifyuibuilder.mixins.CfnFormPropsMixin.FormInputBindingPropertiesValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_amplifyuibuilder » mixins » 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 { mixins as amplifyuibuilder_mixins } from '@aws-cdk/mixins-preview/aws-amplifyuibuilder';
const formInputBindingPropertiesValueProperty: amplifyuibuilder_mixins.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