Show / Hide Table of Contents

Interface CfnBucket.ITieringProperty

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.

Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.AWS.S3.dll
Syntax (csharp)
public interface ITieringProperty
Syntax (vb)
Public Interface ITieringProperty
Remarks

Link: 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;

TieringProperty tieringProperty = new TieringProperty {
    AccessTier = "accessTier",
    Days = 123
};

Synopsis

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.

Properties

AccessTier

S3 Intelligent-Tiering access tier.

string AccessTier { get; }
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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-tiering.html#cfn-s3-bucket-tiering-accesstier

Days

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

double Days { get; }
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).

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-tiering.html#cfn-s3-bucket-tiering-days

Back to top Generated by DocFX