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