AWS Lambda · JSON Structure

Aws Lambda Create Function Request Structure

Type: object Properties: 19

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

Properties

FunctionName Runtime Role Handler Description Timeout MemorySize Publish PackageType DeadLetterConfig Environment KMSKeyArn TracingConfig Tags Layers Architectures EphemeralStorage SnapStart LoggingConfig

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "CreateFunctionRequest",
  "type": "object",
  "properties": {
    "FunctionName": {
      "type": "string"
    },
    "Runtime": {
      "type": "string"
    },
    "Role": {
      "type": "string"
    },
    "Handler": {
      "type": "string"
    },
    "Description": {
      "type": "string"
    },
    "Timeout": {
      "type": "integer"
    },
    "MemorySize": {
      "type": "integer"
    },
    "Publish": {
      "type": "boolean"
    },
    "PackageType": {
      "type": "string"
    },
    "DeadLetterConfig": {
      "type": "object"
    },
    "Environment": {
      "type": "object"
    },
    "KMSKeyArn": {
      "type": "string"
    },
    "TracingConfig": {
      "type": "object"
    },
    "Tags": {
      "type": "object"
    },
    "Layers": {
      "type": "array"
    },
    "Architectures": {
      "type": "array"
    },
    "EphemeralStorage": {
      "type": "object"
    },
    "SnapStart": {
      "type": "object"
    },
    "LoggingConfig": {
      "type": "object"
    }
  }
}