Layer

An Lambda layer.

APIs.ioEngineeringPlatform

Properties

Name Type Description
Arn object
CodeSize object
SigningProfileVersionArn object
SigningJobArn object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-layer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Layer",
  "title": "Layer",
  "type": "object",
  "properties": {
    "Arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LayerVersionArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the function layer."
        }
      ]
    },
    "CodeSize": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The size of the layer archive in bytes."
        }
      ]
    },
    "SigningProfileVersionArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) for a signing profile version."
        }
      ]
    },
    "SigningJobArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of a signing job."
        }
      ]
    }
  },
  "description": "An <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a>."
}