AWS Lambda · JSON Structure

Aws Lambda Update Function Code Request Structure

Type: object Properties: 9

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

Properties

ZipFile S3Bucket S3Key S3ObjectVersion ImageUri Publish DryRun RevisionId Architectures

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "UpdateFunctionCodeRequest",
  "type": "object",
  "properties": {
    "ZipFile": {
      "type": "string"
    },
    "S3Bucket": {
      "type": "string"
    },
    "S3Key": {
      "type": "string"
    },
    "S3ObjectVersion": {
      "type": "string"
    },
    "ImageUri": {
      "type": "string"
    },
    "Publish": {
      "type": "boolean"
    },
    "DryRun": {
      "type": "boolean"
    },
    "RevisionId": {
      "type": "string"
    },
    "Architectures": {
      "type": "array"
    }
  }
}