{"id":22343826,"url":"https://github.com/insight-architectures/dotnet-tool-clone-dynamodb-table","last_synced_at":"2025-07-30T03:30:35.896Z","repository":{"id":45863987,"uuid":"377197282","full_name":"insight-architectures/dotnet-tool-clone-dynamodb-table","owner":"insight-architectures","description":"A .NET global tool that copies a AWS DynamoDB table and its content from one account into another or into a local instance.","archived":false,"fork":false,"pushed_at":"2024-03-11T17:03:58.000Z","size":29,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-05T20:21:31.374Z","etag":null,"topics":["aws-dynamodb","dotnet-core","dotnet-global-tool","dotnet-tool"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/insight-architectures.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-06-15T14:45:52.000Z","updated_at":"2022-10-13T11:26:21.000Z","dependencies_parsed_at":"2022-07-22T11:02:58.559Z","dependency_job_id":null,"html_url":"https://github.com/insight-architectures/dotnet-tool-clone-dynamodb-table","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/insight-architectures/dotnet-tool-clone-dynamodb-table","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insight-architectures%2Fdotnet-tool-clone-dynamodb-table","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insight-architectures%2Fdotnet-tool-clone-dynamodb-table/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insight-architectures%2Fdotnet-tool-clone-dynamodb-table/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insight-architectures%2Fdotnet-tool-clone-dynamodb-table/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/insight-architectures","download_url":"https://codeload.github.com/insight-architectures/dotnet-tool-clone-dynamodb-table/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insight-architectures%2Fdotnet-tool-clone-dynamodb-table/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267803962,"owners_count":24146526,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws-dynamodb","dotnet-core","dotnet-global-tool","dotnet-tool"],"created_at":"2024-12-04T09:06:21.309Z","updated_at":"2025-07-30T03:30:35.634Z","avatar_url":"https://github.com/insight-architectures.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Insight Architectures Clone DynamoDB Table .NET Tool\n\nThis .NET global tool can be used to clone an AWS DynamoDB table and its content from one account into another or into a local instance.\n\n## Installation\n\nTo install this tool, simply execute the following command in your terminal of choice\n\n```sh\n$ dotnet tool install InsightArchitectures.Tools.CloneDynamoDbTable\n```\n\nNote that you'll need a tool manifest to be able to install any tool locally.\n\nAlternatively, you can install the tool globally using the `-g` switch\n\n```sh\n$ dotnet tool install -g InsightArchitectures.Tools.CloneDynamoDbTable\n```\n\n## Usage\n\nOnce installed, either locally or globally, you can use the command by running the following command\n\n```sh\n$ dotnet clone-dynamodb-table [options]\n```\n\nThe tool can be configured using the following options\n\n|Option|Description|Required|Default|\n|-|-|-|-|\n|`--source-table-name \u003csource-table-name\u003e`|The source table to copy.|yes||\n|`--source-profile \u003csource-profile\u003e`|The profile to be used to access the source table.|no||\n|`--source-region \u003csource-region\u003e`|The region where the source table is located.|no||\n|`--source-service-url \u003csource-service-url\u003e`|The service url to be used to access the source table.|no||\n|`--source-access-key \u003csource-access-key\u003e`|The access key to be used to access the source table.|no||\n|`--source-secret-key \u003csource-secret-key\u003e`|The secret key to be used to access the source table.|no||\n|`--target-table-name \u003ctarget-table-name\u003e`|The target table to copy.|no||\n|`--target-profile \u003ctarget-profile\u003e`|The profile to be used to access the target table.|no||\n|`--target-region \u003ctarget-region\u003e`|The region where the target table is located.|no||\n|`--target-service-url \u003ctarget-service-url\u003e`|The service url to be used to access the target table.|no||\n|`--target-access-key \u003ctarget-access-key\u003e`|The access key to be used to access the target table.|no||\n|`--target-secret-key \u003ctarget-secret-key\u003e`|The secret key to be used to access the target table.|no||\n|`--settings-file-path \u003csettings-file-path\u003e`|The path to a JSON file containing settings to be used.|no||\n|`--clone-content`|Specifies whether the content of the source table should be cloned in the target table.|no|`False`|\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finsight-architectures%2Fdotnet-tool-clone-dynamodb-table","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finsight-architectures%2Fdotnet-tool-clone-dynamodb-table","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finsight-architectures%2Fdotnet-tool-clone-dynamodb-table/lists"}