@Retention(value=RUNTIME)
@Target(value={FIELD,METHOD})
public @interface DynamoDBMarshalling
String
s, Number
s, and
Set
s of the same to DynamoDB. Any object that can be converted into a
String representation and vice versa can be saved in this manner. This
annotation can be applied to either the getter method or the class field for
the specific property. If the annotation is applied directly to the class
field, the corresponding getter and setter must be declared in the same
class.DynamoDBMarshaller
,
JsonMarshaller
Modifier and Type | Required Element and Description |
---|---|
java.lang.Class<? extends DynamoDBMarshaller<? extends java.lang.Object>> |
marshallerClass
The class of the Marshaller that converts this property to and from a
String.
|
public abstract java.lang.Class<? extends DynamoDBMarshaller<? extends java.lang.Object>> marshallerClass
Copyright © 2018 Amazon Web Services, Inc. All Rights Reserved.