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.*;
 ValueMappingProperty valueMappingProperty = ValueMappingProperty.builder()
         .value(FormInputValuePropertyProperty.builder()
                 .value("value")
                 .build())
         // the properties below are optional
         .displayValue(FormInputValuePropertyProperty.builder()
                 .value("value")
                 .build())
         .build();