Show / Hide Table of Contents

Class CfnFileSystem.LifecyclePolicyProperty

Describes a policy used by Lifecycle management that specifies when to transition files into and out of the EFS storage classes.

Inheritance
object
CfnFileSystem.LifecyclePolicyProperty
Implements
CfnFileSystem.ILifecyclePolicyProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EFS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFileSystem.LifecyclePolicyProperty : CfnFileSystem.ILifecyclePolicyProperty
Syntax (vb)
Public Class CfnFileSystem.LifecyclePolicyProperty Implements CfnFileSystem.ILifecyclePolicyProperty
Remarks

For more information, see Managing file system storage .

<ul></ul>

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-lifecyclepolicy.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.EFS;

             var lifecyclePolicyProperty = new LifecyclePolicyProperty {
                 TransitionToArchive = "transitionToArchive",
                 TransitionToIa = "transitionToIa",
                 TransitionToPrimaryStorageClass = "transitionToPrimaryStorageClass"
             };

Synopsis

Constructors

LifecyclePolicyProperty()

Describes a policy used by Lifecycle management that specifies when to transition files into and out of the EFS storage classes.

Properties

TransitionToArchive

The number of days after files were last accessed in primary storage (the Standard storage class) at which to move them to Archive storage.

TransitionToIa

The number of days after files were last accessed in primary storage (the Standard storage class) at which to move them to Infrequent Access (IA) storage.

TransitionToPrimaryStorageClass

Whether to move files back to primary (Standard) storage after they are accessed in IA or Archive storage.

Constructors

LifecyclePolicyProperty()

Describes a policy used by Lifecycle management that specifies when to transition files into and out of the EFS storage classes.

public LifecyclePolicyProperty()
Remarks

For more information, see Managing file system storage .

<ul></ul>

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-lifecyclepolicy.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.EFS;

             var lifecyclePolicyProperty = new LifecyclePolicyProperty {
                 TransitionToArchive = "transitionToArchive",
                 TransitionToIa = "transitionToIa",
                 TransitionToPrimaryStorageClass = "transitionToPrimaryStorageClass"
             };

Properties

TransitionToArchive

The number of days after files were last accessed in primary storage (the Standard storage class) at which to move them to Archive storage.

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

string

Remarks

Metadata operations such as listing the contents of a directory don't count as file access events.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-lifecyclepolicy.html#cfn-efs-filesystem-lifecyclepolicy-transitiontoarchive

TransitionToIa

The number of days after files were last accessed in primary storage (the Standard storage class) at which to move them to Infrequent Access (IA) storage.

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

string

Remarks

Metadata operations such as listing the contents of a directory don't count as file access events.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-lifecyclepolicy.html#cfn-efs-filesystem-lifecyclepolicy-transitiontoia

TransitionToPrimaryStorageClass

Whether to move files back to primary (Standard) storage after they are accessed in IA or Archive storage.

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

string

Remarks

Metadata operations such as listing the contents of a directory don't count as file access events.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-lifecyclepolicy.html#cfn-efs-filesystem-lifecyclepolicy-transitiontoprimarystorageclass

Implements

CfnFileSystem.ILifecyclePolicyProperty
Back to top Generated by DocFX