Interface BatchAttachToIndex.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchAttachToIndex.Builder,BatchAttachToIndex>,SdkBuilder<BatchAttachToIndex.Builder,BatchAttachToIndex>,SdkPojo
- Enclosing class:
- BatchAttachToIndex
public static interface BatchAttachToIndex.Builder extends SdkPojo, CopyableBuilder<BatchAttachToIndex.Builder,BatchAttachToIndex>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default BatchAttachToIndex.BuilderindexReference(Consumer<ObjectReference.Builder> indexReference)A reference to the index that you are attaching the object to.BatchAttachToIndex.BuilderindexReference(ObjectReference indexReference)A reference to the index that you are attaching the object to.default BatchAttachToIndex.BuildertargetReference(Consumer<ObjectReference.Builder> targetReference)A reference to the object that you are attaching to the index.BatchAttachToIndex.BuildertargetReference(ObjectReference targetReference)A reference to the object that you are attaching to the index.-
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
-
indexReference
BatchAttachToIndex.Builder indexReference(ObjectReference indexReference)
A reference to the index that you are attaching the object to.
- Parameters:
indexReference- A reference to the index that you are attaching the object to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indexReference
default BatchAttachToIndex.Builder indexReference(Consumer<ObjectReference.Builder> indexReference)
A reference to the index that you are attaching the object to.
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)
-
targetReference
BatchAttachToIndex.Builder targetReference(ObjectReference targetReference)
A reference to the object that you are attaching to the index.
- Parameters:
targetReference- A reference to the object that you are attaching to the index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetReference
default BatchAttachToIndex.Builder targetReference(Consumer<ObjectReference.Builder> targetReference)
A reference to the object that you are attaching to the index.
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)
-
-