AwsS3BucketLifecycleTransitionArgs
interface AwsS3BucketLifecycleTransitionArgs {
date?: string;
days?: number;
storageClass: string;
}Lifecycle transition settings for current object versions.
Example
CODE
const transition: AwsS3BucketLifecycleTransitionArgs = {
storageClass: 'STANDARD_IA',
days: 30,
};Properties
date: string
Transition at this date.
Provide exactly one of days or date.
days: number
Transition after this many days.
Provide exactly one of days or date.
storageClass: string
Target storage class.