gpt4 book ai didi

amazon-web-services - 如何通过 CloudFormation 创建 S3 存储桶并默认启用传输加速?

转载 作者:行者123 更新时间:2023-12-04 08:18:56 25 4
gpt4 key购买 nike

我的无服务器项目创建了一个 S3 存储桶,我希望它默认启用传输加速。

我已经尝试过这个:

"UploaderS3Bucket": {
"Type": "AWS::S3::Bucket",
"Properties": {
"BucketName": "${uploaderBucket}-${aws-environment-lower}-${stage}",
"Accelerate": "Enabled",
"CorsConfiguration": {
"CorsRules": [
{
"AllowedHeaders": [
"*"
],
"AllowedMethods": [
"PUT",
"POST",
"GET",
"HEAD"
],
"AllowedOrigins": [
"*"
],
"ExposedHeaders": [
"Etag"
],
"MaxAge": "3000"
}
]
}
}

但这不是一个被接受的属性,我在 aws 文档中找不到任何合适的内容:https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html

有没有办法在资源部署过程中做到这一点?

最佳答案

CloudFormation(尚)不支持在 S3 存储桶上设置加速。这些事情通常会滞后几周/几个月。

更新通常在 what's new 上公布页面和文档(您已链接)中。

我为 CFN 团队感到难过 - 他们总是在追赶。

关于amazon-web-services - 如何通过 CloudFormation 创建 S3 存储桶并默认启用传输加速?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39120750/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com