Get right to it, here is the code
Python CDK code for configuring CORS on an S3 bucket.
bucket = s3.Bucket(self, "myBucket",
cors=[
s3.CorsRule(
allowed_headers=[CORS_headers],
allowed_methods=[s3.HttpMethods.PUT, s3.HttpMethods.POST, s3.HttpMethods.GET, s3.HttpMethods.DELETE],
allowed_origins=[CORS_url]
)
]
)
A list of the HTTP methods which can be configured can be found here in the aws_cdk.aws_s3.HttpMethods docs
Relevant docs:
- https://docs.aws.amazon.com/cdk/api/latest/python/aws_cdk.aws_s3/Bucket.html
- https://docs.aws.amazon.com/AmazonS3/latest/userguide/ManageCorsUsing.html
More CDK or AWS Serverless Questions?
Feel free to leave a comment here or hit us up on LinkedIn.
Want to learn more about how SignetSeal can help make your chats more secure? Read more about us on our website SignetSeal.com
Top comments (0)