An Azure service that stores unstructured data in the cloud as blobs.
@Tata, Aparna In addition to above, you can use Azure Blob Storage Lifecycle Management or SAS tokens.
Lifecycle management policies allow you to automate data retention and expiration by defining rules that automatically delete blobs or move them to cooler storage tiers after a specific time period. You can configure these policies through the Azure portal or programmatically using Azure SDKs.
SAS tokens provide a way to grant temporary access to a blob by specifying an expiration time. This is useful if you need a limited-time link to a file and want the file to be inaccessible after a certain time.
For automating the deletion or movement of blobs after a certain period, Azure Blob Storage Lifecycle Management is the best option whereas for controlled temporary access to a blob, a Shared Access Signature (SAS) with an expiration date is ideal.
Let me know if you have any questions.