diff --git a/modules/integration/ddb-to-opensearch/stack.py b/modules/integration/ddb-to-opensearch/stack.py index 442ea9bb..1fb71261 100755 --- a/modules/integration/ddb-to-opensearch/stack.py +++ b/modules/integration/ddb-to-opensearch/stack.py @@ -115,14 +115,14 @@ def __init__( id=f"{dep_mod}-requests-aws4auth", entry="layers/", layer_version_name=f"{dep_mod}-requests-aws4auth", - compatible_runtimes=[lambda_.Runtime.PYTHON_3_7], + compatible_runtimes=[lambda_.Runtime.PYTHON_3_9], ) lambda_trigger = PythonFunction( self, "DDBtoOSTriggerLambda", entry="lambda", - runtime=lambda_.Runtime.PYTHON_3_7, + runtime=lambda_.Runtime.PYTHON_3_9, index="index.py", handler="handler", timeout=Duration.minutes(1),