You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::S3::Types::Tiering

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Tiering as input to an Aws::Client method, you can use a vanilla Hash:

{
  days: 1, # required
  access_tier: "ARCHIVE_ACCESS", # required, accepts ARCHIVE_ACCESS, DEEP_ARCHIVE_ACCESS
}

The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without additional operational overhead.

Instance Attribute Summary collapse

Instance Attribute Details

#access_tierString

S3 Intelligent-Tiering access tier. See Storage class for automatically optimizing frequently and infrequently accessed objects for a list of access tiers in the S3 Intelligent-Tiering storage class.

Returns:

  • (String)

    S3 Intelligent-Tiering access tier.

#daysInteger

The number of consecutive days of no access after which an object will be eligible to be transitioned to the corresponding tier. The minimum number of days specified for Archive Access tier must be at least 90 days and Deep Archive Access tier must be at least 180 days. The maximum can be up to 2 years (730 days).

Returns:

  • (Integer)

    The number of consecutive days of no access after which an object will be eligible to be transitioned to the corresponding tier.