Interface FieldValidationConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FieldValidationConfiguration.Builder,FieldValidationConfiguration>,SdkBuilder<FieldValidationConfiguration.Builder,FieldValidationConfiguration>,SdkPojo
- Enclosing class:
- FieldValidationConfiguration
public static interface FieldValidationConfiguration.Builder extends SdkPojo, CopyableBuilder<FieldValidationConfiguration.Builder,FieldValidationConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FieldValidationConfiguration.BuildernumValues(Integer... numValues)The validation to perform on a number value.FieldValidationConfiguration.BuildernumValues(Collection<Integer> numValues)The validation to perform on a number value.FieldValidationConfiguration.BuilderstrValues(String... strValues)The validation to perform on a string value.FieldValidationConfiguration.BuilderstrValues(Collection<String> strValues)The validation to perform on a string value.FieldValidationConfiguration.Buildertype(String type)The validation to perform on an object type.FieldValidationConfiguration.BuildervalidationMessage(String validationMessage)The validation message to display.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
type
FieldValidationConfiguration.Builder type(String type)
The validation to perform on an object type.
- Parameters:
type- The validation to perform on an object type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
strValues
FieldValidationConfiguration.Builder strValues(Collection<String> strValues)
The validation to perform on a string value.
- Parameters:
strValues- The validation to perform on a string value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
strValues
FieldValidationConfiguration.Builder strValues(String... strValues)
The validation to perform on a string value.
- Parameters:
strValues- The validation to perform on a string value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numValues
FieldValidationConfiguration.Builder numValues(Collection<Integer> numValues)
The validation to perform on a number value.
- Parameters:
numValues- The validation to perform on a number value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numValues
FieldValidationConfiguration.Builder numValues(Integer... numValues)
The validation to perform on a number value.
- Parameters:
numValues- The validation to perform on a number value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validationMessage
FieldValidationConfiguration.Builder validationMessage(String validationMessage)
The validation message to display.
- Parameters:
validationMessage- The validation message to display.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-