示例对象生命周期策略:多个规则 - AWS元素 MediaStore

终止支持通知:2025 年 11 月 13 日, AWS 将停止对 AWS Element MediaStore al 的支持。2025 年 11 月 13 日之后,您将无法再访问 MediaStore 控制台或 MediaStore 资源。如需更多信息,请访问此博客文章

本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。

示例对象生命周期策略:多个规则

以下策略会指示 MediaStore 执行以下操作:

  • 将在 AwardsShow 文件夹中存储达到 30 天的对象移动到不经常访问 (IA) 存储类中。

  • 删除文件扩展名为 m3u8 且在 Football 文件夹中存储达到 20 秒的对象

  • 删除在 April 文件夹中存储达到 10 天的对象

  • 删除文件扩展名为 ts 且在 Program 文件夹中存储达到 5 天的对象

{ "rules": [ { "definition": { "path": [ {"prefix": "AwardsShow/"} ], "days_since_create": [ {"numeric": [ ">=" , 30 ]} ] }, "action": "ARCHIVE" }, { "definition": { "path": [ {"wildcard": "Football/*.m3u8"} ], "seconds_since_create": [ {"numeric": [ ">", 20 ]} ] }, "action": "EXPIRE" }, { "definition": { "path": [ {"prefix": "April"} ], "days_since_create": [ {"numeric": [ ">", 10 ]} ] }, "action": "EXPIRE" }, { "definition": { "path": [ {"wildcard": "Program/*.ts"} ], "days_since_create": [ {"numeric": [ ">", 5 ]} ] }, "action": "EXPIRE" } ] }