Properties
| Name | Type | Description |
|---|---|---|
| Arn | object | |
| CodeSize | object | |
| SigningProfileVersionArn | object | |
| SigningJobArn | object |
JSON Schema
{
"$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>."
}