Interface CfnFormPropsMixin.FieldValidationConfigurationProperty

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

@Stability(Stable) public static interface CfnFormPropsMixin.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.cfnpropertymixins.services.amplifyuibuilder.*;
 FieldValidationConfigurationProperty fieldValidationConfigurationProperty = FieldValidationConfigurationProperty.builder()
         .numValues(List.of(123))
         .strValues(List.of("strValues"))
         .type("type")
         .validationMessage("validationMessage")
         .build();
 

See Also: