-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
s3: bucket replication #1680
Comments
Is the bucket replication planned in the near future? |
Would be great to see this landing in CDK. |
Any progress on issue? |
Also running into the same issue, any update? |
Also running into the same issue. Any progress on this? |
Blocked we had to do a work around for our client for this. Please update. |
Also really need this, another upvote for priority :) |
We could really use this too, cross-region replication is a requirement for us |
We used heavily cdk for development and this is one of the core feature requiremet most of the people has. Another upvote for priority |
Need replication for cross accounts. |
I was able to use |
Planning to heavily use replication, any update on this issue? |
Would be great to have this available on the high level import { Construct } from '@aws-cdk/core';
import { Bucket, BucketProps, CfnBucket, CfnBucketProps } from '@aws-cdk/aws-s3';
export class BucketWithReplication extends Bucket {
constructor(
scope: Construct,
id: string,
props: BucketProps & Required<Pick<CfnBucketProps, 'replicationConfiguration'>>
) {
const { replicationConfiguration, ...bucketProps } = props;
super(scope, id, bucketProps);
(this.node.defaultChild as CfnBucket).replicationConfiguration = replicationConfiguration;
}
} |
PR #184 has some initial work around S3 bucket replication
The text was updated successfully, but these errors were encountered: