def put_ddb()

in codes/lambda/bucket-function/src/handler.py [0:0]


def put_ddb(table, item):
    try:
        response = table.put_item(Item=item)
    except ClientError as e:
        print('Error: put_ddb', e)