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
- --ok -> Origin AWS Key | Required.
- --os -> Origin AWS Secret | Required.
- --oe -> Origin Endpoint | Optional. Defaults to AWS
- --or -> Origin AWS Region | Optional. Default: us-east-1
- --dk -> Destination AWS Key | Required.
- --ds -> Destination AWS Secret | Required.
- --de -> Destination Endpoint | Optional. Defaults to AWS
- --dr -> Destination AWS Region | Optional. Default: us-east-1