Interface PartitionIndex
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PartitionIndex.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:42.585Z")
@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 classA builder forPartitionIndexstatic final classAn implementation forPartitionIndex -
Method Summary
Modifier and TypeMethodDescriptionstatic PartitionIndex.Builderbuilder()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.BuilderofPartitionIndex
-