public static interface BatchCreatePartitionRequest.Builder extends GlueRequest.Builder, CopyableBuilder<BatchCreatePartitionRequest.Builder,BatchCreatePartitionRequest>
Modifier and Type | Method and Description |
---|---|
BatchCreatePartitionRequest.Builder |
catalogId(String catalogId)
The ID of the catalog in which the partion is to be created.
|
BatchCreatePartitionRequest.Builder |
databaseName(String databaseName)
The name of the metadata database in which the partition is to be created.
|
BatchCreatePartitionRequest.Builder |
partitionInputList(Collection<PartitionInput> partitionInputList)
A list of
PartitionInput structures that define the partitions to be created. |
BatchCreatePartitionRequest.Builder |
partitionInputList(Consumer<PartitionInput.Builder>... partitionInputList)
A list of
PartitionInput structures that define the partitions to be created. |
BatchCreatePartitionRequest.Builder |
partitionInputList(PartitionInput... partitionInputList)
A list of
PartitionInput structures that define the partitions to be created. |
BatchCreatePartitionRequest.Builder |
requestOverrideConfig(AwsRequestOverrideConfig awsRequestOverrideConfig)
Add an optional request override configuration.
|
BatchCreatePartitionRequest.Builder |
requestOverrideConfig(Consumer<AwsRequestOverrideConfig.Builder> builderConsumer)
Add an optional request override configuration.
|
BatchCreatePartitionRequest.Builder |
tableName(String tableName)
The name of the metadata table in which the partition is to be created.
|
build
requestOverrideConfig
copy
apply, build
BatchCreatePartitionRequest.Builder catalogId(String catalogId)
The ID of the catalog in which the partion is to be created. Currently, this should be the AWS account ID.
catalogId
- The ID of the catalog in which the partion is to be created. Currently, this should be the AWS account
ID.BatchCreatePartitionRequest.Builder databaseName(String databaseName)
The name of the metadata database in which the partition is to be created.
databaseName
- The name of the metadata database in which the partition is to be created.BatchCreatePartitionRequest.Builder tableName(String tableName)
The name of the metadata table in which the partition is to be created.
tableName
- The name of the metadata table in which the partition is to be created.BatchCreatePartitionRequest.Builder partitionInputList(Collection<PartitionInput> partitionInputList)
A list of PartitionInput
structures that define the partitions to be created.
partitionInputList
- A list of PartitionInput
structures that define the partitions to be created.BatchCreatePartitionRequest.Builder partitionInputList(PartitionInput... partitionInputList)
A list of PartitionInput
structures that define the partitions to be created.
partitionInputList
- A list of PartitionInput
structures that define the partitions to be created.BatchCreatePartitionRequest.Builder partitionInputList(Consumer<PartitionInput.Builder>... partitionInputList)
A list of PartitionInput
structures that define the partitions to be created.
List.Builder
avoiding the need
to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and
its result is passed to #partitionInputList(List)
.partitionInputList
- a consumer that will call methods on List.Builder
#partitionInputList(List)
BatchCreatePartitionRequest.Builder requestOverrideConfig(AwsRequestOverrideConfig awsRequestOverrideConfig)
AwsRequest.Builder
requestOverrideConfig
in interface AwsRequest.Builder
awsRequestOverrideConfig
- The override configuration.BatchCreatePartitionRequest.Builder requestOverrideConfig(Consumer<AwsRequestOverrideConfig.Builder> builderConsumer)
AwsRequest.Builder
requestOverrideConfig
in interface AwsRequest.Builder
builderConsumer
- A Consumer
to which an empty AwsRequestOverrideConfig.Builder
will be given.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.