interface FormInputValuePropertyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AmplifyUIBuilder.CfnForm.FormInputValuePropertyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsamplifyuibuilder#CfnForm_FormInputValuePropertyProperty |
Java | software.amazon.awscdk.services.amplifyuibuilder.CfnForm.FormInputValuePropertyProperty |
Python | aws_cdk.aws_amplifyuibuilder.CfnForm.FormInputValuePropertyProperty |
TypeScript | aws-cdk-lib » aws_amplifyuibuilder » CfnForm » FormInputValuePropertyProperty |
The FormInputValueProperty property specifies the configuration for an input field on a form.
Use FormInputValueProperty to specify the values to render or bind by default.
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';
declare const formInputValuePropertyProperty_: amplifyuibuilder.CfnForm.FormInputValuePropertyProperty;
const formInputValuePropertyProperty: amplifyuibuilder.CfnForm.FormInputValuePropertyProperty = {
bindingProperties: {
property: 'property',
// the properties below are optional
field: 'field',
},
concat: [formInputValuePropertyProperty_],
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| binding | IResolvable | Form | The information to bind fields to data at runtime. |
| concat? | IResolvable | (IResolvable | Form)[] | A list of form properties to concatenate to create the value to assign to this field property. |
| value? | string | The value to assign to the input field. |
bindingProperties?
Type:
IResolvable | Form
(optional)
The information to bind fields to data at runtime.
concat?
Type:
IResolvable | (IResolvable | Form)[]
(optional)
A list of form properties to concatenate to create the value to assign to this field property.
value?
Type:
string
(optional)
The value to assign to the input field.

.NET
Go
Java
Python
TypeScript