Interface IndexMetadata
-
- All Known Implementing Classes:
StaticIndexMetadata
@ThreadSafe public interface IndexMetadata
A metadata class that stores information about an index
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringname()The name of the indexOptional<KeyAttributeMetadata>partitionKey()The partition key for the index; if there is one.Optional<KeyAttributeMetadata>sortKey()The sort key for the index; if there is one.
-
-
-
Method Detail
-
name
String name()
The name of the index
-
partitionKey
Optional<KeyAttributeMetadata> partitionKey()
The partition key for the index; if there is one.
-
sortKey
Optional<KeyAttributeMetadata> sortKey()
The sort key for the index; if there is one.
-
-