{ "$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 Lambda layer." }