AmazonDynamoDBのUserクラスをマッピングする必要があります。Userオブジェクトのプロパティの1つは、AccountType(列挙型)です。これをどのように処理しますか?以下は、私が試した列挙型とコードです。
public enum AccountType {
TYPE_A,
TYPE_B
}
-
@DynamoDBAttribute(attributeName="AccountType") *<< THIS FAILS*
public AccountType getAccountType() {
return accountType;
}
どんな助けでもいただければ幸いです。