Interface BatchUpdatePartitionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<BatchUpdatePartitionRequest.Builder,BatchUpdatePartitionRequest>,GlueRequest.Builder,SdkBuilder<BatchUpdatePartitionRequest.Builder,BatchUpdatePartitionRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- BatchUpdatePartitionRequest
public static interface BatchUpdatePartitionRequest.Builder extends GlueRequest.Builder, SdkPojo, CopyableBuilder<BatchUpdatePartitionRequest.Builder,BatchUpdatePartitionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchUpdatePartitionRequest.BuildercatalogId(String catalogId)The ID of the catalog in which the partition is to be updated.BatchUpdatePartitionRequest.BuilderdatabaseName(String databaseName)The name of the metadata database in which the partition is to be updated.BatchUpdatePartitionRequest.Builderentries(Collection<BatchUpdatePartitionRequestEntry> entries)A list of up to 100BatchUpdatePartitionRequestEntryobjects to update.BatchUpdatePartitionRequest.Builderentries(Consumer<BatchUpdatePartitionRequestEntry.Builder>... entries)A list of up to 100BatchUpdatePartitionRequestEntryobjects to update.BatchUpdatePartitionRequest.Builderentries(BatchUpdatePartitionRequestEntry... entries)A list of up to 100BatchUpdatePartitionRequestEntryobjects to update.BatchUpdatePartitionRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)BatchUpdatePartitionRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)BatchUpdatePartitionRequest.BuildertableName(String tableName)The name of the metadata table in which the partition is to be updated.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
catalogId
BatchUpdatePartitionRequest.Builder catalogId(String catalogId)
The ID of the catalog in which the partition is to be updated. Currently, this should be the Amazon Web Services account ID.
- Parameters:
catalogId- The ID of the catalog in which the partition is to be updated. Currently, this should be the Amazon Web Services account ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
databaseName
BatchUpdatePartitionRequest.Builder databaseName(String databaseName)
The name of the metadata database in which the partition is to be updated.
- Parameters:
databaseName- The name of the metadata database in which the partition is to be updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableName
BatchUpdatePartitionRequest.Builder tableName(String tableName)
The name of the metadata table in which the partition is to be updated.
- Parameters:
tableName- The name of the metadata table in which the partition is to be updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entries
BatchUpdatePartitionRequest.Builder entries(Collection<BatchUpdatePartitionRequestEntry> entries)
A list of up to 100
BatchUpdatePartitionRequestEntryobjects to update.- Parameters:
entries- A list of up to 100BatchUpdatePartitionRequestEntryobjects to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entries
BatchUpdatePartitionRequest.Builder entries(BatchUpdatePartitionRequestEntry... entries)
A list of up to 100
BatchUpdatePartitionRequestEntryobjects to update.- Parameters:
entries- A list of up to 100BatchUpdatePartitionRequestEntryobjects to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entries
BatchUpdatePartitionRequest.Builder entries(Consumer<BatchUpdatePartitionRequestEntry.Builder>... entries)
A list of up to 100
This is a convenience method that creates an instance of theBatchUpdatePartitionRequestEntryobjects to update.BatchUpdatePartitionRequestEntry.Builderavoiding the need to create one manually viaBatchUpdatePartitionRequestEntry.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#entries(List.) - Parameters:
entries- a consumer that will call methods onBatchUpdatePartitionRequestEntry.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entries(java.util.Collection)
-
overrideConfiguration
BatchUpdatePartitionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
BatchUpdatePartitionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-