Properties
| Name | Type | Description |
|---|---|---|
| Arn | string | The ARN of the function layer |
| CodeSize | integer | The size of the layer archive in bytes |
| SigningProfileVersionArn | string | The ARN of a signing profile version |
| SigningJobArn | string | The ARN of a signing job |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Layer",
"type": "object",
"description": "An Lambda layer attached to a function",
"properties": {
"Arn": {
"type": "string",
"description": "The ARN of the function layer"
},
"CodeSize": {
"type": "integer",
"description": "The size of the layer archive in bytes"
},
"SigningProfileVersionArn": {
"type": "string",
"description": "The ARN of a signing profile version"
},
"SigningJobArn": {
"type": "string",
"description": "The ARN of a signing job"
}
}
}