Interface CfnForm.ValueMappingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnForm.ValueMappingsProperty.Jsii$Proxy
- Enclosing class:
- CfnForm
@Stability(Stable)
public static interface CfnForm.ValueMappingsProperty
extends software.amazon.jsii.JsiiSerializable
The
ValueMappings property specifies the data binding configuration for a value map.
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.*;
ValueMappingsProperty valueMappingsProperty = ValueMappingsProperty.builder()
.values(List.of(ValueMappingProperty.builder()
.value(FormInputValuePropertyProperty.builder()
.value("value")
.build())
// the properties below are optional
.displayValue(FormInputValuePropertyProperty.builder()
.value("value")
.build())
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnForm.ValueMappingsPropertystatic final classAn implementation forCfnForm.ValueMappingsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getValues
The value and display value pairs. -
builder
-