StaticTableMetadata.Builder |
StaticTableMetadata.Builder.addCustomMetadataObject(String key,
Object object) |
Adds a single custom object to the metadata, keyed by a string.
|
StaticTableMetadata.Builder |
StaticTableMetadata.Builder.addCustomMetadataObject(String key,
Collection<Object> objects) |
Adds collection of custom objects to the custom metadata, keyed by a string.
|
StaticTableMetadata.Builder |
StaticTableMetadata.Builder.addCustomMetadataObject(String key,
Map<Object,Object> objectMap) |
Adds map of custom objects to the custom metadata, keyed by a string.
|
StaticTableMetadata.Builder |
StaticTableMetadata.Builder.addIndexPartitionKey(String indexName,
String attributeName,
AttributeValueType attributeValueType) |
Adds information about a partition key associated with a specific index (backward compatibility).
|
StaticTableMetadata.Builder |
StaticTableMetadata.Builder.addIndexPartitionKey(String indexName,
String attributeName,
AttributeValueType attributeValueType,
Order order) |
Adds information about a partition key associated with a specific index.
|
StaticTableMetadata.Builder |
StaticTableMetadata.Builder.addIndexSortKey(String indexName,
String attributeName,
AttributeValueType attributeValueType) |
Adds information about a non-composite sort key associated with a specific index.
|
StaticTableMetadata.Builder |
StaticTableMetadata.Builder.addIndexSortKey(String indexName,
String attributeName,
AttributeValueType attributeValueType,
Order order) |
Adds information about a sort key associated with a specific index.
|
static StaticTableMetadata.Builder |
StaticTableMetadata.builder() |
Create a new builder for this class
|
StaticTableMetadata.Builder |
StaticTableMetadata.Builder.markAttributeAsKey(String attributeName,
AttributeValueType attributeValueType) |
Declares a 'key-like' attribute that is not an actual DynamoDB key.
|