Interface Range.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Range.Builder,Range>,SdkBuilder<Range.Builder,Range>,SdkPojo
- Enclosing class:
- Range
public static interface Range.Builder extends SdkPojo, CopyableBuilder<Range.Builder,Range>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Range.Builderend(Long end)The number of lines from the beginning of the file to the end of the sensitive data.Range.Builderstart(Long start)The number of lines from the beginning of the file to the beginning of the sensitive data.Range.BuilderstartColumn(Long startColumn)The number of characters, with spaces and starting from 1, from the beginning of the first line that contains the sensitive data (start) to the beginning of the sensitive data.-
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
-
end
Range.Builder end(Long end)
The number of lines from the beginning of the file to the end of the sensitive data.
- Parameters:
end- The number of lines from the beginning of the file to the end of the sensitive data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
start
Range.Builder start(Long start)
The number of lines from the beginning of the file to the beginning of the sensitive data.
- Parameters:
start- The number of lines from the beginning of the file to the beginning of the sensitive data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startColumn
Range.Builder startColumn(Long startColumn)
The number of characters, with spaces and starting from 1, from the beginning of the first line that contains the sensitive data (start) to the beginning of the sensitive data.
- Parameters:
startColumn- The number of characters, with spaces and starting from 1, from the beginning of the first line that contains the sensitive data (start) to the beginning of the sensitive data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-