Show / Hide Table of Contents

Class CfnBucketPropsMixin.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
object
CfnBucketPropsMixin.TieringProperty
Implements
CfnBucketPropsMixin.ITieringProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.S3
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnBucketPropsMixin.TieringProperty : CfnBucketPropsMixin.ITieringProperty
Syntax (vb)
Public Class CfnBucketPropsMixin.TieringProperty Implements CfnBucketPropsMixin.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.CfnPropertyMixins.AWS.S3;

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

Synopsis

Constructors

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.

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()

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.

public TieringProperty()
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.CfnPropertyMixins.AWS.S3;

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

Properties

AccessTier

S3 Intelligent-Tiering access tier.

public string? AccessTier { get; set; }
Property Value

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.

See: 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.

public double? Days { get; set; }
Property Value

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).

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

Implements

CfnBucketPropsMixin.ITieringProperty
Back to top Generated by DocFX