# 설정 확인
# aws s3api get-bucket-lifecycle-configuration --bucket BUCKET_NAME
{
"Rules": [
{
"ID": "Convert IA",
"Filter": {
"Prefix": ""
},
"Status": "Enabled",
"Transitions": [
{
"Days": 30,
"StorageClass": "STANDARD_IA"
}
],
"AbortIncompleteMultipartUpload": {
"DaysAfterInitiation": 7
}
}
]
}
|
# 설정 삭제
# aws s3api delete-bucket-lifecycle --bucket BUCKET_NAME
|
# 설정 추가
# aws s3api put-bucket-lifecycle-configuration --bucket BUCKET_NAME --lifecycle-configuration file://LIFECYCLE_POLICY.JSON
|
'AWS' 카테고리의 다른 글
EC2 - curl 명령으로 public IP 확인하는 방법 (0) | 2020.06.11 |
---|---|
[awscli] 볼륨 출력 (0) | 2019.07.27 |
[Python] credentials 파일 내에 profile 사용하는 방법 (0) | 2019.07.15 |
[Python] 미사용 Elastic IP 확인 및 릴리즈 (0) | 2019.07.15 |
[Python] EC2 인스턴스의 Public IP 와 Ip Owner ID 확인 (0) | 2019.07.15 |