Interface PartitionIndex
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PartitionIndex.Jsii$Proxy
@Generated(value="jsii-pacmak/1.109.0 (build c221850)",
date="2025-03-19T18:01:44.990Z")
@Stability(Experimental)
public interface PartitionIndex
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties of a Partition Index.
Example:
Table myTable; myTable.addPartitionIndex(PartitionIndex.builder() .indexName("my-index") .keyNames(List.of("year")) .build());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forPartitionIndex
static final class
An implementation forPartitionIndex
-
Method Summary
Modifier and TypeMethodDescriptionstatic PartitionIndex.Builder
builder()
default String
(experimental) The name of the partition index.(experimental) The partition key names that comprise the partition index.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKeyNames
(experimental) The partition key names that comprise the partition index.The names must correspond to a name in the table's partition keys.
-
getIndexName
(experimental) The name of the partition index.Default: - a name will be generated for you.
-
builder
- Returns:
- a
PartitionIndex.Builder
ofPartitionIndex
-