enum EStorageClass

This enumeration indicates every storage class a file in S3 could be in.


Properties

STANDARD = 0

The STANDARD storage class, which is the default storage class for S3. Durability 99.999999999%. Availability 99.99% over a given year.


REDUCED_REDUNDANCY = 1

REDUCED_REDUNDANCY provides the same availability as standard, but at a lower durability. Durability 99.99%; Availability 99.99% over a given year.


GLACIER = 2

The GLACIER storage is for object that are stored in Amazon Glacier. This storage class is for objects that are for archival purpose and get operations are rare. Durability 99.999999999%


STANDARD_INFREQUENT_ACCESS = 3

The STANDARD_IA storage is for infrequently accessed objects. This storage class is for objects that are long-lived and less frequently accessed, like backups and older data. Durability 99.999999999%; Availability 99.9% over a given year.


ONE_ZONE_IN_FREQUENT_ACCESS = 4

The ONEZONE_IA storage is for infrequently accessed objects. It is similiar to STANDARD_IA, but only stores object data within one Availablity Zone in a given region. Durability 99.999999999%; Availability 99% over a given year.


INTELLIGENT_TIERING = 5

IntelligentTiering makes it easy to lower your overall cost of storage by automatically placing data in the storage class that best matches the access patterns for the storage. With IntelligentTiering, you don’t need to define and manage individual policies for lifecycle data management or write code to transition objects between storage classes. Instead, you can use IntelligentTiering to manage transitions between Standard and S-IA without writing any application code. IntelligentTiering also manages transitions automatically to Glacier for long term archive in addition to S3 storage classes.


DEEP_ARCHIVE = 6

S3 Glacier Deep Archive provides secure, durable object storage class for long term data archival. It is the ideal storage class to make an archival, durable copy of data that rarely, if ever, needs to be accessed. It can be used as an offline backup for their most important data assets and to meet long-term retention needs.