Ao usar o AWS re:Post, você concorda com os AWS re:Post Termos de uso

S3 bucket lifecycle policy through CLI

0

I want to change the storage class of a folder in S3 through the CLI.

I created a lifecycle-policy.json

{
  "Rules": [
    {
      "ID": "Move to Glacier Instant Retrieval",
      "Status": "Enabled",
      "Transitions": [
        {
          "Days": 0,
          "StorageClass": "GLACIER_INSTANT_RETRIEVAL"
        }
      ]
    }
  ]
}

I then ran the following command

aws s3api put-bucket-lifecycle-configuration --bucket backup-glacier-instant-retrieval --lifecycle-configuration file://path-to-file/lifecycle-policy.json

This was the output error

An error occurred (MalformedXML) when calling the PutBucketLifecycleConfiguration operation: The XML you provided was not well-formed or did not validate against our published schema

Any help on what I'm doing wrong?

3 Respostas
1

Hello.

Please change the JSON as below.
"StorageClass" is "GLACIER_IR".
I also think you need to set ""Filter": {}" to apply the rule to the entire bucket.
https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3api/put-bucket-lifecycle-configuration.html

{
    "Rules": [
      {
        "ID": "Move to Glacier Instant Retrieval",
        "Filter": {},
        "Status": "Enabled",
        "Transitions": [
          {
            "Days": 0,
            "StorageClass": "GLACIER_IR"
          }
        ]
      }
    ]
  }
profile picture
ESPECIALISTA
respondido há 6 meses
profile picture
ESPECIALISTA
avaliado há 6 meses
profile pictureAWS
ESPECIALISTA
avaliado há 6 meses
  • Using the above JSON, a lifecycle rule will be created as shown below. a

0

I'm not sure if there are other issues, but I can see two. The storage class should be GLACIER_IR instead of GLACIER_INSTANT_RETRIEVAL, and the Days parameter has a minimum value of 1.

ESPECIALISTA
respondido há 6 meses
0

Hello, Thanks for detail info on the issue you faced. After a research I came to know that your code has some issue with format or structure. here is the new code in xml format.

<LifecycleConfiguration>
    <Rule>
        <ID>Move to Glacier Instant Retrieval</ID>
        <Status>Enabled</Status>
        <Transition>
            <Days>0</Days>
            <StorageClass>GLACIER_INSTANT_RETRIEVAL</StorageClass>
        </Transition>
    </Rule>
</LifecycleConfiguration>

save this file in your local machine and the following command aws s3api put-bucket-lifecycle-configuration --bucket backup-glacier-instant-retrieval --lifecycle-configuration file://path-to-file/lifecycle-policy.xml If you want to change the storage class of an existing objects use this command aws s3 cp s3://backup-glacier-instant-retrieval/ s3://backup-glacier-instant-retrieval/ --recursive --storage-class GLACIER_INSTANT_RETRIEVAL

Thanks

profile picture
ESPECIALISTA
respondido há 6 meses
profile picture
ESPECIALISTA
avaliado há 6 meses

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas