RuntimeVersionConfig

The ARN of the runtime and any errors that occured.

APIs.ioEngineeringPlatform

Properties

Name Type Description
RuntimeVersionArn object
Error object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-runtimeversionconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RuntimeVersionConfig",
  "title": "RuntimeVersionConfig",
  "type": "object",
  "properties": {
    "RuntimeVersionArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RuntimeVersionArn"
        },
        {
          "description": "The ARN of the runtime version you want the function to use."
        }
      ]
    },
    "Error": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RuntimeVersionError"
        },
        {
          "description": "Error response when Lambda is unable to retrieve the runtime version for a function."
        }
      ]
    }
  },
  "description": "The ARN of the runtime and any errors that occured."
}