Class 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.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnFormPropsMixin.FormInputBindingPropertiesValueProperty : CfnFormPropsMixin.IFormInputBindingPropertiesValueProperty
Syntax (vb)
Public Class CfnFormPropsMixin.FormInputBindingPropertiesValueProperty Implements CfnFormPropsMixin.IFormInputBindingPropertiesValueProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AmplifyUIBuilder;
var formInputBindingPropertiesValueProperty = new FormInputBindingPropertiesValueProperty {
BindingProperties = new FormInputBindingPropertiesValuePropertiesProperty {
Model = "model"
},
Type = "type"
};
Synopsis
Constructors
| FormInputBindingPropertiesValueProperty() | Represents the data binding configuration for a form's input fields at runtime.You can use |
Properties
| BindingProperties | Describes the properties to customize with data at runtime. |
| Type | The property type. |
Constructors
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.
public FormInputBindingPropertiesValueProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AmplifyUIBuilder;
var formInputBindingPropertiesValueProperty = new FormInputBindingPropertiesValueProperty {
BindingProperties = new FormInputBindingPropertiesValuePropertiesProperty {
Model = "model"
},
Type = "type"
};
Properties
BindingProperties
Describes the properties to customize with data at runtime.
public object? BindingProperties { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnFormPropsMixin.IFormInputBindingPropertiesValuePropertiesProperty
Type
The property type.
public string? Type { get; set; }