forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FunctionZipfileRuntimeExists.py
31 lines (24 loc) · 1.02 KB
/
FunctionZipfileRuntimeExists.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from __future__ import annotations
from typing import Any
import cfnlint.data.schemas.extensions.aws_lambda_function
from cfnlint.jsonschema import ValidationError
from cfnlint.rules.jsonschema.CfnLintJsonSchema import CfnLintJsonSchema, SchemaDetails
class FunctionZipfileRuntimeExists(CfnLintJsonSchema):
id = "E3678"
shortdesc = "Using the ZipFile attribute requires a runtime to be specified"
description = "Using the ZipFile attribute requires a runtime to be specified"
tags = ["resources"]
def __init__(self) -> None:
super().__init__(
keywords=["Resources/AWS::Lambda::Function/Properties"],
schema_details=SchemaDetails(
module=cfnlint.data.schemas.extensions.aws_lambda_function,
filename="zipfile_runtime_exists.json",
),
)
def message(self, instance: Any, err: ValidationError) -> str:
return err.message