interface TieringProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.S3.CfnBucket.TieringProperty |
Java | software.amazon.awscdk.services.s3.CfnBucket.TieringProperty |
Python | aws_cdk.aws_s3.CfnBucket.TieringProperty |
TypeScript | @aws-cdk/aws-s3 » CfnBucket » TieringProperty |
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.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as s3 from '@aws-cdk/aws-s3';
const tieringProperty: s3.CfnBucket.TieringProperty = {
accessTier: 'accessTier',
days: 123,
};
Properties
Name | Type | Description |
---|---|---|
access | string | S3 Intelligent-Tiering access tier. |
days | number | The number of consecutive days of no access after which an object will be eligible to be transitioned to the corresponding tier. |
accessTier
Type:
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.
days
Type:
number
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).