Interface CfnForm.FieldInputConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnForm.FieldInputConfigProperty.Jsii$Proxy
Enclosing class:
CfnForm

@Stability(Stable) public static interface CfnForm.FieldInputConfigProperty extends software.amazon.jsii.JsiiSerializable
The FieldInputConfig property specifies the configuration for the default input values to display for a field.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.amplifyuibuilder.*;
 FormInputValuePropertyProperty formInputValuePropertyProperty_;
 FieldInputConfigProperty fieldInputConfigProperty = FieldInputConfigProperty.builder()
         .type("type")
         // the properties below are optional
         .defaultChecked(false)
         .defaultCountryCode("defaultCountryCode")
         .defaultValue("defaultValue")
         .descriptiveText("descriptiveText")
         .fileUploaderConfig(FileUploaderFieldConfigProperty.builder()
                 .acceptedFileTypes(List.of("acceptedFileTypes"))
                 .accessLevel("accessLevel")
                 // the properties below are optional
                 .isResumable(false)
                 .maxFileCount(123)
                 .maxSize(123)
                 .showThumbnails(false)
                 .build())
         .isArray(false)
         .maxValue(123)
         .minValue(123)
         .name("name")
         .placeholder("placeholder")
         .readOnly(false)
         .required(false)
         .step(123)
         .value("value")
         .valueMappings(ValueMappingsProperty.builder()
                 .values(List.of(ValueMappingProperty.builder()
                         .value(FormInputValuePropertyProperty.builder()
                                 .bindingProperties(FormInputValuePropertyBindingPropertiesProperty.builder()
                                         .property("property")
                                         // the properties below are optional
                                         .field("field")
                                         .build())
                                 .concat(List.of(formInputValuePropertyProperty_))
                                 .value("value")
                                 .build())
                         // the properties below are optional
                         .displayValue(FormInputValuePropertyProperty.builder()
                                 .bindingProperties(FormInputValuePropertyBindingPropertiesProperty.builder()
                                         .property("property")
                                         // the properties below are optional
                                         .field("field")
                                         .build())
                                 .concat(List.of(formInputValuePropertyProperty_))
                                 .value("value")
                                 .build())
                         .build()))
                 // the properties below are optional
                 .bindingProperties(Map.of(
                         "bindingPropertiesKey", FormInputBindingPropertiesValueProperty.builder()
                                 .bindingProperties(FormInputBindingPropertiesValuePropertiesProperty.builder()
                                         .model("model")
                                         .build())
                                 .type("type")
                                 .build()))
                 .build())
         .build();
 

See Also: