Interface OperationContext
- 
- All Known Implementing Classes:
- DefaultOperationContext
 
 @ThreadSafe public interface OperationContext A context object that is associated with a specific operation and identifies the resources that the operation is meant to operate on.This context is passed to and can be read by extension hooks (see DynamoDbEnhancedClientExtension).
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringindexName()The name of the index within the table being operated on.StringtableName()The name of the table being operated on
 
- 
- 
- 
Method Detail- 
tableNameString tableName() The name of the table being operated on
 - 
indexNameString indexName() The name of the index within the table being operated on. If it is the primary index, then this value will be set to the constantTableMetadata.primaryIndexName().
 
- 
 
-