Interface CfnDataTableAttribute.ValidationProperty

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

@Stability(Stable) public static interface CfnDataTableAttribute.ValidationProperty extends software.amazon.jsii.JsiiSerializable
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.connect.*;
 ValidationProperty validationProperty = ValidationProperty.builder()
         .enum(EnumProperty.builder()
                 .strict(false)
                 .values(List.of("values"))
                 .build())
         .exclusiveMaximum(123)
         .exclusiveMinimum(123)
         .maximum(123)
         .maxLength(123)
         .maxValues(123)
         .minimum(123)
         .minLength(123)
         .minValues(123)
         .multipleOf(123)
         .build();
 

See Also: