Interface OptionRestrictionRegex.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OptionRestrictionRegex.Builder,OptionRestrictionRegex>,SdkBuilder<OptionRestrictionRegex.Builder,OptionRestrictionRegex>,SdkPojo
- Enclosing class:
- OptionRestrictionRegex
public static interface OptionRestrictionRegex.Builder extends SdkPojo, CopyableBuilder<OptionRestrictionRegex.Builder,OptionRestrictionRegex>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OptionRestrictionRegex.Builderlabel(String label)A unique name representing this regular expression.OptionRestrictionRegex.Builderpattern(String pattern)The regular expression pattern that a string configuration option value with this restriction must match.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
pattern
OptionRestrictionRegex.Builder pattern(String pattern)
The regular expression pattern that a string configuration option value with this restriction must match.
- Parameters:
pattern- The regular expression pattern that a string configuration option value with this restriction must match.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
label
OptionRestrictionRegex.Builder label(String label)
A unique name representing this regular expression.
- Parameters:
label- A unique name representing this regular expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-