Interface GetTableObjectsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetTableObjectsResponse.Builder,GetTableObjectsResponse>,LakeFormationResponse.Builder,SdkBuilder<GetTableObjectsResponse.Builder,GetTableObjectsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetTableObjectsResponse
public static interface GetTableObjectsResponse.Builder extends LakeFormationResponse.Builder, SdkPojo, CopyableBuilder<GetTableObjectsResponse.Builder,GetTableObjectsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetTableObjectsResponse.BuildernextToken(String nextToken)A continuation token indicating whether additional data is available.GetTableObjectsResponse.Builderobjects(Collection<PartitionObjects> objects)A list of objects organized by partition keys.GetTableObjectsResponse.Builderobjects(Consumer<PartitionObjects.Builder>... objects)A list of objects organized by partition keys.GetTableObjectsResponse.Builderobjects(PartitionObjects... objects)A list of objects organized by partition keys.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lakeformation.model.LakeFormationResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
objects
GetTableObjectsResponse.Builder objects(Collection<PartitionObjects> objects)
A list of objects organized by partition keys.
- Parameters:
objects- A list of objects organized by partition keys.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objects
GetTableObjectsResponse.Builder objects(PartitionObjects... objects)
A list of objects organized by partition keys.
- Parameters:
objects- A list of objects organized by partition keys.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objects
GetTableObjectsResponse.Builder objects(Consumer<PartitionObjects.Builder>... objects)
A list of objects organized by partition keys.
This is a convenience method that creates an instance of thePartitionObjects.Builderavoiding the need to create one manually viaPartitionObjects.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#objects(List.) - Parameters:
objects- a consumer that will call methods onPartitionObjects.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#objects(java.util.Collection)
-
nextToken
GetTableObjectsResponse.Builder nextToken(String nextToken)
A continuation token indicating whether additional data is available.
- Parameters:
nextToken- A continuation token indicating whether additional data is available.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-