lambda関数からDynamoDBにデータを追記する

put_itemを用いることでDBに追記することができる。


table.put_item( Item={ 'id': event["id"], 'email': event["email"] } )

しかし、put_itemは既存の要素を上書きする可能性があるので、オプションでattribute_not_existsを使用し、項目が存在しなければ追加とする必要がある。
http://docs.aws.amazon.com/ja_jp/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html