Interface BatchListAttachedIndices.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchListAttachedIndices.Builder,BatchListAttachedIndices>,SdkBuilder<BatchListAttachedIndices.Builder,BatchListAttachedIndices>,SdkPojo
- Enclosing class:
- BatchListAttachedIndices
public static interface BatchListAttachedIndices.Builder extends SdkPojo, CopyableBuilder<BatchListAttachedIndices.Builder,BatchListAttachedIndices>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BatchListAttachedIndices.BuildermaxResults(Integer maxResults)The maximum number of results to retrieve.BatchListAttachedIndices.BuildernextToken(String nextToken)The pagination token.default BatchListAttachedIndices.BuildertargetReference(Consumer<ObjectReference.Builder> targetReference)A reference to the object that has indices attached.BatchListAttachedIndices.BuildertargetReference(ObjectReference targetReference)A reference to the object that has indices attached.-
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
-
targetReference
BatchListAttachedIndices.Builder targetReference(ObjectReference targetReference)
A reference to the object that has indices attached.
- Parameters:
targetReference- A reference to the object that has indices attached.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetReference
default BatchListAttachedIndices.Builder targetReference(Consumer<ObjectReference.Builder> targetReference)
A reference to the object that has indices attached.
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 totargetReference(ObjectReference).- Parameters:
targetReference- 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:
targetReference(ObjectReference)
-
nextToken
BatchListAttachedIndices.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.
-
maxResults
BatchListAttachedIndices.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.
-
-