Interface CfnFormPropsMixin.FormInputBindingPropertiesValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFormPropsMixin.FormInputBindingPropertiesValueProperty.Jsii$Proxy
- Enclosing class:
CfnFormPropsMixin
@Stability(Stable)
public static interface CfnFormPropsMixin.FormInputBindingPropertiesValueProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.amplifyuibuilder.*;
FormInputBindingPropertiesValueProperty formInputBindingPropertiesValueProperty = FormInputBindingPropertiesValueProperty.builder()
.bindingProperties(FormInputBindingPropertiesValuePropertiesProperty.builder()
.model("model")
.build())
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnFormPropsMixin.FormInputBindingPropertiesValueProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBindingProperties
Describes the properties to customize with data at runtime.Returns union: either
IResolvableorCfnFormPropsMixin.FormInputBindingPropertiesValuePropertiesProperty- See Also:
-
getType
The property type.- See Also:
-
builder
@Stability(Stable) static CfnFormPropsMixin.FormInputBindingPropertiesValueProperty.Builder builder()
-