End of support notice: On November 13, 2025, AWS will discontinue support
for AWS Elemental MediaStore. After November 13, 2025, you will no longer be able to access the MediaStore console
or MediaStore resources. For more information, visit this
blog post
Example object lifecycle policy: Multiple rules
The following policy specifies that MediaStore does the following:
-
Move objects that are stored in the
AwardsShowfolder to the infrequent access (IA) storage class after 30 days -
Delete objects that have a file extension of
m3u8and are stored in theFootballfolder after 20 seconds -
Delete objects that are stored in the
Aprilfolder after 10 days -
Delete objects that have a file extension of
tsand are stored in theProgramfolder after 5 days
{ "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" } ] }