interface FormInputValuePropertyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AmplifyUIBuilder.CfnFormPropsMixin.FormInputValuePropertyProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsamplifyuibuilder#CfnFormPropsMixin_FormInputValuePropertyProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.amplifyuibuilder.CfnFormPropsMixin.FormInputValuePropertyProperty |
Python | aws_cdk.cfn_property_mixins.aws_amplifyuibuilder.CfnFormPropsMixin.FormInputValuePropertyProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_amplifyuibuilder » CfnFormPropsMixin » 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/cfn-property-mixins';
declare const formInputValuePropertyProperty_: amplifyuibuilder.CfnFormPropsMixin.FormInputValuePropertyProperty;
const formInputValuePropertyProperty: amplifyuibuilder.CfnFormPropsMixin.FormInputValuePropertyProperty = {
bindingProperties: {
field: 'field',
property: 'property',
},
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