{"id":242446,"date":"2024-07-24T13:33:15","date_gmt":"2024-07-24T20:33:15","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=242446"},"modified":"2024-08-14T18:05:32","modified_gmt":"2024-08-15T01:05:32","slug":"aws-s3-cross-account-replication","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/aws-s3-cross-account-replication\/","title":{"rendered":"AWS S3 Cross-Account Replication"},"content":{"rendered":"\n<p>When you create a general-purpose S3 bucket, AWS automatically redundantly saves all data across a minimum of 3 availability zones in the region where the bucket was created. This allows for 99.999999999% file durability, which ensures that you will never lose any of your data. Even with that level of data security, having the data replicated to buckets in other regions or accounts may be necessary.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>An AWS region failure or temporary outage<\/li>\n\n\n\n<li>The company requires files to be retained for compliance<\/li>\n\n\n\n<li>Stash copies of your data in multiple locations to safeguard against deletion and changes to the original data<\/li>\n\n\n\n<li>Have data in locations closer to customers or employees<\/li>\n<\/ul>\n\n\n\n<p>Whatever the case may be, AWS offers a built-in solution to keep your data in as many locations as you want. By using Replication Rules, you can tell AWS what data to move and where to move it. Below are the steps to replicate to a bucket in a different account via the GUI; you can also opt to do them via the API or CLI.<\/p>\n\n\n\n<p><strong>1. <\/strong>Replication requires that both the source and destination buckets have versioning enabled. Versioning will save a copy of each object if another object of the same name replaces it. This can be set up under the Properties of each bucket. Only new objects created after enabling replication will be replicated. To replicate existing objects, you will need to <a href=\"https:\/\/www.virtual-dba.com\/blog\/aws-s3-batch-operation\/\">create a Batch Operation<\/a>.<\/p>\n\n\n\n<p><strong>2. <\/strong>Inside your bucket, go to the Management tab and select Create replication rule.<\/p>\n\n\n\n<p><strong>3. <\/strong>Give your rule a unique name. Since you can have multiple rules per bucket, be sure to use a naming convention that conveys what this rule does.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"650\" height=\"370\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/1-aws-s3-cross-account-replication-create-replication-rule.png\" alt=\"AWS S3 Cross-Account Replication Create Replication Rule\" class=\"wp-image-242451\" srcset=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/1-aws-s3-cross-account-replication-create-replication-rule.png 650w, https:\/\/virtual-dba.com\/wp-content\/uploads\/1-aws-s3-cross-account-replication-create-replication-rule-480x273.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 650px, 100vw\" \/><\/figure>\n\n\n\n<p><strong>4. <\/strong>You can choose to limit the rule to particular objects or apply it to all objects.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Filter by prefix &#8211; In S3 terms, objects are stored in a flat namespace. This means there are no actual directories or folders, even though there appear to be. The directory portion of each object is referred to as its prefix. Object test\/logs\/test.txt has a prefix of test\/logs\/. A prefix filter could be used here to apply only to objects under the test\/ or test\/logs\/ prefix.<\/li>\n\n\n\n<li>Filter by tags &#8211; Each object in S3 can have multiple tags assigned. These key-value pairs can be considered similar to metadata for each object. Tags can help group objects and manage them. A tag filter could apply only to objects with the exact key-value pair or the key itself.<\/li>\n\n\n\n<li>You can also choose to use a combination of both filters.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"639\" height=\"529\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/2-aws-s3-cross-account-replication-source-bucket.png\" alt=\"AWS S3 Cross-Account Replication Source Bucket\" class=\"wp-image-242448\" srcset=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/2-aws-s3-cross-account-replication-source-bucket.png 639w, https:\/\/virtual-dba.com\/wp-content\/uploads\/2-aws-s3-cross-account-replication-source-bucket-480x397.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 639px, 100vw\" \/><\/figure>\n\n\n\n<p><strong>5. <\/strong>Choose the Destination bucket in another account. You will need the account ID and bucket name.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"639\" height=\"438\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/3-aws-s3-cross-account-replication-destination.png\" alt=\"AWS S3 Cross-Account Replication Destination\" class=\"wp-image-242450\" srcset=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/3-aws-s3-cross-account-replication-destination.png 639w, https:\/\/virtual-dba.com\/wp-content\/uploads\/3-aws-s3-cross-account-replication-destination-480x329.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 639px, 100vw\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Alternatively, you may also need to check the box to Change object ownership to destination bucket owner. This option is for instances where objects in the source bucket are owned by that account, not by another account. This setting would give the destination bucket owner access to the replicated objects.<\/li>\n<\/ul>\n\n\n\n<p><strong>6. <\/strong>Choose Create new IAM role. This will allow AWS to automatically create a role with the basic permissions to complete replication. In most cases, this will be enough for standard replication. This role will be needed later to allow access to the destination bucket.<\/p>\n\n\n\n<p><strong>7.<\/strong> By default, S3 encrypts all data with Amazon S3 managed keys (SSE-S3). However, you can encrypt your replicated objects with KMS keys instead. This will require extra permissions for the source replication role and\/or any role accessing the destination bucket.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If you choose a KMS key from the source account, the destination bucket and roles will need permission to access that key to decrypt the objects. Select the option to choose from your AWS KMS keys and select the key you wish to use.<\/li>\n\n\n\n<li>If you choose a KMS key from the destination account, the role used by the source bucket for replication will need permissions to access the key to encrypt the objects. Select the option to enter the AWS KMS key ARN and paste the key from the destination account into the ARN.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"641\" height=\"533\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/4-aws-s3-cross-account-replication-encrypt-with-aws-kms-keys.png\" alt=\"AWS S3 Cross-Account Replication Encrypt with AWS KMS Keys\" class=\"wp-image-242449\" srcset=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/4-aws-s3-cross-account-replication-encrypt-with-aws-kms-keys.png 641w, https:\/\/virtual-dba.com\/wp-content\/uploads\/4-aws-s3-cross-account-replication-encrypt-with-aws-kms-keys-480x399.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 641px, 100vw\" \/><\/figure>\n\n\n\n<p><strong>8.<\/strong> Several options are also helpful.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Destination storage class &#8211; By default, replicated objects have the same storage class as the source object. However, you can choose to set the storage class of all replicated objects to a different class.<\/li>\n\n\n\n<li>Replication Time Control (RTC) &#8211; If a bucket has a large amount of objects or very large objects, replication can start to lag. If you require low lag times, this can be enabled to ensure that objects are replicated within 15 minutes.<\/li>\n\n\n\n<li>Replication metrics &#8211; This setting will publish metrics for replication to CloudWatch. These can be found in CloudWatch -&gt; Metrics -&gt; S3 -&gt; Replication Metrics. They can be used to monitor several metrics and set up alarms to be notified of potential issues. This setting does not provide actual logs, only numeric metrics.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1319\" height=\"512\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/5-aws-s3-cross-account-replication-cloudwatch-metrics.png\" alt=\"AWS S3 Cross-Account Replication Cloudwatch Metrics\" class=\"wp-image-242447\" srcset=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/5-aws-s3-cross-account-replication-cloudwatch-metrics.png 1319w, https:\/\/virtual-dba.com\/wp-content\/uploads\/5-aws-s3-cross-account-replication-cloudwatch-metrics-1280x497.png 1280w, https:\/\/virtual-dba.com\/wp-content\/uploads\/5-aws-s3-cross-account-replication-cloudwatch-metrics-980x380.png 980w, https:\/\/virtual-dba.com\/wp-content\/uploads\/5-aws-s3-cross-account-replication-cloudwatch-metrics-480x186.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1319px, 100vw\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To enable logging, you can go to the bucket and browse to Properties -&gt; Event Notifications -&gt; Create event notification. Under Event types, browse the Replication section and choose which events you want to be notified of.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"643\" height=\"273\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/6-aws-s3-cross-account-replication-events.png\" alt=\"AWS S3 Cross-Account Replication Events\" class=\"wp-image-242452\" srcset=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/6-aws-s3-cross-account-replication-events.png 643w, https:\/\/virtual-dba.com\/wp-content\/uploads\/6-aws-s3-cross-account-replication-events-480x204.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 643px, 100vw\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Delete marker replication &#8211; If an object is deleted in the source bucket, a delete marker is added since versioning is enabled. This marker is not replicated by default, so the destination bucket will show the object as not deleted. This setting allows S3 to replicate delete markers, so the object will show as deleted in the destination bucket also.<\/li>\n\n\n\n<li>Replica modification sync allows metadata changes made in the destination bucket to be replicated back to the source bucket. This is the only type of bidirectional replication that replicates metadata, not new objects uploaded or deleted markers to the destination bucket.<\/li>\n<\/ul>\n\n\n\n<p><strong>9. <\/strong>Click Save, and you will be brought to the Replicate Rules page. Take note of the IAM role that was created during the setup. Click on the role&#8217;s name, and the IAM page will open with details. On that page, we need the role&#8217;s ARN value. It will be in <code>arn:aws:iam::{Account-ID}:role\/service-role\/{Role-Name}<\/code>. Copy that value and save it; it will be used in the destination bucket policy to allow replication access.<\/p>\n\n\n\n<p><strong>10. <\/strong>Log into the destination account and browse to the S3 destination bucket.<\/p>\n\n\n\n<p><strong>11. <\/strong>Browse to Permissions -&gt; Bucket policy and choose Edit. Add the following policy with the values for your IAM role and destination bucket name.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"Version\": <mark style=\"background-color:rgba(0, 0, 0, 0);color:#a2fca2\" class=\"has-inline-color\">\"2012-10-17\"<\/mark>,\n    \"Statement\": &#91;\n        {\n            \"Effect\": <mark style=\"background-color:rgba(0, 0, 0, 0);color:#a2fca2\" class=\"has-inline-color\">\"Allow\"<\/mark>,\n            \"Principal\": {\n                \"AWS\": <mark style=\"background-color:rgba(0, 0, 0, 0);color:#a2fca2\" class=\"has-inline-color\">\"arn:aws:iam::{Account-ID}:role\/service-role\/{Role-Name}\"<\/mark>\n            },\n            \"Action\": &#91;\n                <mark style=\"background-color:rgba(0, 0, 0, 0);color:#a2fca2\" class=\"has-inline-color\">\"s3:ReplicateObject\"<\/mark>,\n                <mark style=\"background-color:rgba(0, 0, 0, 0);color:#a2fca2\" class=\"has-inline-color\">\"s3:ReplicateDelete\"<\/mark>,\n                <mark style=\"background-color:rgba(0, 0, 0, 0);color:#a2fca2\" class=\"has-inline-color\">\"s3:ReplicateTags\"<\/mark>,\n                <mark style=\"background-color:rgba(0, 0, 0, 0);color:#a2fca2\" class=\"has-inline-color\">\"s3:GetObjectVersionForReplication\"<\/mark>,\n                <mark style=\"background-color:rgba(0, 0, 0, 0);color:#a2fca2\" class=\"has-inline-color\">\"s3:GetObjectVersionAcl\"<\/mark>,\n                <mark style=\"background-color:rgba(0, 0, 0, 0);color:#a2fca2\" class=\"has-inline-color\">\"s3:PutObject\"<\/mark>,\n                <mark style=\"background-color:rgba(0, 0, 0, 0);color:#a2fca2\" class=\"has-inline-color\">\"s3:PutObjectAcl\"<\/mark>\n            ],\n            \"Resource\": <mark style=\"background-color:rgba(0, 0, 0, 0);color:#a2fca2\" class=\"has-inline-color\">\"arn:aws:s3:::{destination bucket}\/*\"<\/mark>\n        }\n    ]\n}<\/code><\/pre>\n\n\n\n<p><strong>12. <\/strong>You should now see any new object uploaded to the source bucket that has been replicated to the destination bucket. If not, enable Event Notifications for &#8220;Object failed to replicate.&#8221; Check the set destination for any errors. A list of common failures can be found <a href=\"https:\/\/docs.aws.amazon.com\/AmazonS3\/latest\/userguide\/replication-failure-codes.html\" target=\"_blank\" rel=\"noreferrer noopener\">here.<\/a><\/p>\n\n\n\n<p>For more information, please contact us!<\/p>\n\n\n\n<p><a href=\"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/\" target=\"_blank\" rel=\"noreferrer noopener\">This post was originally posted here.<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>When you create a general-purpose S3 bucket, AWS automatically redundantly saves all data across a minimum of 3 availability zones in the region where the bucket was created. This allows for 99.999999999% file durability, which ensures that you will never lose any of your data. Even with that level of data security, having the data [&hellip;]<\/p>\n","protected":false},"author":66,"featured_media":242454,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","content-type":"","footnotes":""},"categories":[4209,4166,4210],"tags":[4043,3979],"class_list":["post-242446","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-aws","category-blog","category-cloud","tag-aws","tag-cloud"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>AWS S3 Cross-Account Replication - VDBA<\/title>\n<meta name=\"description\" content=\"Learn how to use AWS Replication Rules to duplicate S3 bucket data across multiple accounts for enhanced data security and compliance.\" \/>\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.xtivia.com\/blog\/aws-s3-cross-account-replication\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AWS S3 Cross-Account Replication\" \/>\n<meta property=\"og:description\" content=\"Learn how to use AWS Replication Rules to duplicate S3 bucket data across multiple accounts for enhanced data security and compliance.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-24T20:33:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-15T01:05:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/AWS-S3-Cross-Account-Replication-vdba.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"557\" \/>\n\t<meta property=\"og:image:height\" content=\"291\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Shane Schlabach\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:site\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shane Schlabach\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/aws-s3-cross-account-replication\/\"},\"author\":{\"name\":\"Shane Schlabach\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/ee3245e2c78a8099c94f5aa5b89fd17d\"},\"headline\":\"AWS S3 Cross-Account Replication\",\"datePublished\":\"2024-07-24T20:33:15+00:00\",\"dateModified\":\"2024-08-15T01:05:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/aws-s3-cross-account-replication\/\"},\"wordCount\":1115,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/AWS-S3-Cross-Account-Replication-vdba.jpg\",\"keywords\":[\"AWS\",\"Cloud\"],\"articleSection\":[\"AWS\",\"Blog\",\"Cloud\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/aws-s3-cross-account-replication\/\",\"url\":\"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/\",\"name\":\"AWS S3 Cross-Account Replication - VDBA\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/AWS-S3-Cross-Account-Replication-vdba.jpg\",\"datePublished\":\"2024-07-24T20:33:15+00:00\",\"dateModified\":\"2024-08-15T01:05:32+00:00\",\"description\":\"Learn how to use AWS Replication Rules to duplicate S3 bucket data across multiple accounts for enhanced data security and compliance.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/AWS-S3-Cross-Account-Replication-vdba.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/AWS-S3-Cross-Account-Replication-vdba.jpg\",\"width\":557,\"height\":291,\"caption\":\"AWS S3 Cross-Account Replication\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AWS S3 Cross-Account Replication\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtual-dba.com\/#website\",\"url\":\"https:\/\/virtual-dba.com\/\",\"name\":\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\",\"description\":\"Remote Database Administration\",\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtual-dba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/virtual-dba.com\/#organization\",\"name\":\"Virtual-DBA: Remote DBA | Remote Database Administration\",\"alternateName\":\"Virtual-DBA powered by XTIVIA\",\"url\":\"https:\/\/virtual-dba.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"width\":557,\"height\":291,\"caption\":\"Virtual-DBA: Remote DBA | Remote Database Administration\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/virtual_dba\",\"https:\/\/www.linkedin.com\/showcase\/36220649\/\",\"https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg\"],\"description\":\"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.\",\"email\":\"info@xtivia.com\",\"telephone\":\"8886853101\",\"legalName\":\"XTIVIA, Inc\",\"foundingDate\":\"1992-05-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"201\",\"maxValue\":\"500\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/ee3245e2c78a8099c94f5aa5b89fd17d\",\"name\":\"Shane Schlabach\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c33e8964ae14cc85183b496b2c659fd9f770f12b3597f5e40c1acccb669aa107?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c33e8964ae14cc85183b496b2c659fd9f770f12b3597f5e40c1acccb669aa107?s=96&d=mm&r=g\",\"caption\":\"Shane Schlabach\"},\"url\":\"https:\/\/virtual-dba.com\/author\/shane-schlabach\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"AWS S3 Cross-Account Replication - VDBA","description":"Learn how to use AWS Replication Rules to duplicate S3 bucket data across multiple accounts for enhanced data security and compliance.","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.xtivia.com\/blog\/aws-s3-cross-account-replication\/","og_locale":"en_US","og_type":"article","og_title":"AWS S3 Cross-Account Replication","og_description":"Learn how to use AWS Replication Rules to duplicate S3 bucket data across multiple accounts for enhanced data security and compliance.","og_url":"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2024-07-24T20:33:15+00:00","article_modified_time":"2024-08-15T01:05:32+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/AWS-S3-Cross-Account-Replication-vdba.jpg","type":"image\/jpeg"}],"author":"Shane Schlabach","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"Shane Schlabach","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/aws-s3-cross-account-replication\/"},"author":{"name":"Shane Schlabach","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/ee3245e2c78a8099c94f5aa5b89fd17d"},"headline":"AWS S3 Cross-Account Replication","datePublished":"2024-07-24T20:33:15+00:00","dateModified":"2024-08-15T01:05:32+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/aws-s3-cross-account-replication\/"},"wordCount":1115,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/AWS-S3-Cross-Account-Replication-vdba.jpg","keywords":["AWS","Cloud"],"articleSection":["AWS","Blog","Cloud"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/aws-s3-cross-account-replication\/","url":"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/","name":"AWS S3 Cross-Account Replication - VDBA","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#primaryimage"},"image":{"@id":"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/AWS-S3-Cross-Account-Replication-vdba.jpg","datePublished":"2024-07-24T20:33:15+00:00","dateModified":"2024-08-15T01:05:32+00:00","description":"Learn how to use AWS Replication Rules to duplicate S3 bucket data across multiple accounts for enhanced data security and compliance.","breadcrumb":{"@id":"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/AWS-S3-Cross-Account-Replication-vdba.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/AWS-S3-Cross-Account-Replication-vdba.jpg","width":557,"height":291,"caption":"AWS S3 Cross-Account Replication"},{"@type":"BreadcrumbList","@id":"https:\/\/www.xtivia.com\/blog\/aws-s3-cross-account-replication\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"AWS S3 Cross-Account Replication"}]},{"@type":"WebSite","@id":"https:\/\/virtual-dba.com\/#website","url":"https:\/\/virtual-dba.com\/","name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","description":"Remote Database Administration","publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtual-dba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/virtual-dba.com\/#organization","name":"Virtual-DBA: Remote DBA | Remote Database Administration","alternateName":"Virtual-DBA powered by XTIVIA","url":"https:\/\/virtual-dba.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","width":557,"height":291,"caption":"Virtual-DBA: Remote DBA | Remote Database Administration"},"image":{"@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/virtual_dba","https:\/\/www.linkedin.com\/showcase\/36220649\/","https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg"],"description":"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.","email":"info@xtivia.com","telephone":"8886853101","legalName":"XTIVIA, Inc","foundingDate":"1992-05-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"201","maxValue":"500"}},{"@type":"Person","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/ee3245e2c78a8099c94f5aa5b89fd17d","name":"Shane Schlabach","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c33e8964ae14cc85183b496b2c659fd9f770f12b3597f5e40c1acccb669aa107?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c33e8964ae14cc85183b496b2c659fd9f770f12b3597f5e40c1acccb669aa107?s=96&d=mm&r=g","caption":"Shane Schlabach"},"url":"https:\/\/virtual-dba.com\/author\/shane-schlabach\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/242446","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/users\/66"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=242446"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/242446\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/242454"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=242446"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=242446"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=242446"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}