Annotation Type DynamoDbIgnore


@Target(METHOD) @Retention(RUNTIME) public @interface DynamoDbIgnore
Opts this attribute out of participating in the table schema. It will be completely ignored by the mapper.

Example using DynamoDbAttribute:

 
 @DynamoDbBean
 public class Bean {
      private String internalKey;

      @DynamoDbIgnore
      public String getInternalKey() {
          return this.internalKey;
      }

      public void setInternalKey(String internalKey) {
          return this.internalKey = internalKey;}
      }
 
 }