AWS Lambda · JSON Structure

Aws Lambda Function Code Structure

Type: object Properties: 5

FunctionCode is a JSON Structure definition published by AWS Lambda, describing 5 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

ZipFile S3Bucket S3Key S3ObjectVersion ImageUri

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "FunctionCode",
  "type": "object",
  "properties": {
    "ZipFile": {
      "type": "string"
    },
    "S3Bucket": {
      "type": "string"
    },
    "S3Key": {
      "type": "string"
    },
    "S3ObjectVersion": {
      "type": "string"
    },
    "ImageUri": {
      "type": "string"
    }
  }
}