Define bucket type in cloudformation

0

Is there no way in Cloudformation to define the type of S# bucket you want? Standard, OneZone-IA.... I do not see it in the AWS::S3::Bucket resource and no matter how I google it I get nothing.

질문됨 일 년 전191회 조회
2개 답변
1

Storage classes are Object level settings, not Bucket level.

profile pictureAWS
전문가
kentrad
답변함 일 년 전
1

Hi,

there is no bucket type, rather a storage class type to move objects from a class to another via life cycle rules:

Resources:
  BucketExample:
    Type: AWS::S3::Bucket
    Properties:
      BucketName: bucket-name
      LifecycleConfiguration:
        Rules:
          - Id: MoveToGlacier
            Status: Enabled
            Transition:
              Days: 120
              StorageClass: GLACIER
profile picture
전문가
답변함 일 년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠