Skip to content

Commit

Permalink
fixing readme
Browse files Browse the repository at this point in the history
  • Loading branch information
shikha372 committed Dec 11, 2024
1 parent 4af5370 commit 53384c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/aws-cdk-lib/aws-s3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ const sourceBucket = new s3.Bucket(this, 'SourceBucket', {
});

//Add permissions to the destination after replication role is created
if (sourcebucket.replicationRoleArn) {
destinationBucket.addReplicationPolicy(sourcebucket.replicationRoleArn, true, '111111111111');
if (sourceBucket.replicationRoleArn) {
destinationBucket.addReplicationPolicy(sourceBucket.replicationRoleArn, true, '111111111111');
}
```

0 comments on commit 53384c9

Please sign in to comment.