interface LifecyclePolicyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EFS.CfnFileSystem.LifecyclePolicyProperty |
Java | software.amazon.awscdk.services.efs.CfnFileSystem.LifecyclePolicyProperty |
Python | aws_cdk.aws_efs.CfnFileSystem.LifecyclePolicyProperty |
TypeScript | @aws-cdk/aws-efs » CfnFileSystem » LifecyclePolicyProperty |
Describes a policy used by EFS lifecycle management and EFS Intelligent-Tiering that specifies when to transition files into and out of the file system's Infrequent Access (IA) storage class.
For more information, see EFS Intelligent‐Tiering and EFS Lifecycle Management .
- Each
LifecyclePolicyobject can have only a single transition. This means that in a request body,LifecyclePoliciesmust be structured as an array ofLifecyclePolicyobjects, one object for each transition,TransitionToIA,TransitionToPrimaryStorageClass.- See the AWS::EFS::FileSystem examples for the correct
LifecyclePolicystructure. Do not use the syntax shown on this page.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as efs from '@aws-cdk/aws-efs';
const lifecyclePolicyProperty: efs.CfnFileSystem.LifecyclePolicyProperty = {
transitionToIa: 'transitionToIa',
transitionToPrimaryStorageClass: 'transitionToPrimaryStorageClass',
};
Properties
| Name | Type | Description |
|---|---|---|
| transition | string | Describes the period of time that a file is not accessed, after which it transitions to IA storage. |
| transition | string | Describes when to transition a file from IA storage to primary storage. |
transitionToIa?
Type:
string
(optional)
Describes the period of time that a file is not accessed, after which it transitions to IA storage.
Metadata operations such as listing the contents of a directory don't count as file access events.
transitionToPrimaryStorageClass?
Type:
string
(optional)
Describes when to transition a file from IA storage to primary storage.
Metadata operations such as listing the contents of a directory don't count as file access events.

.NET
Java
Python
TypeScript