| Package | Description |
|---|---|
| com.amazonaws.services.dynamodbv2.datamodeling |
| Modifier and Type | Class and Description |
|---|---|
interface |
DynamoDBConvertedBool
Annotation to convert a
Boolean to the DynamoDB S type. |
interface |
DynamoDBDelimited
Annotation to convert an object into a single delimited
String
attribute. |
interface |
DynamoDBDocument
An annotation that marks a class which can be serialized to a DynamoDB
document or sub-document.
|
interface |
DynamoDBMarshalling
Deprecated.
Replaced by
DynamoDBTypeConverted
A
public class CustomConverter<T> implements DynamoDBTypeConverter<String,T> {
@Override
public final String convert(final T object) {
return ...
}
@Override
public final T unconvert(final String object) {
return ...
}
}
|
interface |
DynamoDBNativeBoolean
Deprecated.
- Replaced by
DynamoDBTyped |
interface |
DynamoDBTypeConvertedEnum
Annotation to convert the enumeration value to a string.
|
interface |
DynamoDBTypeConvertedEpochDate
Annotation to convert a date object (
Date, Calendar, DateTime)
to a ScalarAttributeType.N stored as epoch time. |
interface |
DynamoDBTypeConvertedJson
A simple JSON converter that uses the Jackson JSON processor.
|
interface |
DynamoDBTypeConvertedTimestamp
Annotation to format a timestamp object using Java's standard date and time
patterns.
|
Copyright © 2018. All rights reserved.