Skip to main content

lambda-layer-version-cleaner is a CDK Construct that helps you manage and automatically clean up old versions of AWS Lambda Layers.

Project description

NPM version PyPI version Release License

lambda-layer-version-cleaner

lambda-layer-version-cleaner is a CDK Construct that helps you manage and automatically clean up old versions of AWS Lambda Layers. It works with both JavaScript / TypeScript and Python CDK apps. Please note that this cleaner will only clean up versions of Lambda Layers in the region where it's deployed.

Installation

For JavaScript / TypeScript projects:

npm install lambda-layer-version-cleaner

For Python projects:

pip install lambda-layer-version-cleaner

Usage

To use the LambdaLayerVersionCleaner in your CDK project, simply import it and add it to your stack. Note that the cleaner will delete old versions of Lambda Layers even if they are associated with Lambda functions. Please ensure that you are aware of this behavior before using the cleaner in your project.

JavaScript / TypeScript

import * as cdk from 'aws-cdk-lib';
import * as events from 'aws-cdk-lib/aws-events';
import { LambdaLayerVersionCleaner } from 'lambda-layer-version-cleaner';

const app = new cdk.App();
const stack = new cdk.Stack(app, 'ExampleStack');

new LambdaLayerVersionCleaner(stack, 'LambdaLayerVersionCleaner', {
  retainVersions: 10,
  layerCleanerSchedule: events.Schedule.rate(cdk.Duration.days(7)),
});

Python

from aws_cdk import core as cdk
from aws_cdk.aws_events import Schedule
from aws_cdk.core import Duration
from lambda_layer_version_cleaner import LambdaLayerVersionCleaner

app = cdk.App()
stack = cdk.Stack(app, "ExampleStack")

LambdaLayerVersionCleaner(stack, "LambdaLayerVersionCleaner",
    retain_versions=10,
    layer_cleaner_schedule=Schedule.rate(Duration.days(7))
)

app.synth()

Configuration

The LambdaLayerVersionCleaner construct takes two required parameters and two optional parameters:

  • retainVersions: The number of layer versions to retain, specified as a positive integer. The cleaner will delete older versions beyond this count. Note that if a Layer has only one version, it won't be deleted.
  • layerCleanerSchedule: The schedule for running the cleanup process.

The optional parameters are:

  • handlerTimeout (default: cdk.Duration.minutes(15)): Maximum allowed runtime for the Lambda function.
  • handlerMemorySize (default: 256): Amount of memory allocated to the Lambda function.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lambda-layer-version-cleaner-0.0.10.tar.gz (39.9 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file lambda-layer-version-cleaner-0.0.10.tar.gz.

File metadata

File hashes

Hashes for lambda-layer-version-cleaner-0.0.10.tar.gz
Algorithm Hash digest
SHA256 604907e753a6cc140df389f5d17d1acc43cb24d3190efce8452c858a5873807e
MD5 65cb7bb070ee32f64bee5bc372886397
BLAKE2b-256 d96afaa90152026148021cca7bd556fcb2a355c609ea22750a88f42188e6e0e3

See more details on using hashes here.

File details

Details for the file lambda_layer_version_cleaner-0.0.10-py3-none-any.whl.

File metadata

File hashes

Hashes for lambda_layer_version_cleaner-0.0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 d8ac5598444d1a903503a73c4e165c829d99f80c4a6d7a591e65951be506dbd0
MD5 75e44bb1924db7fd6c58ef99eb57e32e
BLAKE2b-256 cad67e2a54dd2d49986560f7eec47a617b0ccf83f43956edcb3e9a501f996454

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page