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 Summary

    Modifier and Type
    Method
    Description
    The name of the index within the table being operated on.
    The name of the table being operated on
  • Method Details

    • tableName

      String tableName()
      The name of the table being operated on
    • indexName

      String 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 constant TableMetadata.primaryIndexName().