Interface BatchListIndex.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchListIndex.Builder,BatchListIndex>,SdkBuilder<BatchListIndex.Builder,BatchListIndex>,SdkPojo
- Enclosing class:
- BatchListIndex
public static interface BatchListIndex.Builder extends SdkPojo, CopyableBuilder<BatchListIndex.Builder,BatchListIndex>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default BatchListIndex.BuilderindexReference(Consumer<ObjectReference.Builder> indexReference)The reference to the index to list.BatchListIndex.BuilderindexReference(ObjectReference indexReference)The reference to the index to list.BatchListIndex.BuildermaxResults(Integer maxResults)The maximum number of results to retrieve.BatchListIndex.BuildernextToken(String nextToken)The pagination token.BatchListIndex.BuilderrangesOnIndexedValues(Collection<ObjectAttributeRange> rangesOnIndexedValues)Specifies the ranges of indexed values that you want to query.BatchListIndex.BuilderrangesOnIndexedValues(Consumer<ObjectAttributeRange.Builder>... rangesOnIndexedValues)Specifies the ranges of indexed values that you want to query.BatchListIndex.BuilderrangesOnIndexedValues(ObjectAttributeRange... rangesOnIndexedValues)Specifies the ranges of indexed values that you want to query.-
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
-
rangesOnIndexedValues
BatchListIndex.Builder rangesOnIndexedValues(Collection<ObjectAttributeRange> rangesOnIndexedValues)
Specifies the ranges of indexed values that you want to query.
- Parameters:
rangesOnIndexedValues- Specifies the ranges of indexed values that you want to query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rangesOnIndexedValues
BatchListIndex.Builder rangesOnIndexedValues(ObjectAttributeRange... rangesOnIndexedValues)
Specifies the ranges of indexed values that you want to query.
- Parameters:
rangesOnIndexedValues- Specifies the ranges of indexed values that you want to query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rangesOnIndexedValues
BatchListIndex.Builder rangesOnIndexedValues(Consumer<ObjectAttributeRange.Builder>... rangesOnIndexedValues)
Specifies the ranges of indexed values that you want to query.
This is a convenience method that creates an instance of theObjectAttributeRange.Builderavoiding the need to create one manually viaObjectAttributeRange.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#rangesOnIndexedValues(List.) - Parameters:
rangesOnIndexedValues- a consumer that will call methods onObjectAttributeRange.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#rangesOnIndexedValues(java.util.Collection)
-
indexReference
BatchListIndex.Builder indexReference(ObjectReference indexReference)
The reference to the index to list.
- Parameters:
indexReference- The reference to the index to list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indexReference
default BatchListIndex.Builder indexReference(Consumer<ObjectReference.Builder> indexReference)
The reference to the index to list.
This is a convenience method that creates an instance of theObjectReference.Builderavoiding the need to create one manually viaObjectReference.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toindexReference(ObjectReference).- Parameters:
indexReference- a consumer that will call methods onObjectReference.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
indexReference(ObjectReference)
-
maxResults
BatchListIndex.Builder maxResults(Integer maxResults)
The maximum number of results to retrieve.
- Parameters:
maxResults- The maximum number of results to retrieve.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
BatchListIndex.Builder nextToken(String nextToken)
The pagination token.
- Parameters:
nextToken- The pagination token.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-