Interface CfnFormPropsMixin.ValueMappingProperty

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

@Stability(Stable) public static interface CfnFormPropsMixin.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.cfnpropertymixins.services.amplifyuibuilder.*;
 FormInputValuePropertyProperty formInputValuePropertyProperty_;
 ValueMappingProperty valueMappingProperty = ValueMappingProperty.builder()
         .displayValue(FormInputValuePropertyProperty.builder()
                 .bindingProperties(FormInputValuePropertyBindingPropertiesProperty.builder()
                         .field("field")
                         .property("property")
                         .build())
                 .concat(List.of(formInputValuePropertyProperty_))
                 .value("value")
                 .build())
         .value(FormInputValuePropertyProperty.builder()
                 .bindingProperties(FormInputValuePropertyBindingPropertiesProperty.builder()
                         .field("field")
                         .property("property")
                         .build())
                 .concat(List.of(formInputValuePropertyProperty_))
                 .value("value")
                 .build())
         .build();
 

See Also: