primaryPartitionKey
Marks an attribute as being the primary partition key of the table it participates in. Only one attribute can
be marked this way in a given table schema.
StaticAttributeTag. These tags can be used to mark your attributes as having certain
characteristics or features, such as primary or secondary keys in your StaticTableSchema definitions.static StaticAttributeTagstatic StaticAttributeTagatomicCounter(long delta,
long startValue) static StaticAttributeTagstatic StaticAttributeTagstatic StaticAttributeTagsecondaryPartitionKey(String indexName) static StaticAttributeTagsecondaryPartitionKey(String indexName,
Order order) static StaticAttributeTagsecondaryPartitionKey(Collection<String> indexNames) static StaticAttributeTagsecondaryPartitionKey(Collection<String> indexNames,
Order order) static StaticAttributeTagsecondarySortKey(String indexName) static StaticAttributeTagsecondarySortKey(String indexName,
Order order) static StaticAttributeTagsecondarySortKey(Collection<String> indexNames) static StaticAttributeTagsecondarySortKey(Collection<String> indexNames,
Order order) static StaticAttributeTagupdateBehavior(UpdateBehavior updateBehavior) indexName - The name of the index this key participates in.indexName - The name of the index this key participates in.order - the order of this key in the composite key (0-based)indexNames - The names of the indices this key participates in.indexNames - The names of the indices this key participates in.order - the order of this key in the composite key (0-based)indexName - The name of the index this key participates in.indexName - The name of the index this key participates in.order - the order of this key in the composite key (0-based)indexNames - The names of the indices this key participates in.indexNames - The names of the indices this key participates in.order - the order of this key in the composite key (0-based)UpdateBehavior for details on the different behaviors supported and the default
behavior.updateBehavior - The UpdateBehavior to be applied to this attributedelta - The value to increment (positive) or decrement (negative) the counter with for each update.startValue - The starting value of the counter.