Amazon-DynamoDB-Simple
view release on metacpan or search on metacpan
# returns a hash representing the whole table as key value pairs
$table->items();
# returns all the keys in the table
$table->keys();
# delete $old_key, create $new_key
$table->rename($old_key, $new_key);
# sync data between AWS regions using the 'last_updated' field to select
# the newest data. This method will permanently delete any items marked as
# 'deleted'.
$table->sync_regions();
# This sets the value of the hosts attribute. The value shown is the
# default value. You must use exactly two hosts for stuff to work atm.
# Sorry.
$table->hosts([qw/
dynamodb.us-east-1.amazonaws.com
dynamodb.us-west-1.amazonaws.com
lib/Amazon/DynamoDB/Simple.pm view on Meta::CPAN
# returns a hash representing the whole table as key value pairs
$table->items();
# returns all the keys in the table
$table->keys();
# delete $old_key, create $new_key
$table->rename($old_key, $new_key);
# sync data between AWS regions using the 'last_updated' field to select
# the newest data. This method will permanently delete any items marked as
# 'deleted'.
$table->sync_regions();
# This sets the value of the hosts attribute. The value shown is the
# default value. You must use exactly two hosts for stuff to work atm.
# Sorry.
$table->hosts([qw/
dynamodb.us-east-1.amazonaws.com
dynamodb.us-west-1.amazonaws.com
( run in 1.004 second using v1.01-cache-2.11-cpan-49f99fa48dc )