Interface BatchListObjectParentsResponse.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchListObjectParentsResponse.Builder,BatchListObjectParentsResponse>,SdkBuilder<BatchListObjectParentsResponse.Builder,BatchListObjectParentsResponse>,SdkPojo
- Enclosing class:
- BatchListObjectParentsResponse
public static interface BatchListObjectParentsResponse.Builder extends SdkPojo, CopyableBuilder<BatchListObjectParentsResponse.Builder,BatchListObjectParentsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchListObjectParentsResponse.BuildernextToken(String nextToken)The pagination token.BatchListObjectParentsResponse.BuilderparentLinks(Collection<ObjectIdentifierAndLinkNameTuple> parentLinks)Returns a list of parent reference and LinkName Tuples.BatchListObjectParentsResponse.BuilderparentLinks(Consumer<ObjectIdentifierAndLinkNameTuple.Builder>... parentLinks)Returns a list of parent reference and LinkName Tuples.BatchListObjectParentsResponse.BuilderparentLinks(ObjectIdentifierAndLinkNameTuple... parentLinks)Returns a list of parent reference and LinkName Tuples.-
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
-
parentLinks
BatchListObjectParentsResponse.Builder parentLinks(Collection<ObjectIdentifierAndLinkNameTuple> parentLinks)
Returns a list of parent reference and LinkName Tuples.
- Parameters:
parentLinks- Returns a list of parent reference and LinkName Tuples.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parentLinks
BatchListObjectParentsResponse.Builder parentLinks(ObjectIdentifierAndLinkNameTuple... parentLinks)
Returns a list of parent reference and LinkName Tuples.
- Parameters:
parentLinks- Returns a list of parent reference and LinkName Tuples.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parentLinks
BatchListObjectParentsResponse.Builder parentLinks(Consumer<ObjectIdentifierAndLinkNameTuple.Builder>... parentLinks)
Returns a list of parent reference and LinkName Tuples.
This is a convenience method that creates an instance of theObjectIdentifierAndLinkNameTuple.Builderavoiding the need to create one manually viaObjectIdentifierAndLinkNameTuple.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#parentLinks(List.) - Parameters:
parentLinks- a consumer that will call methods onObjectIdentifierAndLinkNameTuple.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#parentLinks(java.util.Collection)
-
nextToken
BatchListObjectParentsResponse.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.
-
-