SnapStart

The function's Lambda SnapStart setting. Set ApplyOn to PublishedVersions to create a snapshot of the initialized execution environment when you publish a function version.

SnapStart is supported with the java11 runtime. For more information, see Improving startup performance with Lambda SnapStart.

APIs.ioEngineeringPlatform

Properties

Name Type Description
ApplyOn object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-snapstart-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SnapStart",
  "title": "SnapStart",
  "type": "object",
  "properties": {
    "ApplyOn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SnapStartApplyOn"
        },
        {
          "description": "Set to <code>PublishedVersions</code> to create a snapshot of the initialized execution environment when you publish a function version."
        }
      ]
    }
  },
  "description": "<p>The function's Lambda SnapStart setting. Set <code>ApplyOn</code> to <code>PublishedVersions</code> to create a snapshot of the initialized execution environment when you publish a function version.</p> <p>SnapStart is supported with the <code>java11</code> runtime. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html\">Improving startup performance with Lambda SnapStart</a>.</p>"
}