Interface DynamoDBQueryExecutorInitContext<K,V>


public interface DynamoDBQueryExecutorInitContext<K,V>
DynamoDB query executor initialisation context.
  • Method Summary

    Modifier and Type
    Method
    Description
    com.amazonaws.services.dynamodbv2.document.Index
    getDynamoDBIndex(String attributeName)
    Returns the DynamoDB index for the specified attribute name.
    Returns the configured DynamoDB item transformer.
    com.amazonaws.services.dynamodbv2.document.Table
    Returns the DynamoDB table.
  • Method Details

    • getDynamoDBItemTransformer

      Returns the configured DynamoDB item transformer.
      Returns:
      The DynamoDB item transformer.
    • getDynamoDBTable

      com.amazonaws.services.dynamodbv2.document.Table getDynamoDBTable()
      Returns the DynamoDB table.
      Returns:
      The DynamoDB table.
    • getDynamoDBIndex

      com.amazonaws.services.dynamodbv2.document.Index getDynamoDBIndex(String attributeName)
      Returns the DynamoDB index for the specified attribute name.
      Parameters:
      attributeName - The attribute name.
      Returns:
      The DynamoDB index, null if not found.