AWS Lambda · JSON Structure

Aws Lambda Layer Structure

Type: object Properties: 4

Layer is a JSON Structure definition published by AWS Lambda, describing 4 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

Arn CodeSize SigningProfileVersionArn SigningJobArn

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "Layer",
  "type": "object",
  "properties": {
    "Arn": {
      "type": "string"
    },
    "CodeSize": {
      "type": "integer"
    },
    "SigningProfileVersionArn": {
      "type": "string"
    },
    "SigningJobArn": {
      "type": "string"
    }
  }
}