Specifies the Storage Class of of an S3 object. Possible values are:
  • ReducedRedundancy: provides a 99.99% durability guarantee
  • Standard: provides a 99.999999999% durability guarantee

Namespace: Amazon.S3.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public enum S3StorageClass
Public Enumeration S3StorageClass
public enum class S3StorageClass

Members

MemberValueDescription
Standard0
The STANDARD storage class, which is the default storage class for S3 objects. Provides a 99.999999999% durability guarantee.
ReducedRedundancy1
The REDUCED_REDUNDANCY storage class for S3 objects. This provides a reduced (99.99%) durability guarantee at a lower cost as compared to the STANDARD storage class. Use this storage class for non-mission critical data or for data that doesn’t require the higher level of durability that S3 provides with the STANDARD storage class.

See Also