Interface CfnForm.ValueMappingProperty

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

@Stability(Stable) public static interface CfnForm.ValueMappingProperty extends software.amazon.jsii.JsiiSerializable
The ValueMapping property specifies the association between a complex object and a display value.

Use ValueMapping to store how to represent complex objects when they are displayed.

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_;
 ValueMappingProperty valueMappingProperty = 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();
 

See Also: