LayersListItem

Details about an Lambda layer.

APIs.ioEngineeringPlatform

Properties

Name Type Description
LayerName object
LayerArn object
LatestMatchingVersion object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-layerslistitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LayersListItem",
  "title": "LayersListItem",
  "type": "object",
  "properties": {
    "LayerName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LayerName"
        },
        {
          "description": "The name of the layer."
        }
      ]
    },
    "LayerArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LayerArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the function layer."
        }
      ]
    },
    "LatestMatchingVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LayerVersionsListItem"
        },
        {
          "description": "The newest version of the layer."
        }
      ]
    }
  },
  "description": "Details about an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a>."
}