配置的同一条生命周期规则中,或相同前缀的多条规则中,NoncurrentVersionTransitions
字段多个 StorageClass
参数值有重复。
配置的同一条生命周期规则中,或相同前缀的多条规则中,NoncurrentVersionTransitions
字段多个 StorageClass
参数值有重复。
场景一:同一条规则内同时配置了 30 天转低频, 40 天转低频的沉降规则。
{ "Rules": [{ "ID": "id", "Prefix": "prefix", "Status": "Enabled", "NoncurrentVersionTransitions": [ { "StorageClass": "IA", "NonCurrentDays": 30 }, { "StorageClass": "IA", "NonCurrentDays": 40 } ] }] }
场景二:多条相同前缀的规则,分别配置了 30 天转低频存储的沉降规则和 40 天转低频存储的沉降规则。
{ "Rules": [ { "ID": "id", "Prefix": "prefix", "Status": "Enabled", "NoncurrentVersionTransitions": [ { "StorageClass": "IA", "NonCurrentDays": 30 } ] }, { "ID": "id1", "Prefix": "prefix", "Status": "Enabled", "NoncurrentVersionTransitions": [ { "StorageClass": "IA", "NonCurrentDays": 40 } ] } ] }
在 NoncurrentVersionTransitions
的多个配置值中 StorageClass
字段保持唯一。