AwsS3BucketLifecycleNoncurrentVersionTransitionArgs

interface AwsS3BucketLifecycleNoncurrentVersionTransitionArgs { newerNoncurrentVersions?: number; noncurrentDays: number; storageClass: string; }

Lifecycle transition settings for non-current object versions.

Example

CODE
const noncurrentTransition: AwsS3BucketLifecycleNoncurrentVersionTransitionArgs = {
  storageClass: 'GLACIER',
  noncurrentDays: 30,
};

Properties

newerNoncurrentVersions: number

Optional number of newer non-current versions to retain before transition.

noncurrentDays: number

Days until non-current versions transition.

storageClass: string

Target storage class.