Class 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.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class TieringProperty : Object, CfnBucket.ITieringProperty
Syntax (vb)
Public Class TieringProperty
Inherits Object
Implements CfnBucket.ITieringProperty
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-tiering.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3;
var tieringProperty = new TieringProperty {
AccessTier = "accessTier",
Days = 123
};
Synopsis
Constructors
TieringProperty() |
Properties
AccessTier | S3 Intelligent-Tiering access tier. |
Days | The number of consecutive days of no access after which an object will be eligible to be transitioned to the corresponding tier. |
Constructors
TieringProperty()
public TieringProperty()
Properties
AccessTier
S3 Intelligent-Tiering access tier.
public string AccessTier { get; set; }
Property Value
System.String
Remarks
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
The number of consecutive days of no access after which an object will be eligible to be transitioned to the corresponding tier.
public double Days { get; set; }
Property Value
System.Double
Remarks
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).