| 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 |
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 |
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 © 2020. All rights reserved.