CodeSigningPolicies

Code signing configuration policies specify the validation failure action for signature mismatch or expiry.

APIs.ioEngineeringPlatform

Properties

Name Type Description
UntrustedArtifactOnDeployment object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-codesigningpolicies-schema.json Raw ↑
{
  "$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": "<p>Code signing configuration policy for deployment validation failure. If you set the policy to <code>Enforce</code>, Lambda blocks the deployment request if signature validation checks fail. If you set the policy to <code>Warn</code>, Lambda allows the deployment and creates a CloudWatch log. </p> <p>Default value: <code>Warn</code> </p>"
        }
      ]
    }
  },
  "description": "Code signing configuration <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html#config-codesigning-policies\">policies</a> specify the validation failure action for signature mismatch or expiry."
}