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