Cloudformation:在 S3 存储桶上遇到不受支持的属性 DeletionPolicy

SRJ*_*SRJ 2 amazon-s3 amazon-web-services aws-cloudformation

我正在使用下面的代码片段来S3 Bucket配置Cloudformation

我想要RetainS3 存储桶,因此使用DeletionPolicy.

Resources:
  S3Bucket:
    Type: 'AWS::S3::Bucket'
    Condition: ShouldCreateS3Bucket
    Properties:
      BucketName: !Ref S3BackupBucketName
      DeletionPolicy: Retain
Run Code Online (Sandbox Code Playgroud)

但是当我部署这个模板时我收到错误

Encountered unsupported property DeletionPolicy
Run Code Online (Sandbox Code Playgroud)

我提到了文档和DeletionPolicy属性存在

我应该如何解决这个问题?

提前致谢。

Mar*_*cin 5

它应该处于S3Bucket水平状态,而不是Properties

Resources:
  S3Bucket:
    Type: 'AWS::S3::Bucket'
    Condition: ShouldCreateS3Bucket
    DeletionPolicy: Retain 
    Properties:
      BucketName: !Ref S3BackupBucketName
Run Code Online (Sandbox Code Playgroud)