AmazonDynamoDB example not compiling

Hi,

I am trying to use the AmazonDynamoDB and forked the example. But I am getting errors when I compile it in the online IDE. It is also not compiling when I fill in my aws account details for the database.
The errors:

application.cpp: In function 'void loop()':
application.cpp:91:63: error: no matching function for call to 'MinimalKeyValuePair<MinimalString, AttributeValue>::MinimalKeyValuePair(const char*&, const char*&)'
         MinimalKeyValuePair < MinimalString, AttributeValue
                                                               ^

application.cpp:91:63: note: candidates are:
In file included from AmazonDynamoDBClient/AmazonDynamoDBClient.h:3:0,
                 from application.cpp:3:
AmazonDynamoDBClient/AWSFoundationalTypes.h:348:1: note: MinimalKeyValuePair<Key_Type, Value_Type>::MinimalKeyValuePair() [with Key_Type = MinimalString; Value_Type = AttributeValue]
 MinimalKeyValuePair<Key_Type, Value_Type>::MinimalKeyValuePair() {
 ^
AmazonDynamoDBClient/AWSFoundationalTypes.h:348:1: note:   candidate expects 0 arguments, 2 provided
AmazonDynamoDBClient/AWSFoundationalTypes.h:341:1: note: MinimalKeyValuePair<Key_Type, Value_Type>::MinimalKeyValuePair(Key_Type, Value_Type) [with Key_Type = MinimalString; Value_Type = AttributeValue]
 MinimalKeyValuePair<Key_Type, Value_Type>::MinimalKeyValuePair(Key_Type key,
 ^
AmazonDynamoDBClient/AWSFoundationalTypes.h:341:1: note:   no known conversion for argument 2 from 'const char*' to 'AttributeValue'
AmazonDynamoDBClient/AWSFoundationalTypes.h:118:7: note: MinimalKeyValuePair<MinimalString, AttributeValue>::MinimalKeyValuePair(const MinimalKeyValuePair<MinimalString, AttributeValue>&)
 class MinimalKeyValuePair {
       ^
AmazonDynamoDBClient/AWSFoundationalTypes.h:118:7: note:   candidate expects 1 argument, 2 provided
AmazonDynamoDBClient/AWSFoundationalTypes.h:118:7: note: MinimalKeyValuePair<MinimalString, AttributeValue>::MinimalKeyValuePair(MinimalKeyValuePair<MinimalString, AttributeValue>&&)
AmazonDynamoDBClient/AWSFoundationalTypes.h:118:7: note:   candidate expects 1 argument, 2 provided
make[2]: *** [../build/target/user/platform-0-lapplication.o] Error 1
make[1]: *** [user] Error 2
make: *** [main] Error 2
Error: Could not compile. Please review your code.

I would be very grateful if you could have a look at the library :smile:
I have never seen < and > in such a code before.

Edit: isn’t there anyone with an idea?