Interface StringAttributeConstraintsType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StringAttributeConstraintsType.Builder,StringAttributeConstraintsType>,SdkBuilder<StringAttributeConstraintsType.Builder,StringAttributeConstraintsType>,SdkPojo
- Enclosing class:
- StringAttributeConstraintsType
public static interface StringAttributeConstraintsType.Builder extends SdkPojo, CopyableBuilder<StringAttributeConstraintsType.Builder,StringAttributeConstraintsType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringAttributeConstraintsType.BuildermaxLength(String maxLength)The maximum length of a string attribute value.StringAttributeConstraintsType.BuilderminLength(String minLength)The minimum length of a string attribute value.-
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
-
minLength
StringAttributeConstraintsType.Builder minLength(String minLength)
The minimum length of a string attribute value.
- Parameters:
minLength- The minimum length of a string attribute value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxLength
StringAttributeConstraintsType.Builder maxLength(String maxLength)
The maximum length of a string attribute value. Must be a number less than or equal to
2^1023, represented as a string with a length of 131072 characters or fewer.- Parameters:
maxLength- The maximum length of a string attribute value. Must be a number less than or equal to2^1023, represented as a string with a length of 131072 characters or fewer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-