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