Interface RecordLength.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RecordLength.Builder,RecordLength>,SdkBuilder<RecordLength.Builder,RecordLength>,SdkPojo
- Enclosing class:
- RecordLength
public static interface RecordLength.Builder extends SdkPojo, CopyableBuilder<RecordLength.Builder,RecordLength>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RecordLength.Buildermax(Integer max)The maximum record length.RecordLength.Buildermin(Integer min)The minimum record length of a record.-
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
-
max
RecordLength.Builder max(Integer max)
The maximum record length. In case of fixed, both minimum and maximum are the same.
- Parameters:
max- The maximum record length. In case of fixed, both minimum and maximum are the same.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
min
RecordLength.Builder min(Integer min)
The minimum record length of a record.
- Parameters:
min- The minimum record length of a record.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-