Interface SearchResultLocation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SearchResultLocation.Builder,SearchResultLocation>,SdkBuilder<SearchResultLocation.Builder,SearchResultLocation>,SdkPojo
- Enclosing class:
- SearchResultLocation
@Mutable @NotThreadSafe public static interface SearchResultLocation.Builder extends SdkPojo, CopyableBuilder<SearchResultLocation.Builder,SearchResultLocation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchResultLocation.Builderend(Integer end)The ending position in the content array where the cited content ends.SearchResultLocation.BuildersearchResultIndex(Integer searchResultIndex)The index of the search result content block where the cited content is found.SearchResultLocation.Builderstart(Integer start)The starting position in the content array where the cited content begins.-
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
-
searchResultIndex
SearchResultLocation.Builder searchResultIndex(Integer searchResultIndex)
The index of the search result content block where the cited content is found.
- Parameters:
searchResultIndex- The index of the search result content block where the cited content is found.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
start
SearchResultLocation.Builder start(Integer start)
The starting position in the content array where the cited content begins.
- Parameters:
start- The starting position in the content array where the cited content begins.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
end
SearchResultLocation.Builder end(Integer end)
The ending position in the content array where the cited content ends.
- Parameters:
end- The ending position in the content array where the cited content ends.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-