Show / Hide Table of Contents

Interface CfnFileSystem.ILifecyclePolicyProperty

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

Namespace: Amazon.CDK.AWS.EFS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnFileSystem.ILifecyclePolicyProperty
Syntax (vb)
Public Interface 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

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.

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.

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

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

string? TransitionToPrimaryStorageClass { get; }
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

Back to top Generated by DocFX