Interface BatchGetPartitionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<BatchGetPartitionRequest.Builder,BatchGetPartitionRequest>,GlueRequest.Builder,SdkBuilder<BatchGetPartitionRequest.Builder,BatchGetPartitionRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- BatchGetPartitionRequest
public static interface BatchGetPartitionRequest.Builder extends GlueRequest.Builder, SdkPojo, CopyableBuilder<BatchGetPartitionRequest.Builder,BatchGetPartitionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetPartitionRequest.BuildercatalogId(String catalogId)The ID of the Data Catalog where the partitions in question reside.BatchGetPartitionRequest.BuilderdatabaseName(String databaseName)The name of the catalog database where the partitions reside.BatchGetPartitionRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)BatchGetPartitionRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)BatchGetPartitionRequest.BuilderpartitionsToGet(Collection<PartitionValueList> partitionsToGet)A list of partition values identifying the partitions to retrieve.BatchGetPartitionRequest.BuilderpartitionsToGet(Consumer<PartitionValueList.Builder>... partitionsToGet)A list of partition values identifying the partitions to retrieve.BatchGetPartitionRequest.BuilderpartitionsToGet(PartitionValueList... partitionsToGet)A list of partition values identifying the partitions to retrieve.BatchGetPartitionRequest.BuildertableName(String tableName)The name of the partitions' table.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueRequest.Builder
build
-
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
-
catalogId
BatchGetPartitionRequest.Builder catalogId(String catalogId)
The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.
- Parameters:
catalogId- The ID of the Data Catalog where the partitions in question reside. If none is supplied, the Amazon Web Services account ID is used by default.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
databaseName
BatchGetPartitionRequest.Builder databaseName(String databaseName)
The name of the catalog database where the partitions reside.
- Parameters:
databaseName- The name of the catalog database where the partitions reside.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableName
BatchGetPartitionRequest.Builder tableName(String tableName)
The name of the partitions' table.
- Parameters:
tableName- The name of the partitions' table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionsToGet
BatchGetPartitionRequest.Builder partitionsToGet(Collection<PartitionValueList> partitionsToGet)
A list of partition values identifying the partitions to retrieve.
- Parameters:
partitionsToGet- A list of partition values identifying the partitions to retrieve.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionsToGet
BatchGetPartitionRequest.Builder partitionsToGet(PartitionValueList... partitionsToGet)
A list of partition values identifying the partitions to retrieve.
- Parameters:
partitionsToGet- A list of partition values identifying the partitions to retrieve.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionsToGet
BatchGetPartitionRequest.Builder partitionsToGet(Consumer<PartitionValueList.Builder>... partitionsToGet)
A list of partition values identifying the partitions to retrieve.
This is a convenience method that creates an instance of thePartitionValueList.Builderavoiding the need to create one manually viaPartitionValueList.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#partitionsToGet(List.) - Parameters:
partitionsToGet- a consumer that will call methods onPartitionValueList.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#partitionsToGet(java.util.Collection)
-
overrideConfiguration
BatchGetPartitionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
BatchGetPartitionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-