public static interface PartitionInput.Builder extends CopyableBuilder<PartitionInput.Builder,PartitionInput>
Modifier and Type | Method and Description |
---|---|
PartitionInput.Builder |
lastAccessTime(Instant lastAccessTime)
The last time at which the partition was accessed.
|
PartitionInput.Builder |
lastAnalyzedTime(Instant lastAnalyzedTime)
The last time at which column statistics were computed for this partition.
|
PartitionInput.Builder |
parameters(Map<String,String> parameters)
Partition parameters, in the form of a list of key-value pairs.
|
default PartitionInput.Builder |
storageDescriptor(Consumer<StorageDescriptor.Builder> storageDescriptor)
Provides information about the physical location where the partition is stored.
|
PartitionInput.Builder |
storageDescriptor(StorageDescriptor storageDescriptor)
Provides information about the physical location where the partition is stored.
|
PartitionInput.Builder |
values(Collection<String> values)
The values of the partition.
|
PartitionInput.Builder |
values(String... values)
The values of the partition.
|
copy
applyMutation, build
PartitionInput.Builder values(Collection<String> values)
The values of the partition.
values
- The values of the partition.PartitionInput.Builder values(String... values)
The values of the partition.
values
- The values of the partition.PartitionInput.Builder lastAccessTime(Instant lastAccessTime)
The last time at which the partition was accessed.
lastAccessTime
- The last time at which the partition was accessed.PartitionInput.Builder storageDescriptor(StorageDescriptor storageDescriptor)
Provides information about the physical location where the partition is stored.
storageDescriptor
- Provides information about the physical location where the partition is stored.default PartitionInput.Builder storageDescriptor(Consumer<StorageDescriptor.Builder> storageDescriptor)
Provides information about the physical location where the partition is stored.
This is a convenience that creates an instance of theStorageDescriptor.Builder
avoiding the need to
create one manually via StorageDescriptor.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to storageDescriptor(StorageDescriptor)
.storageDescriptor
- a consumer that will call methods on StorageDescriptor.Builder
storageDescriptor(StorageDescriptor)
PartitionInput.Builder parameters(Map<String,String> parameters)
Partition parameters, in the form of a list of key-value pairs.
parameters
- Partition parameters, in the form of a list of key-value pairs.PartitionInput.Builder lastAnalyzedTime(Instant lastAnalyzedTime)
The last time at which column statistics were computed for this partition.
lastAnalyzedTime
- The last time at which column statistics were computed for this partition.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.