Interface X12ElementLengthValidationRule.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<X12ElementLengthValidationRule.Builder,
,X12ElementLengthValidationRule> SdkBuilder<X12ElementLengthValidationRule.Builder,
,X12ElementLengthValidationRule> SdkPojo
- Enclosing class:
X12ElementLengthValidationRule
@Mutable
@NotThreadSafe
public static interface X12ElementLengthValidationRule.Builder
extends SdkPojo, CopyableBuilder<X12ElementLengthValidationRule.Builder,X12ElementLengthValidationRule>
-
Method Summary
Modifier and TypeMethodDescriptionSpecifies the four-digit element ID to which the length constraints will be applied.Specifies the maximum allowed length for the identified element.Specifies the minimum required length for the identified element.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 Details
-
elementId
Specifies the four-digit element ID to which the length constraints will be applied. This identifies which X12 element will have its length requirements modified.
- Parameters:
elementId
- Specifies the four-digit element ID to which the length constraints will be applied. This identifies which X12 element will have its length requirements modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxLength
Specifies the maximum allowed length for the identified element. This value must be between 1 and 200 characters and defines the upper limit for the element's content length.
- Parameters:
maxLength
- Specifies the maximum allowed length for the identified element. This value must be between 1 and 200 characters and defines the upper limit for the element's content length.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minLength
Specifies the minimum required length for the identified element. This value must be between 1 and 200 characters and defines the lower limit for the element's content length.
- Parameters:
minLength
- Specifies the minimum required length for the identified element. This value must be between 1 and 200 characters and defines the lower limit for the element's content length.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-