{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FunctionCodeLocation", "title": "FunctionCodeLocation", "type": "object", "properties": { "RepositoryType": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The service that's hosting the file." } ] }, "Location": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "A presigned URL that you can use to download the deployment package." } ] }, "ImageUri": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "URI of a container image in the Amazon ECR registry." } ] }, "ResolvedImageUri": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The resolved URI for the image." } ] } }, "description": "Details about a function's deployment package." }