{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CodeSigningPolicies", "title": "CodeSigningPolicies", "type": "object", "properties": { "UntrustedArtifactOnDeployment": { "allOf": [ { "$ref": "#/components/schemas/CodeSigningPolicy" }, { "description": "

Code signing configuration policy for deployment validation failure. If you set the policy to Enforce, Lambda blocks the deployment request if signature validation checks fail. If you set the policy to Warn, Lambda allows the deployment and creates a CloudWatch log.

Default value: Warn

" } ] } }, "description": "Code signing configuration policies specify the validation failure action for signature mismatch or expiry." }