Interface BatchAttachObject.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchAttachObject.Builder,BatchAttachObject>,SdkBuilder<BatchAttachObject.Builder,BatchAttachObject>,SdkPojo
- Enclosing class:
- BatchAttachObject
public static interface BatchAttachObject.Builder extends SdkPojo, CopyableBuilder<BatchAttachObject.Builder,BatchAttachObject>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default BatchAttachObject.BuilderchildReference(Consumer<ObjectReference.Builder> childReference)The child object reference that is to be attached to the object.BatchAttachObject.BuilderchildReference(ObjectReference childReference)The child object reference that is to be attached to the object.BatchAttachObject.BuilderlinkName(String linkName)The name of the link.default BatchAttachObject.BuilderparentReference(Consumer<ObjectReference.Builder> parentReference)The parent object reference.BatchAttachObject.BuilderparentReference(ObjectReference parentReference)The parent object reference.-
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
-
parentReference
BatchAttachObject.Builder parentReference(ObjectReference parentReference)
The parent object reference.
- Parameters:
parentReference- The parent object reference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parentReference
default BatchAttachObject.Builder parentReference(Consumer<ObjectReference.Builder> parentReference)
The parent object reference.
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 toparentReference(ObjectReference).- Parameters:
parentReference- 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:
parentReference(ObjectReference)
-
childReference
BatchAttachObject.Builder childReference(ObjectReference childReference)
The child object reference that is to be attached to the object.
- Parameters:
childReference- The child object reference that is to be attached to the object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
childReference
default BatchAttachObject.Builder childReference(Consumer<ObjectReference.Builder> childReference)
The child object reference that is to be attached to the object.
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 tochildReference(ObjectReference).- Parameters:
childReference- 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:
childReference(ObjectReference)
-
linkName
BatchAttachObject.Builder linkName(String linkName)
The name of the link.
- Parameters:
linkName- The name of the link.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-