{"id":15705,"date":"2025-09-12T12:51:20","date_gmt":"2025-09-12T07:21:20","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15705"},"modified":"2025-09-12T12:51:22","modified_gmt":"2025-09-12T07:21:22","slug":"how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\/","title":{"rendered":"How to Migrate Amazon S3 Data Across Accounts and Regions Using the AWS CLI"},"content":{"rendered":"\n<p>Migrating data between Amazon S3 buckets across AWS accounts and Regions can be a common requirement during cloud restructuring, account isolation, or data archiving strategies.<\/p>\n\n\n\n<p>We\u2019ll copy data from a source bucket in one AWS account to a destination bucket in another account, potentially in a different Region. This process ensures that the destination account becomes the new owner of the objects, and we\u2019ll achieve this through AWS S3 data transfer using AWS CLI.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-tools-amp-services-used\"><strong>Tools &amp; Services Used<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Amazon S3<\/strong> \u2013 Object storage service<\/li>\n\n\n\n<li><strong>AWS CLI<\/strong> \u2013 Command line tool for AWS<\/li>\n\n\n\n<li><strong>AWS IAM<\/strong> \u2013 Identity and Access Management<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-prerequisites\"><strong>Prerequisites<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Two AWS accounts (source and destination)<\/li>\n\n\n\n<li>Existing S3 buckets in both accounts<\/li>\n\n\n\n<li>IAM access to configure users, roles, and policies<\/li>\n\n\n\n<li><a href=\"https:\/\/aws.amazon.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">AWS<\/mark><\/a> CLI installed on your system<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-by-step-guide\"><strong>Step-by-Step Guide<\/strong><\/h2>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-create-iam-user-and-role-in-the-destination-account\"><strong>Create IAM User and Role in the Destination Account<\/strong><\/h2>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-create-an-iam-user\"><strong>Create an IAM User<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to IAM in the AWS Management Console<\/li>\n\n\n\n<li>Create a IAM user with programmatic access<\/li>\n\n\n\n<li>Download the access and secret keys<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-create-a-policy-s3migrationpolicy\"><strong>Create a Policy (S3MigrationPolicy)<\/strong><\/h3>\n\n\n\n<p>Create a policy with the following permissions, replacing bucket names with your actual bucket names:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"Version\": \"2012-10-17\",\n    \"Statement\": &#91;\n        {\n            \"Effect\": \"Allow\",\n            \"Action\": &#91;\n                \"s3:ListBucket\",\n                \"s3:GetObject\",\n                \"s3:GetObjectTagging\",\n                \"s3:GetObjectVersion\",\n                \"s3:GetObjectVersionTagging\"\n            ],\n            \"Resource\": &#91;\n                \"arn:aws:s3:::amazon-s3-source-bucket\",\n                \"arn:aws:s3:::amazon-s3-source-bucket\/*\"\n            ]\n        },\n        {\n            \"Effect\": \"Allow\",\n            \"Action\": &#91;\n                \"s3:ListBucket\",\n                \"s3:PutObject\",\n                \"s3:PutObjectAcl\",\n                \"s3:PutObjectTagging\",\n                \"s3:GetObjectTagging\",\n                \"s3:GetObjectVersion\",\n                \"s3:GetObjectVersionTagging\"\n            ],\n            \"Resource\": &#91;\n                \"arn:aws:s3:::amazon-s3-destination-bucket\",\n                \"arn:aws:s3:::amazon-s3-destination-bucket\/*\"\n            ]\n        }\n    ]\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Create IAM Role (S3MigrationRole)<\/strong><\/h2>\n\n\n\n<p>Create a role that can be assumed by the destination account IAM user:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"Version\": \"2012-10-17\",\n    \"Statement\": &#91;\n        {\n            \"Effect\": \"Allow\",\n            \"Principal\": {<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>              \"AWS\": \"arn:aws:iam::&lt;destination_account>:user\/&lt;user_name>\"\n            },\n            \"Action\": \"sts:AssumeRole\",\n            \"Condition\": {}\n        }\n    ]\n}<\/code><\/pre>\n\n\n\n<p>Change the Amazon Resource Name (ARN) of the destination IAM user name according to your use case.<\/p>\n\n\n\n<p>Attach the S3MigrationPolicy to this role S3MigrationRole.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Configure Bucket Policy in the Source Account<\/strong><\/h3>\n\n\n\n<p>In the <strong>source S3 bucket<\/strong>, attach a bucket policy to allow access to the IAM role in the destination account:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"Version\": \"2012-10-17\",\n  \"Statement\": &#91;\n    {\n      \"Sid\": \"DelegateS3Access\",\n      \"Effect\": \"Allow\",\n      \"Principal\": {\n        \"AWS\": \"arn:aws:iam::&lt;destination-account-id>:role\/S3MigrationRole\"\n      },\n      \"Action\": &#91;\n        \"s3:ListBucket\",\n        \"s3:GetObject\",\n        \"s3:GetObjectTagging\",\n        \"s3:GetObjectVersion\",\n        \"s3:GetObjectVersionTagging\"\n      ],\n      \"Resource\": &#91;\n        \"arn:aws:s3:::source-bucket-name\/*\",\n        \"arn:aws:s3:::source-bucket-name\"\n      ]\n    }<\/code><\/pre>\n\n\n\n<p>Replace &lt;destination-account-id> with your actual AWS account ID and S3MigrationRole with the name of the IAM role you created in your destination account.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Create the Destination S3 Bucket<\/strong><\/h2>\n\n\n\n<p>If you haven&#8217;t already:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to S3 console in the <strong>destination account<\/strong><\/li>\n\n\n\n<li>Create a bucket in the desired Region<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Configure AWS CLI &amp; Assume Role<\/strong><\/h3>\n\n\n\n<p>Install the AWS CLI and configure it with the IAM user credentials. See the following link to configure AWS CLI &amp; Assume Role:- <a href=\"https:\/\/www.skynats.com\/blog\/how-do-i-assume-an-iam-role-using-the-aws-cli\/\">https:\/\/www.skynats.com\/blog\/how-do-i-assume-an-iam-role-using-the-aws-cli\/<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Copy or Sync the Data<\/strong><\/h3>\n\n\n\n<p>Use one of the following commands to migrate data:<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Copy all objects:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>aws s3 cp s3:\/\/amazon-s3-source-bucket\/ \\\n    s3:\/\/amazon-s3-destination-bucket\/ \\\n    --recursive --source-region source-region-name --region destination-region-name<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-synchronize-objects\"><strong>Synchronize objects:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>aws s3 sync s3:\/\/amazon-s3-source-bucket\/ \\\n    s3:\/\/amazon-s3-destination-bucket\/ \\\n    --source-region source-region-name --region destination-region-name<\/code><\/pre>\n\n\n\n<p>Replace the bucket and region names according to your setup in the above command.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>This guide showed you how to perform a secure, one-time migration of S3 data across AWS accounts and Regions using the AWS CLI.<\/p>\n\n\n\n<p>Handling AWS S3 data transfer using AWS CLI across accounts and regions can be complex. Skynats offers expert <a href=\"https:\/\/www.skynats.com\/aws-management\/\">AWS Management Services<\/a> to simplify migrations, ensure data security, and optimize performance. Contact us today for professional support.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Migrating data between Amazon S3 buckets across AWS accounts and Regions can be a common requirement during cloud restructuring, account isolation, or data archiving strategies. We\u2019ll copy data from a source bucket in one AWS account to a destination bucket in another account, potentially in a different Region. This process ensures that the destination account [&hellip;]<\/p>\n","protected":false},"author":14,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[722,730,1103,1006,352,1100,1101,1102],"class_list":["post-15705","post","type-post","status-publish","format-standard","hentry","category-blog","tag-aws","tag-aws-cli","tag-aws-iam","tag-aws-management-services","tag-aws-s3","tag-iam","tag-s3-bucket","tag-s3migrationpolicy"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>AWS S3 Data Transfer Using AWS CLI: Cross-Account Guide<\/title>\n<meta name=\"description\" content=\"Master AWS S3 data transfer using AWS CLI across accounts &amp; regions. Step-by-step guide\u2014start your migration today!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.skynats.com\/blog\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Migrate Amazon S3 Data Across Accounts and Regions Using the AWS CLI\" \/>\n<meta property=\"og:description\" content=\"Master AWS S3 data transfer using AWS CLI across accounts &amp; regions. Step-by-step guide\u2014start your migration today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-12T07:21:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-12T07:21:22+00:00\" \/>\n<meta name=\"author\" content=\"Jishnu V\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jishnu V\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\\\/\"},\"author\":{\"name\":\"Jishnu V\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/c63611da5e22d216e38d8658e5a605c5\"},\"headline\":\"How to Migrate Amazon S3 Data Across Accounts and Regions Using the AWS CLI\",\"datePublished\":\"2025-09-12T07:21:20+00:00\",\"dateModified\":\"2025-09-12T07:21:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\\\/\"},\"wordCount\":445,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"aws\",\"AWS CLI\",\"AWS IAM\",\"AWS Management Services\",\"aws s3\",\"IAM\",\"S3 Bucket\",\"S3MigrationPolicy\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\\\/\",\"name\":\"AWS S3 Data Transfer Using AWS CLI: Cross-Account Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-09-12T07:21:20+00:00\",\"dateModified\":\"2025-09-12T07:21:22+00:00\",\"description\":\"Master AWS S3 data transfer using AWS CLI across accounts & regions. Step-by-step guide\u2014start your migration today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Migrate Amazon S3 Data Across Accounts and Regions Using the AWS CLI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/c63611da5e22d216e38d8658e5a605c5\",\"name\":\"Jishnu V\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"caption\":\"Jishnu V\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"AWS S3 Data Transfer Using AWS CLI: Cross-Account Guide","description":"Master AWS S3 data transfer using AWS CLI across accounts & regions. Step-by-step guide\u2014start your migration today!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.skynats.com\/blog\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\/","og_locale":"en_US","og_type":"article","og_title":"How to Migrate Amazon S3 Data Across Accounts and Regions Using the AWS CLI","og_description":"Master AWS S3 data transfer using AWS CLI across accounts & regions. Step-by-step guide\u2014start your migration today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-09-12T07:21:20+00:00","article_modified_time":"2025-09-12T07:21:22+00:00","author":"Jishnu V","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Jishnu V","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\/"},"author":{"name":"Jishnu V","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/c63611da5e22d216e38d8658e5a605c5"},"headline":"How to Migrate Amazon S3 Data Across Accounts and Regions Using the AWS CLI","datePublished":"2025-09-12T07:21:20+00:00","dateModified":"2025-09-12T07:21:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\/"},"wordCount":445,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["aws","AWS CLI","AWS IAM","AWS Management Services","aws s3","IAM","S3 Bucket","S3MigrationPolicy"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\/","url":"https:\/\/www.skynats.com\/blog\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\/","name":"AWS S3 Data Transfer Using AWS CLI: Cross-Account Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-09-12T07:21:20+00:00","dateModified":"2025-09-12T07:21:22+00:00","description":"Master AWS S3 data transfer using AWS CLI across accounts & regions. Step-by-step guide\u2014start your migration today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-migrate-amazon-s3-data-across-accounts-and-regions-using-the-aws-cli\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Migrate Amazon S3 Data Across Accounts and Regions Using the AWS CLI"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/c63611da5e22d216e38d8658e5a605c5","name":"Jishnu V","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","caption":"Jishnu V"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15705","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=15705"}],"version-history":[{"count":1,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15705\/revisions"}],"predecessor-version":[{"id":15706,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15705\/revisions\/15706"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15705"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15705"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15705"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}