Interface PartitionIndex
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PartitionIndex.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-07T10:36:17.048Z")
@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
Modifier 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
-