Annotation Type DynamoDBRangeKey


  • @Retention(RUNTIME)
    @Target({FIELD,METHOD})
    public @interface DynamoDBRangeKey
    Annotation for marking a property in a class as the range key for a DynamoDB table. Applied to the getter method or the class field for the range key property. If the annotation is applied directly to the class field, the corresponding getter and setter must be declared in the same class.

    This annotation is required for tables that use a range key.

    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      String attributeName
      Optional parameter when the name of the attribute as stored in DynamoDB should differ from the name used by the getter / setter.
    • Element Detail

      • attributeName

        String attributeName
        Optional parameter when the name of the attribute as stored in DynamoDB should differ from the name used by the getter / setter.
        Default:
        ""