Interface GetPartitionIndexesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetPartitionIndexesResponse.Builder,GetPartitionIndexesResponse>,GlueResponse.Builder,SdkBuilder<GetPartitionIndexesResponse.Builder,GetPartitionIndexesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetPartitionIndexesResponse
public static interface GetPartitionIndexesResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<GetPartitionIndexesResponse.Builder,GetPartitionIndexesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetPartitionIndexesResponse.BuildernextToken(String nextToken)A continuation token, present if the current list segment is not the last.GetPartitionIndexesResponse.BuilderpartitionIndexDescriptorList(Collection<PartitionIndexDescriptor> partitionIndexDescriptorList)A list of index descriptors.GetPartitionIndexesResponse.BuilderpartitionIndexDescriptorList(Consumer<PartitionIndexDescriptor.Builder>... partitionIndexDescriptorList)A list of index descriptors.GetPartitionIndexesResponse.BuilderpartitionIndexDescriptorList(PartitionIndexDescriptor... partitionIndexDescriptorList)A list of index descriptors.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueResponse.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
-
partitionIndexDescriptorList
GetPartitionIndexesResponse.Builder partitionIndexDescriptorList(Collection<PartitionIndexDescriptor> partitionIndexDescriptorList)
A list of index descriptors.
- Parameters:
partitionIndexDescriptorList- A list of index descriptors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionIndexDescriptorList
GetPartitionIndexesResponse.Builder partitionIndexDescriptorList(PartitionIndexDescriptor... partitionIndexDescriptorList)
A list of index descriptors.
- Parameters:
partitionIndexDescriptorList- A list of index descriptors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionIndexDescriptorList
GetPartitionIndexesResponse.Builder partitionIndexDescriptorList(Consumer<PartitionIndexDescriptor.Builder>... partitionIndexDescriptorList)
A list of index descriptors.
This is a convenience method that creates an instance of thePartitionIndexDescriptor.Builderavoiding the need to create one manually viaPartitionIndexDescriptor.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#partitionIndexDescriptorList(List.) - Parameters:
partitionIndexDescriptorList- a consumer that will call methods onPartitionIndexDescriptor.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#partitionIndexDescriptorList(java.util.Collection)
-
nextToken
GetPartitionIndexesResponse.Builder nextToken(String nextToken)
A continuation token, present if the current list segment is not the last.
- Parameters:
nextToken- A continuation token, present if the current list segment is not the last.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-