Interface CfnForm.FieldValidationConfigurationProperty

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

@Stability(Stable) public static interface CfnForm.FieldValidationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The FieldValidationConfiguration property specifies the validation configuration 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.*;
 FieldValidationConfigurationProperty fieldValidationConfigurationProperty = FieldValidationConfigurationProperty.builder()
         .type("type")
         // the properties below are optional
         .numValues(List.of(123))
         .strValues(List.of("strValues"))
         .validationMessage("validationMessage")
         .build();