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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataTableAttribute.ValidationPropertystatic final classAn implementation forCfnDataTableAttribute.ValidationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnumValue
Returns union: eitherIResolvableorCfnDataTableAttribute.EnumProperty- See Also:
-
getExclusiveMaximum
- See Also:
-
getExclusiveMinimum
- See Also:
-
getMaximum
- See Also:
-
getMaxLength
- See Also:
-
getMaxValues
- See Also:
-
getMinimum
- See Also:
-
getMinLength
- See Also:
-
getMinValues
- See Also:
-
getMultipleOf
- See Also:
-
builder
-