A simple copy paste for AWS DynamoDB Table Items for Laravel/Lumen
leandroperini/dynamo-replicator is a Laravel package for a simple copy paste for aws dynamodb table items for laravel/lumen.
It currently has 1 GitHub stars and 278 downloads on Packagist (latest version 1.0.3).
Install it with composer require leandroperini/dynamo-replicator.
Discover more Laravel packages by leandroperini
or browse all Laravel packages to compare alternatives.
Last updated
A simple copy paste for AWS DynamoDB Table Items for Laravel/Lumen It helps when you need to copy a dump of DynamoDB table content and import to another table, location or account.
The Dynamo Replicator can be installed via Composer by requiring the
leandroperini/dynamo-replicator package in your project's composer.json.
{
"require": {
"leandroperini/dynamo-replicator": "^1.0.3"
}
}
Then run a composer update
php composer.phar update
Or just execute the command bellow:
composer require leandroperini/dynamo-replicator
To use the Dynamo Replicator, you must register the provider when bootstrapping your application.
In Lumen find the Register Service Providers in your bootstrap/app.php and register the Dynamo Replicator Service Provider.
$app->register(LeandroPerini\DynamoReplicator\DynamoReplicatorServiceProvider::class);
In Laravel find the providers key in your config/app.php and register the Dynamo Replicator Service Provider.
'providers' => array(
// ...
LeandroPerini\DynamoReplicatorServiceProvider::class,
)
php artisan dynamo:import origin-table-name destination-table-name
--ok=origin_aws_key --os=origin_aws_secret
--dk=destiation_aws_key --ds=destiation_aws_secret
--oe=origin_endpoint
--de=destination_endpoint
--or=origin-region
--dr=destination-region