Monday, July 19, 2021

AWS: Storage: S3 Glacier

S3 Glacier is extremely low-cost storage service that provides durable storage with security storage for data like backups & archives i.e. storage service optimized for infrequently used data or cold data. Data can be stored for days, months, years or decades. 

S3 Glacier is a REST based service and below are a few supported data model resources

  • Vault: Container with unique address for storing archives

  • Archive: Archive can be a photo, video or document and is a base unit of storage with unique ID

  • Job: Jobs can perform query on archive (select), retrieve it (archive-retrieval) or get an inventory (inventory-retrieval) of archives of a vault

  • Notification Configuration: Because job takes time to complete S3 Glacier supports notifications. You can configure Vault to send notification to SNS when the job is complete

Data encryption in-transit is done by using SSL or client side encryption, whereas data at-rest is automatically encrypted using AES-256.


No comments:

SpringBoot: Features: SpringApplication

Below are a few SpringBoot features corresponding to SpringApplication StartUp Logging ·          To add additional logging during startup...