Registry /
aws / cdk-serverless-clamscan
Install & Compatibility
Where this runs
tested against v2.13.47 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 361.7MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 17.9s · import 0.000s · 362MB
399MB installed
● package 399MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
ServerlessClamscan
✓ from cdk_serverless_clamscan import ServerlessClamscan
✗ from cdk_serverless_clamscan import ClamScan
ServerlessClamscanLoggingProps
✓ from cdk_serverless_clamscan import ServerlessClamscanLoggingProps
ServerlessClamscanProps
✓ from cdk_serverless_clamscan import ServerlessClamscanProps
Deploys the serverless ClamAV scanning infrastructure in a CDK stack.
from constructs import Construct
from aws_cdk import Stack
from cdk_serverless_clamscan import ClamScan, ClamScanProps
class ScanStack(Stack):
def __init__(self, scope: Construct, id: str, **kwargs):
super().__init__(scope, id, **kwargs)
ClamScan(
self,
'ClamScan',
props=ClamScanProps(
definition_pipeline_schedule='rate(1 hour)'
)
)
Upgrade
Version history
2.13.47latest on PyPI · released Jan 16, 2026
Audit
Dependencies
aws-cdk-librequiredThe construct extends CDK constructs and requires CDK to deploy.