Class: Aws::S3::Types::Tiering
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Tiering
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_tier ⇒ String
S3 Intelligent-Tiering access tier.
-
#days ⇒ Integer
The number of consecutive days of no access after which an object will be eligible to be transitioned to the corresponding tier.
Instance Attribute Details
#access_tier ⇒ String
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.
[1]: docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access
16793 16794 16795 16796 16797 16798 |
# File 'lib/aws-sdk-s3/types.rb', line 16793 class Tiering < Struct.new( :days, :access_tier) SENSITIVE = [] include Aws::Structure end |
#days ⇒ Integer
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).
16793 16794 16795 16796 16797 16798 |
# File 'lib/aws-sdk-s3/types.rb', line 16793 class Tiering < Struct.new( :days, :access_tier) SENSITIVE = [] include Aws::Structure end |