Interface BatchListIndexResponse.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchListIndexResponse.Builder,BatchListIndexResponse>,SdkBuilder<BatchListIndexResponse.Builder,BatchListIndexResponse>,SdkPojo
- Enclosing class:
- BatchListIndexResponse
public static interface BatchListIndexResponse.Builder extends SdkPojo, CopyableBuilder<BatchListIndexResponse.Builder,BatchListIndexResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchListIndexResponse.BuilderindexAttachments(Collection<IndexAttachment> indexAttachments)The objects and indexed values attached to the index.BatchListIndexResponse.BuilderindexAttachments(Consumer<IndexAttachment.Builder>... indexAttachments)The objects and indexed values attached to the index.BatchListIndexResponse.BuilderindexAttachments(IndexAttachment... indexAttachments)The objects and indexed values attached to the index.BatchListIndexResponse.BuildernextToken(String nextToken)The pagination token.-
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
-
indexAttachments
BatchListIndexResponse.Builder indexAttachments(Collection<IndexAttachment> indexAttachments)
The objects and indexed values attached to the index.
- Parameters:
indexAttachments- The objects and indexed values attached to the index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indexAttachments
BatchListIndexResponse.Builder indexAttachments(IndexAttachment... indexAttachments)
The objects and indexed values attached to the index.
- Parameters:
indexAttachments- The objects and indexed values attached to the index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indexAttachments
BatchListIndexResponse.Builder indexAttachments(Consumer<IndexAttachment.Builder>... indexAttachments)
The objects and indexed values attached to the index.
This is a convenience method that creates an instance of theIndexAttachment.Builderavoiding the need to create one manually viaIndexAttachment.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#indexAttachments(List.) - Parameters:
indexAttachments- a consumer that will call methods onIndexAttachment.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#indexAttachments(java.util.Collection)
-
nextToken
BatchListIndexResponse.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.
-
-