AWS Lambda · Schema

GetLayerVersionResponse

Details about a layer version

Properties

Name Type Description
Content object
LayerArn string
LayerVersionArn string
Description string
CreatedDate string
Version integer
CompatibleRuntimes array
LicenseInfo string
CompatibleArchitectures array
View JSON Schema on GitHub

JSON Schema

aws-lambda-get-layer-version-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GetLayerVersionResponse",
  "type": "object",
  "description": "Details about a layer version",
  "properties": {
    "Content": {
      "type": "object"
    },
    "LayerArn": {
      "type": "string"
    },
    "LayerVersionArn": {
      "type": "string"
    },
    "Description": {
      "type": "string"
    },
    "CreatedDate": {
      "type": "string"
    },
    "Version": {
      "type": "integer"
    },
    "CompatibleRuntimes": {
      "type": "array"
    },
    "LicenseInfo": {
      "type": "string"
    },
    "CompatibleArchitectures": {
      "type": "array"
    }
  }
}