use of com.amazonaws.services.dynamodbv2.model.GetItemResult in project camel by apache.
the class GetItemCommand method execute.
@Override
public void execute() {
GetItemResult result = ddbClient.getItem(new GetItemRequest().withKey(determineKey()).withTableName(determineTableName()).withAttributesToGet(determineAttributeNames()).withConsistentRead(determineConsistentRead()));
addAttributesToResult(result.getItem());
}
Aggregations