Map<String, AttributeValue> attributeValues =
convertToItem(getAttributeValueUpdates());
attributeValues = transformAttributes(
toParameters(attributeValues, this.clazz, finalConfig));
PutItemRequest req = new PutItemRequest()
.withTableName(getTableName())
.withItem(attributeValues)
.withExpected(getExpectedAttributeValues())
.withRequestMetricCollector(
finalConfig.getRequestMetricCollector());