interface LifecycleResourceTypeProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Backup.CfnBackupPlan.LifecycleResourceTypeProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbackup#CfnBackupPlan_LifecycleResourceTypeProperty | 
  Java | software.amazon.awscdk.services.backup.CfnBackupPlan.LifecycleResourceTypeProperty | 
  Python | aws_cdk.aws_backup.CfnBackupPlan.LifecycleResourceTypeProperty | 
  TypeScript  | aws-cdk-lib » aws_backup » CfnBackupPlan » LifecycleResourceTypeProperty | 
Specifies an object containing an array of Transition objects that determine how long in days before a recovery point transitions to cold storage or is deleted.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_backup as backup } from 'aws-cdk-lib';
const lifecycleResourceTypeProperty: backup.CfnBackupPlan.LifecycleResourceTypeProperty = {
  deleteAfterDays: 123,
  moveToColdStorageAfterDays: 123,
  optInToArchiveForSupportedResources: false,
};
Properties
| Name | Type | Description | 
|---|---|---|
| delete | number | The number of days after creation that a recovery point is deleted. | 
| move | number | The number of days after creation that a recovery point is moved to cold storage. | 
| opt | boolean | IResolvable | If the value is true, your backup plan transitions supported resources to archive (cold) storage tier in accordance with your lifecycle settings. | 
deleteAfterDays?
Type:
number
(optional)
The number of days after creation that a recovery point is deleted.
This value must be at least 90 days after the number of days specified in MoveToColdStorageAfterDays .
moveToColdStorageAfterDays?
Type:
number
(optional)
The number of days after creation that a recovery point is moved to cold storage.
optInToArchiveForSupportedResources?
Type:
boolean | IResolvable
(optional)
If the value is true, your backup plan transitions supported resources to archive (cold) storage tier in accordance with your lifecycle settings.

 .NET
 Go
 Java
 Python
 TypeScript