Interface SelectValidation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SelectValidation.Builder,SelectValidation>,SdkBuilder<SelectValidation.Builder,SelectValidation>,SdkPojo
- Enclosing class:
- SelectValidation
public static interface SelectValidation.Builder extends SdkPojo, CopyableBuilder<SelectValidation.Builder,SelectValidation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SelectValidation.BuildermaxChoices(Integer maxChoices)The maximum number of choices for the select.SelectValidation.BuilderminChoices(Integer minChoices)The minimum number of choices for the select.SelectValidation.Builderoptions(String... options)An array of strings for the possible selection options.SelectValidation.Builderoptions(Collection<String> options)An array of strings for the possible selection options.-
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
-
minChoices
SelectValidation.Builder minChoices(Integer minChoices)
The minimum number of choices for the select.
- Parameters:
minChoices- The minimum number of choices for the select.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxChoices
SelectValidation.Builder maxChoices(Integer maxChoices)
The maximum number of choices for the select.
- Parameters:
maxChoices- The maximum number of choices for the select.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
options
SelectValidation.Builder options(Collection<String> options)
An array of strings for the possible selection options.
- Parameters:
options- An array of strings for the possible selection options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
options
SelectValidation.Builder options(String... options)
An array of strings for the possible selection options.
- Parameters:
options- An array of strings for the possible selection options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-