How can I export data from Amazon DynamoDB
table on Account A and import them to the identical table (with the same partition key
) on Account B.
I would like to use a new feature described here New – Export Amazon DynamoDB Table Data to Your Data Lake in Amazon S3, No Code Writing Required
I was able to write PowerShell script
(with AWS Tools for Powershell) and export data from Amazon DynamoDb
table to Amazon S3
.
Export-DDBTableToPointInTime -TableArn $dynamoDbTableArn -S3Bucket $s3Bucket -ExportFormat DYNAMODB_JSON
Is there any possibility to import that data directly to Account B or I rather have to do it manually with simple write to Amazon DynamoDB
?